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

:root {
    --primary: #2C5F7B;
    --secondary: #E8A87C;
    --accent: #D4AF37;
    --dark: #1A2332;
    --light: #F5F7FA;
    --text: #333333;
    --border: #E0E4E8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--light);
}

.header-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 0;
}

.ad-disclosure {
    background: #FFF9E6;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #FFE69C;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

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

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

.cta-nav {
    background: var(--primary);
    color: white !important;
    padding: 12px 28px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-nav:hover {
    background: #1e4a5f;
    color: white !important;
}

.split-hero {
    display: flex;
    min-height: 100vh;
    margin-top: 108px;
}

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    background: white;
}

.split-right {
    background-color: #89CFF0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 58px;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 28px;
    font-weight: 800;
}

.hero-content p {
    font-size: 19px;
    color: #555;
    margin-bottom: 38px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 18px 42px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 168, 124, 0.3);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.section-split {
    display: flex;
    min-height: 650px;
}

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

.split-content,
.split-visual {
    flex: 1;
}

.split-content {
    padding: 100px 80px;
    display: flex;
    align-items: center;
    background: white;
}

.split-visual {
    background-color: #B4D7E8;
    position: relative;
    overflow: hidden;
}

.split-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.content-inner {
    max-width: 550px;
}

.content-inner h2 {
    font-size: 44px;
    color: var(--dark);
    margin-bottom: 26px;
    line-height: 1.25;
    font-weight: 700;
}

.content-inner p {
    font-size: 17px;
    color: #555;
    margin-bottom: 22px;
    line-height: 1.75;
}

.content-inner ul {
    list-style: none;
    margin: 30px 0;
}

.content-inner li {
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.content-inner li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.secondary-cta {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.secondary-cta:hover {
    background: #1e4a5f;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    background: white;
}

.services-grid h2 {
    text-align: center;
    font-size: 48px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.services-grid .intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 70px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 27px);
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: #C5E1A5;
    position: relative;
    overflow: hidden;
}

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

.service-body {
    padding: 32px 28px;
}

.service-body h3 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 14px;
    font-weight: 600;
}

.service-body p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.select-service {
    display: block;
    width: 100%;
    background: var(--secondary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #d99566;
}

.form-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-section h2 {
    font-size: 38px;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}

.form-section .intro {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

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

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

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

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.selected-service-display {
    background: #E8F5E9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    border-left: 4px solid #4CAF50;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display p {
    margin: 0;
    font-size: 15px;
    color: #2E7D32;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1e4a5f;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 80px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.footer-section p,
.footer-section address {
    font-size: 15px;
    line-height: 1.8;
    color: #B8C1CC;
    font-style: normal;
}

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

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #B8C1CC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #B8C1CC;
    font-size: 14px;
}

.disclaimer {
    background: #FFF3CD;
    padding: 30px;
    border-left: 4px solid #FFC107;
    margin: 50px auto;
    max-width: 1200px;
    border-radius: 6px;
}

.disclaimer h3 {
    font-size: 20px;
    color: #856404;
    margin-bottom: 14px;
}

.disclaimer p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 35, 50, 0.98);
    color: white;
    padding: 25px 40px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
}

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

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

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

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: #4CAF50;
    color: white;
}

.accept-btn:hover {
    background: #45A049;
}

.reject-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

.thanks-container {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 40px 80px;
}

.thanks-box {
    max-width: 700px;
    background: white;
    padding: 70px 60px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 45px;
    color: white;
}

.thanks-box h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-box p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.return-home {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 25px;
    transition: background 0.3s ease;
}

.return-home:hover {
    background: #1e4a5f;
}

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

.legal-page h1 {
    font-size: 44px;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page .last-updated {
    color: #999;
    font-size: 15px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    color: var(--dark);
    margin-top: 45px;
    margin-bottom: 18px;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 14px;
    font-weight: 600;
}

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

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

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

@media (max-width: 1024px) {
    .split-hero,
    .section-split {
        flex-direction: column;
    }

    .section-split.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right,
    .split-content,
    .split-visual {
        min-height: 500px;
    }

    .service-card {
        flex: 0 0 calc(50% - 20px);
    }

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

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 42px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}
