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

:root {
    --primary-color: #2c5f7a;
    --secondary-color: #4a9ebb;
    --accent-color: #7ec8e3;
    --dark-bg: #1a3d4f;
    --light-bg: #f4f8fa;
    --text-dark: #2d3e4f;
    --text-light: #6b7c8d;
    --white: #ffffff;
    --border-color: #dce4e9;
}

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

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

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

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary-color);
}

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

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--dark-bg);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #9ac5d4;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

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

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

.split-content {
    flex: 1;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    background-color: #b8d4dd;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.split-content ul {
    list-style: none;
    margin: 25px 0;
}

.split-content ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
}

.split-content ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 70px 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #afc9d3;
}

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

.service-content {
    padding: 30px;
}

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

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

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

.service-select {
    width: 100%;
    padding: 14px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: var(--dark-bg);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-standard {
    padding: 80px 0;
}

.section-standard.bg-light {
    background-color: var(--light-bg);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.contact-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
}

.contact-info p {
    margin: 12px 0;
    color: var(--text-light);
    font-size: 16px;
}

footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 220px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 61, 79, 0.98);
    color: var(--white);
    padding: 25px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -3px 15px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

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

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

.cookie-btn:hover {
    opacity: 0.8;
}

.thanks-container {
    text-align: center;
    padding: 100px 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

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

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

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.disclaimer {
    background-color: #fff8e1;
    border-left: 4px solid #ffa726;
    padding: 25px;
    margin: 40px 0;
    border-radius: 5px;
}

.disclaimer p {
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        display: none;
        padding: 20px;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-split,
    .section-split {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content {
        padding: 50px 30px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .split-content h2 {
        font-size: 30px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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