:root {
    --primary: #1a5f4a;
    --primary-dark: #134438;
    --secondary: #f4a536;
    --text-dark: #1e2a38;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f8fafb;
    --bg-cream: #fefdfb;
    --bg-section: #eef4f2;
    --white: #ffffff;
    --border: #d1ddd9;
    --shadow: rgba(26, 95, 74, 0.08);
    --shadow-strong: rgba(26, 95, 74, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

ul {
    list-style: none;
}

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

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

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

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 12px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-main a {
    color: var(--text-medium);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.25s ease;
}

.nav-main a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background: var(--bg-cream);
}

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

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-image {
    flex: 1;
    background-color: var(--bg-section);
    position: relative;
    overflow: hidden;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--shadow-strong);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #e59520;
    transform: translateY(-2px);
}

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

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

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--bg-section);
}

.section-cream {
    background: var(--bg-cream);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
}

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

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

.split-content {
    flex: 1;
}

.split-media {
    flex: 1;
    background-color: var(--bg-section);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    background: var(--white);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-section);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

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

.service-card p {
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.features-list {
    margin: 32px 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-medium);
}

.features-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    max-width: 700px;
    margin: 48px auto 0;
}

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

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

.testimonial-role {
    opacity: 0.8;
    font-size: 0.9rem;
}

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

.contact-info {
    flex: 1;
}

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

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

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-section);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

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

.contact-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.1);
}

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

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0 32px;
}

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

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

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

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    font-size: 0.95rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    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: 32px;
    flex-wrap: wrap;
}

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

.cookie-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.cookie-text p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

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

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

.cookie-btn-reject {
    background: var(--bg-light);
    color: var(--text-dark);
}

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

.page-header {
    background: var(--bg-section);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.content-page {
    padding: 80px 0;
}

.content-page h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin: 40px 0 16px;
}

.content-page h3 {
    font-size: 1.35rem;
    color: var(--text-dark);
    margin: 32px 0 12px;
}

.content-page p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.content-page ul {
    margin: 16px 0 24px 24px;
    list-style: disc;
}

.content-page ul li {
    color: var(--text-medium);
    margin-bottom: 8px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

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

.thanks-container p {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 500px;
    margin-bottom: 32px;
}

.disclaimer {
    background: var(--bg-light);
    padding: 24px;
    border-left: 4px solid var(--secondary);
    margin: 40px 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.services-full {
    padding: 80px 0;
}

.service-full-card {
    display: flex;
    gap: 48px;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.service-full-card:last-child {
    border-bottom: none;
}

.service-full-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 0 0 400px;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-section);
    position: relative;
}

.service-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.service-full-content {
    flex: 1;
}

.service-full-content h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-full-content p {
    color: var(--text-medium);
    margin-bottom: 24px;
}

.about-team {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.team-member {
    flex: 1 1 280px;
    text-align: center;
}

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

.team-member h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cta-inline {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    color: var(--white);
    margin: 60px 0;
}

.cta-inline h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-inline p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-inline .btn {
    background: var(--secondary);
    color: var(--text-dark);
}

.cta-inline .btn:hover {
    background: #e59520;
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.references-section {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-top: 48px;
}

.references-section h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.references-section ol {
    list-style: decimal;
    padding-left: 24px;
}

.references-section li {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.references-section a {
    color: var(--primary);
    word-break: break-word;
}

.references-section a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 32px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

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

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
    }

    .split-media {
        min-height: 300px;
    }

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

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

    .service-full-card,
    .service-full-card:nth-child(even) {
        flex-direction: column;
    }

    .service-full-image {
        flex: none;
        width: 100%;
        height: 240px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 16px;
    }

    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 8px 20px var(--shadow);
    }

    .nav-main.show {
        display: flex;
    }

    .nav-main a {
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-toggle {
        display: block;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

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

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

    .cookie-btn {
        width: 100%;
    }

    .cta-inline {
        padding: 40px 24px;
    }

    .contact-form-wrap {
        padding: 32px 24px;
    }
}
