* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.navbar {
    background: #1a252f;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.nav-disclosure {
    color: #95a5a6;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    background: #ecf0f1;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
    max-width: 600px;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #c0392b;
}

.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.problem-amplification {
    padding: 4rem 2rem;
    background: #34495e;
    color: #ffffff;
}

.problem-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.problem-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.problem-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    min-width: 250px;
    text-align: center;
}

.stat-card h3 {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
}

.insight-split {
    display: flex;
    align-items: stretch;
}

.insight-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.insight-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.insight-right {
    flex: 1;
    overflow: hidden;
}

.insight-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.trust-building {
    padding: 4rem 2rem;
    background: #ecf0f1;
}

.trust-building h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #34495e;
}

.testimonial-author {
    font-weight: 600;
    color: #1a252f;
}

.services-reveal {
    padding: 4rem 2rem;
    background: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-intro p {
    font-size: 1.1rem;
    color: #34495e;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 1.5rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
}

.form-section-split {
    display: flex;
    align-items: stretch;
    background: #1a252f;
    color: #ffffff;
}

.form-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-left p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.selected-service-info {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
}

.form-right {
    flex: 1;
    padding: 4rem;
    background: #2c3e50;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #c0392b;
}

.final-cta-split {
    display: flex;
    align-items: stretch;
}

.cta-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ecf0f1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #2980b9;
}

.cta-visual {
    flex: 1;
    overflow: hidden;
}

.cta-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    font-size: 0.9rem;
}

.footer-references h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: #ecf0f1;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-confirmation {
    background: #ffffff;
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1.5rem;
    color: #1a252f;
}

.btn-back {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-back:hover {
    background: #2980b9;
}

.page-header-split {
    display: flex;
    align-items: stretch;
    min-height: 50vh;
}

.header-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ecf0f1;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.header-content p {
    font-size: 1.25rem;
    color: #34495e;
}

.header-visual {
    flex: 1;
    overflow: hidden;
}

.header-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.services-detailed {
    background: #ffffff;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #ecf0f1;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.service-detail-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.features-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.features-list li {
    margin-bottom: 0.75rem;
    color: #34495e;
}

.service-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin: 1.5rem 0;
}

.btn-inquiry {
    display: inline-block;
    padding: 1rem 2rem;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    align-self: flex-start;
}

.btn-inquiry:hover {
    background: #2980b9;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-header-split {
    display: flex;
    align-items: stretch;
    min-height: 50vh;
}

.about-header-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ecf0f1;
}

.about-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.about-header-content p {
    font-size: 1.25rem;
    color: #34495e;
}

.about-header-image {
    flex: 1;
    overflow: hidden;
}

.about-header-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-story-split {
    display: flex;
    align-items: stretch;
}

.about-story-split.reverse {
    flex-direction: row-reverse;
}

.about-story-image {
    flex: 1;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-story-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-story-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.values-section {
    padding: 4rem 2rem;
    background: #ecf0f1;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a252f;
}

.values-grid {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.value-card p {
    color: #34495e;
}

.team-split {
    display: flex;
    align-items: stretch;
}

.team-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.team-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.team-image {
    flex: 1;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.mission-split {
    display: flex;
    align-items: stretch;
}

.mission-split.reverse {
    flex-direction: row-reverse;
}

.mission-image {
    flex: 1;
    overflow: hidden;
}

.mission-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.mission-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.cta-about {
    padding: 4rem 2rem;
    text-align: center;
    background: #1a252f;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta-large:hover {
    background: #c0392b;
}

.contact-header {
    padding: 4rem 2rem;
    text-align: center;
    background: #ecf0f1;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-header p {
    font-size: 1.25rem;
    color: #34495e;
}

.contact-split {
    display: flex;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #1a252f;
}

.contact-item p {
    font-size: 1rem;
    color: #34495e;
}

.contact-visual {
    flex: 1;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-cta {
    padding: 4rem 2rem;
    text-align: center;
    background: #ecf0f1;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #c0392b;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-page h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-page p {
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #34495e;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #2980b9;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .insight-split,
    .form-section-split,
    .final-cta-split,
    .page-header-split,
    .service-detail-split,
    .about-header-split,
    .about-story-split,
    .team-split,
    .mission-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .problem-stats {
        flex-direction: column;
    }
}