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

:root {
    --primary: #1a2332;
    --secondary: #2d5d7b;
    --accent: #4a90a4;
    --light: #f4f6f8;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --border: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--accent);
    color: var(--white);
}

.btn-accept:hover {
    background: var(--secondary);
}

.btn-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--accent);
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 560px;
}

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

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary {
    background: var(--secondary);
    color: var(--white);
}

.cta-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.cta-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.cta-text {
    display: inline-block;
    margin-left: 20px;
    color: var(--text-light);
    text-decoration: underline;
}

.intro-asymmetric {
    padding: 100px 5%;
    background: var(--white);
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 2;
}

.intro-text h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary);
    margin-bottom: 24px;
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
}

.intro-visual {
    flex: 1;
}

.stat-card {
    background: var(--accent);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 12px;
}

.stat-label {
    display: block;
    font-size: 16px;
    line-height: 1.4;
}

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

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

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-text {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.approach-text h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.approach-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.trust-signals {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background: var(--white);
}

.trust-left,
.trust-right {
    flex: 1;
    display: flex;
    align-items: center;
}

blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 24px;
}

blockquote p {
    font-size: 22px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.5;
}

cite {
    font-size: 16px;
    color: var(--text-light);
    font-style: normal;
}

.trust-metrics {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-item strong {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 8px;
}

.metric-item span {
    font-size: 16px;
    color: var(--text-light);
}

.services-showcase {
    padding: 100px 5%;
    background: var(--light);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

.services-header p {
    font-size: 18px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 24px;
    flex: 1;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 24px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--accent);
}

.form-section {
    padding: 100px 5%;
    background: var(--white);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.service-display {
    background: var(--light);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 32px;
    display: none;
}

.service-display.show {
    display: block;
}

.service-display strong {
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-submit {
    padding: 16px 32px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent);
}

.final-cta-split {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    background: var(--primary);
    color: var(--white);
}

.cta-left {
    flex: 1.5;
}

.cta-left h2 {
    font-size: 36px;
    line-height: 1.3;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-right p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--white);
    opacity: 0.8;
    font-size: 14px;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.page-hero-split {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.story-split {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background: var(--white);
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 24px;
}

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.values-asymmetric {
    padding: 100px 5%;
    background: var(--light);
}

.values-asymmetric h2 {
    font-size: 42px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
}

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

.value-block {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-block h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-text {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.team-text h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.team-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.approach-detail {
    padding: 100px 5%;
    background: var(--light);
}

.approach-detail h2 {
    font-size: 42px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 60px;
}

.approach-stages {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.stage {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.stage-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    min-width: 60px;
}

.stage h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
}

.stage p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-about {
    padding: 100px 5%;
    background: var(--secondary);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 5%;
    background: var(--white);
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

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

.service-content {
    flex: 1.5;
}

.service-content h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 32px 0 24px;
}

.duration {
    font-size: 14px;
    color: var(--text-light);
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
}

.service-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.services-note {
    padding: 60px 5%;
    background: var(--light);
    text-align: center;
}

.note-content {
    max-width: 800px;
    margin: 0 auto;
}

.note-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
}

.note-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    min-height: 700px;
    align-items: stretch;
}

.contact-left {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.contact-left h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-left > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--secondary);
}

.contact-note {
    padding: 20px;
    background: var(--white);
    border-left: 4px solid var(--accent);
    border-radius: 4px;
}

.contact-note p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

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

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-info {
    padding: 80px 5%;
    background: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.location-info h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
}

.location-info p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.thanks-hero {
    padding: 120px 5%;
    background: var(--light);
    min-height: 600px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 24px;
}

.thanks-content > p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.service-confirmation {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 48px;
    display: none;
}

.service-confirmation.show {
    display: block;
}

.service-confirmation p {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.service-confirmation strong {
    color: var(--primary);
}

.next-steps {
    text-align: left;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 24px;
}

.steps-list {
    list-style-position: inside;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.steps-list li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 12px;
}

.thanks-cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.thanks-cta p {
    font-size: 16px;
    color: var(--text-light);
}

.legal-page {
    padding: 80px 5%;
    background: var(--white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
}

.legal-content .updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--secondary);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 16px;
    }

    .nav-right a {
        font-size: 14px;
    }

    .hero-split,
    .approach-split,
    .trust-signals,
    .story-split,
    .team-split,
    .contact-split,
    .final-cta-split,
    .page-hero-split {
        flex-direction: column;
    }

    .hero-left,
    .approach-text,
    .contact-left {
        padding: 60px 5%;
    }

    .hero-left h1,
    .contact-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        font-size: 18px;
    }

    .intro-content {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
