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

:root {
    --primary: #2d5a4a;
    --secondary: #e8a75d;
    --accent: #9db4a8;
    --dark: #1a2e28;
    --light: #f5f7f6;
    --white: #ffffff;
    --text: #333333;
    --border: #d4ddd8;
}

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

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

header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

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

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

.ad-notice {
    background: var(--light);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text);
    border: 1px solid var(--border);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

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

.hero-right {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent, rgba(245, 247, 246, 0.3));
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 28px;
    font-weight: 700;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

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

.split-left,
.split-right {
    flex: 1;
}

.split-content {
    padding: 90px 60px;
}

.split-image {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

.split-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--accent);
}

.split-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 26px;
    font-weight: 700;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 14px 0 14px 32px;
    position: relative;
    font-size: 16px;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 80px 20px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 40px 32px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    font-size: 26px;
    color: var(--dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 22px;
    line-height: 1.7;
}

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

.price-note {
    font-size: 14px;
    color: #666;
}

.full-width-cta {
    background: var(--primary);
    padding: 90px 40px;
    text-align: center;
    color: var(--white);
}

.full-width-cta h2 {
    font-size: 44px;
    margin-bottom: 24px;
    font-weight: 700;
}

.full-width-cta p {
    font-size: 19px;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 42px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

.about-section {
    background: var(--light);
}

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

.team-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 550px;
    background-color: var(--accent);
}

.team-content {
    flex: 1;
    padding: 70px 60px;
}

.team-content h2 {
    font-size: 40px;
    color: var(--dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.team-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.form-section {
    padding: 90px 20px;
    background: var(--white);
}

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

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

.form-wrapper .subtitle {
    text-align: center;
    font-size: 17px;
    margin-bottom: 44px;
    color: #666;
}

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

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

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

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

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

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

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

.contact-details {
    background: var(--light);
    padding: 80px 20px;
}

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

.contact-content h1 {
    font-size: 44px;
    color: var(--dark);
    margin-bottom: 40px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
}

.info-block .email-text {
    color: var(--text);
    font-weight: 500;
}

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

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

.legal-content h1 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 36px;
    font-weight: 700;
}

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

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    text-align: center;
    padding: 60px 20px;
}

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

.thanks-content p {
    font-size: 19px;
    margin-bottom: 20px;
    line-height: 1.7;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    text-decoration: none;
}

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

.footer-links {
    list-style: none;
}

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

.disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    margin-top: 30px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary);
    padding: 24px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    display: none;
}

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

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

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

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

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

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

.cookie-accept:hover {
    background: var(--dark);
}

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

.cookie-reject:hover {
    background: var(--border);
}

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

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

    .hero-right,
    .split-image,
    .team-image {
        min-height: 350px;
    }

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

    .split-content h2,
    .team-content h2 {
        font-size: 32px;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
    }

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

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

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}
