:root {
    --primary: #2d4a3e;
    --primary-dark: #1a2e26;
    --secondary: #8b9d83;
    --accent: #c4a77d;
    --accent-dark: #a08560;
    --light: #f5f3ef;
    --dark: #1c1c1c;
    --white: #ffffff;
    --gray: #6b6b6b;
    --gray-light: #e8e6e2;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

.ad-disclosure {
    background-color: var(--gray-light);
    padding: 8px 0;
    text-align: center;
    font-size: 12px;
    color: var(--gray);
}

header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo span {
    color: var(--accent);
}

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

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition);
}

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

nav a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--dark);
    margin: 6px 0;
    transition: var(--transition);
}

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

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

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

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

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

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

.hero-section .split-content {
    padding: 80px;
}

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

.hero-section p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-header p {
    color: var(--gray);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 320px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.service-card-image {
    height: 200px;
    background-color: var(--gray-light);
    overflow: hidden;
}

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

.service-card-content {
    padding: 28px;
}

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

.service-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-dark);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
}

.features-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.features-content {
    flex: 1;
}

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

.features-content p {
    color: var(--gray);
    margin-bottom: 32px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--dark);
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.features-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--gray-light);
    min-height: 400px;
}

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

.testimonials-section {
    background-color: var(--primary-dark);
    color: var(--white);
}

.testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
}

.testimonial-role {
    font-size: 14px;
    opacity: 0.8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--accent);
}

.cta-section .btn-primary:hover {
    background-color: var(--accent-dark);
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 167, 125, 0.2);
}

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

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

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

.contact-form {
    flex: 1;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

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

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

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

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

.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
}

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

.disclaimer {
    background-color: var(--gray-light);
    padding: 40px 0;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
}

.disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    min-width: 300px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

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

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

.cookie-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

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

.page-header {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.content-section {
    padding: 60px 0;
}

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

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    color: var(--gray);
    margin-bottom: 16px;
}

.content-section ul {
    color: var(--gray);
    margin-left: 24px;
    margin-bottom: 16px;
}

.content-section li {
    margin-bottom: 8px;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    text-align: center;
    width: calc(25% - 24px);
    min-width: 240px;
}

.team-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background-color: var(--gray-light);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-card p {
    color: var(--gray);
    font-size: 14px;
}

.thanks-container {
    text-align: center;
    padding: 120px 24px;
    max-width: 600px;
    margin: 0 auto;
}

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

.thanks-container h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.thanks-container p {
    color: var(--gray);
    font-size: 18px;
    margin-bottom: 32px;
}

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

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

    .split-content {
        padding: 48px 32px;
    }

    .split-image {
        min-height: 400px;
    }

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

    .features-split {
        flex-direction: column;
    }

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

    .contact-split {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 16px);
    }
}

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

    .mobile-menu-btn {
        display: block;
    }

    nav.active ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        padding: 24px;
        box-shadow: var(--shadow);
        gap: 16px;
    }

    .hero-section .split-content {
        padding: 48px 24px;
    }

    .hero-section h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-card {
        width: 100%;
    }

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

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