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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #e8f1f5;
    --accent-color: #d97841;
    --text-dark: #1a2332;
    --text-light: #5a6c7d;
    --border-color: #d4dfe6;
    --success-color: #4a8f6e;
    --background-light: #f8fafb;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    background: var(--secondary-color);
    padding: 4px 10px;
    border-radius: 4px;
}

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

.nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.hero-split {
    display: flex;
    align-items: center;
    min-height: 520px;
    gap: 60px;
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #234a5f;
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.intro-section {
    background: var(--background-light);
    padding: 70px 24px;
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto;
}

.services-grid {
    padding: 90px 24px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    max-width: 360px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

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

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 20px 16px;
    line-height: 1.6;
}

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

.btn-select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section {
    background: var(--secondary-color);
    padding: 80px 24px;
}

.form-wrapper-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.form-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #234a5f;
}

.trust-section {
    padding: 80px 24px;
}

.split-content,
.split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-image,
.trust-text {
    flex: 1;
}

.trust-image img,
.content-image img,
.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.trust-text h2,
.content-text h2,
.team-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.2s;
}

.link-arrow:hover {
    color: #234a5f;
}

.disclaimer-section {
    padding: 50px 24px;
    background: var(--background-light);
}

.disclaimer-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
}

.footer {
    background: var(--text-dark);
    color: #ffffff;
    padding: 60px 24px 24px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    color: #b8c5d0;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #b8c5d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #3a4c5f;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b8c5d0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.97);
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background: var(--success-color);
    color: #ffffff;
}

.btn-accept:hover {
    background: #3d7459;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero {
    background: var(--secondary-color);
    padding: 70px 24px;
    text-align: center;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text-light);
    margin-top: 12px;
}

.about-content {
    padding: 80px 24px;
}

.content-text {
    flex: 1;
}

.content-image {
    flex: 1;
}

.values-section {
    background: var(--background-light);
    padding: 70px 24px;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

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

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

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

.team-section {
    padding: 80px 24px;
}

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

.team-text {
    flex: 1;
}

.cta-section {
    background: var(--primary-color);
    color: #ffffff;
    padding: 70px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .cta-primary {
    background: #ffffff;
    color: var(--primary-color);
}

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

.services-detail {
    padding: 60px 24px;
}

.service-block {
    margin-bottom: 80px;
}

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

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

.service-info {
    flex: 1;
}

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

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

.contact-layout {
    padding: 60px 24px;
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info-box {
    flex: 1;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--secondary-color);
}

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

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

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

.contact-email {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-note {
    background: var(--background-light);
    padding: 20px;
    border-radius: 6px;
    margin-top: 32px;
}

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

.access-section {
    background: var(--background-light);
    padding: 70px 24px;
}

.access-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.access-grid {
    display: flex;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.access-item {
    flex: 1;
    min-width: 250px;
}

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

.access-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    padding: 100px 24px;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.service-info-box {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
    text-align: left;
}

.service-info-box p {
    margin: 0;
    font-size: 16px;
}

.thanks-next {
    text-align: left;
    margin-bottom: 40px;
}

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

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    color: var(--text-dark);
}

.next-steps li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    background: var(--background-light);
    padding: 60px 24px;
    text-align: center;
}

.contact-reminder h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.contact-reminder p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-email-display {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
    margin: 20px 0 10px;
}

.contact-hours {
    font-size: 15px;
    color: var(--text-light);
}

.legal-content {
    padding: 60px 24px 80px;
}

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

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

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

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

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

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

.legal-text a:hover {
    color: #234a5f;
}

.legal-update {
    margin-top: 40px;
    font-style: italic;
    color: var(--text-light);
    font-size: 14px;
}

@media (max-width: 900px) {
    .hero-split,
    .split-content,
    .split-reverse,
    .form-wrapper-split,
    .service-content-split,
    .contact-split {
        flex-direction: column;
    }

    .service-block.reverse .service-content-split {
        flex-direction: column;
    }

    h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .nav {
        gap: 20px;
    }

    .services-layout {
        flex-direction: column;
        align-items: center;
    }

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

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

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

@media (max-width: 600px) {
    h1 {
        font-size: 30px;
    }

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

    .nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .cta-primary,
    .cta-secondary {
        padding: 12px 24px;
        font-size: 15px;
    }
}