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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a90a4;
    --accent-color: #8abdc9;
    --text-dark: #1a1a1a;
    --text-light: #f5f5f5;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #2a3f4f;
    --border-color: #e0e0e0;
}

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

.ad-notice {
    background: var(--bg-gray);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.nav-right a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background: var(--bg-light);
}

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

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-gray);
}

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

.hero-cta {
    margin-top: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.value-split {
    display: flex;
    min-height: 500px;
}

.value-image {
    flex: 1;
    position: relative;
    background-color: var(--accent-color);
}

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

.value-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.value-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

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

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
}

.service-row {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    position: relative;
    background-color: var(--bg-gray);
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.btn-select-service {
    padding: 12px 28px;
    background: var(--secondary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: var(--primary-color);
}

.approach-split {
    display: flex;
    background: var(--bg-gray);
    min-height: 500px;
}

.approach-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step {
    padding: 24px;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.step p {
    font-size: 16px;
    color: #666;
}

.approach-image {
    flex: 1;
    position: relative;
    background-color: var(--accent-color);
}

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

.contact-form-section {
    padding: 80px 5%;
    background: var(--bg-light);
    max-width: 800px;
    margin: 0 auto;
}

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

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

.form-intro p {
    font-size: 17px;
    color: #666;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

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

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

.btn-submit {
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: flex-start;
}

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

.footer-split {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 5%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-light);
}

.footer-col a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--text-light);
}

.footer-col p {
    color: #bbb;
    font-size: 15px;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 13px;
    color: #888;
    margin-top: 16px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 24px 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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;
    gap: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

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

.btn-cookie-accept {
    background: var(--primary-color);
    color: var(--text-light);
}

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

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

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

.about-hero-split {
    display: flex;
    min-height: 500px;
}

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

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

.about-hero-content p {
    font-size: 18px;
    color: #555;
}

.about-hero-image {
    flex: 1;
    position: relative;
    background-color: var(--bg-gray);
}

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

.journey-split {
    display: flex;
    min-height: 500px;
}

.journey-image {
    flex: 1;
    position: relative;
    background-color: var(--accent-color);
}

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

.journey-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.journey-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.philosophy-split {
    display: flex;
    background: var(--bg-gray);
    min-height: 500px;
}

.philosophy-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.philosophy-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.philosophy-principles {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.principle {
    padding: 20px;
    background: var(--bg-light);
    border-left: 3px solid var(--secondary-color);
}

.principle h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.principle p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}

.philosophy-image {
    flex: 1;
    position: relative;
    background-color: var(--accent-color);
}

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

.credentials-section {
    padding: 80px 5%;
    background: var(--bg-light);
}

.credentials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.credential-card {
    padding: 32px;
    background: var(--bg-gray);
    border-radius: 4px;
}

.credential-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.credential-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.approach-detail-split {
    display: flex;
    min-height: 500px;
}

.approach-detail-image {
    flex: 1;
    position: relative;
    background-color: var(--accent-color);
}

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

.approach-detail-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.approach-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.cta-about {
    padding: 80px 5%;
    background: var(--bg-gray);
    text-align: center;
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
}

.services-page-hero {
    padding: 80px 5%;
    background: var(--bg-gray);
    text-align: center;
}

.services-page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-page-hero p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-detail-list {
    background: var(--bg-light);
}

.service-detail-split {
    display: flex;
    min-height: 500px;
    padding: 60px 5%;
    gap: 60px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
}

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

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.service-features {
    margin: 32px 0;
}

.service-features h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 16px;
    color: #666;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-color);
    font-size: 20px;
}

.service-pricing-box {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-gray);
    border-radius: 4px;
}

.service-pricing-box .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-pricing-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    position: relative;
    background-color: var(--bg-gray);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.services-process {
    padding: 80px 5%;
    background: var(--bg-gray);
    text-align: center;
}

.services-process h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.process-steps-horizontal {
    display: flex;
    justify-content: center;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    max-width: 300px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.contact-page-hero {
    padding: 80px 5%;
    background: var(--bg-gray);
    text-align: center;
}

.contact-page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-page-hero p {
    font-size: 18px;
    color: #666;
}

.contact-info-split {
    display: flex;
    min-height: 500px;
}

.contact-details {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

.contact-item .note {
    font-size: 15px;
    color: #888;
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
    position: relative;
    background-color: var(--bg-gray);
}

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

.contact-approach {
    padding: 80px 5%;
    background: var(--bg-light);
}

.contact-approach h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

.approach-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-option {
    padding: 32px;
    background: var(--bg-gray);
    border-radius: 4px;
}

.approach-option h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.approach-option p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 5%;
    background: var(--bg-gray);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    padding: 28px;
    background: var(--bg-light);
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.thanks-page {
    display: flex;
    min-height: 600px;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

#serviceConfirmation {
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps {
    margin: 40px 0;
}

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

.next-step {
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-gray);
    border-left: 3px solid var(--primary-color);
}

.next-step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.next-step p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.thanks-image {
    flex: 1;
    position: relative;
    background-color: var(--bg-gray);
}

.thanks-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.legal-page {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 18px;
    margin-bottom: 32px;
    color: #666;
    line-height: 1.7;
}

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

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

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #555;
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    word-break: break-all;
}

.legal-updated {
    margin-top: 48px;
    font-style: italic;
    color: #888;
}

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

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

    .hero-split,
    .value-split,
    .approach-split,
    .about-hero-split,
    .journey-split,
    .philosophy-split,
    .approach-detail-split,
    .service-detail-split,
    .contact-info-split,
    .thanks-page {
        flex-direction: column;
    }

    .service-row {
        flex-direction: column;
        gap: 32px;
    }

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

    .hero-content h1,
    .about-hero-content h1,
    .services-page-hero h1,
    .contact-page-hero h1 {
        font-size: 32px;
    }

    .value-content h2,
    .approach-content h2,
    .journey-content h2,
    .philosophy-content h2,
    .approach-detail-content h2,
    .service-detail-content h2 {
        font-size: 28px;
    }

    .process-steps-horizontal {
        flex-direction: column;
        align-items: center;
    }

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

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

    .cookie-buttons {
        justify-content: stretch;
    }

    .cookie-buttons button {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: column;
    }
}