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

:root {
    --forest-deep: #1a3a2f;
    --moss-green: #4a7c59;
    --sage: #87a878;
    --earth-brown: #6b4423;
    --cream: #f5f2eb;
    --sand: #e8e2d6;
    --charcoal: #2d2d2d;
    --white: #ffffff;
    --accent-gold: #c9a227;
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

/* Navigation */
.nav-wrapper {
    background: var(--forest-deep);
    position: relative;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--moss-green) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><path fill="%234a7c59" opacity="0.3" d="M400 0c220 0 400 134 400 300s-180 300-400 300S0 466 0 300 180 0 400 0z"/><circle cx="650" cy="150" r="80" fill="%2387a878" opacity="0.4"/><ellipse cx="200" cy="450" rx="150" ry="100" fill="%231a3a2f" opacity="0.2"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--cream);
    width: fit-content;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--sand);
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

.btn-primary {
    background: var(--accent-gold);
    color: var(--forest-deep);
}

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

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

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

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

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

/* Section Base */
.section {
    padding: 90px 0;
}

.section-dark {
    background: var(--forest-deep);
    color: var(--white);
}

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

.section-sand {
    background: var(--sand);
}

.section-white {
    background: var(--white);
}

.section-gradient {
    background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 100%);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

/* Intro Block */
.intro-block {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--forest-deep);
}

.intro-text p {
    margin-bottom: 16px;
    color: var(--charcoal);
}

.intro-image {
    flex: 1;
    position: relative;
}

.intro-image-wrapper {
    background: var(--moss-green);
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.intro-image-wrapper svg {
    width: 100%;
    height: 320px;
}

.intro-stat {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--accent-gold);
    color: var(--forest-deep);
    padding: 20px 28px;
    border-radius: 8px;
    text-align: center;
}

.intro-stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.intro-stat span {
    font-size: 0.85rem;
}

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    flex: 1 1 calc(33.333% - 28px);
    min-width: 280px;
    background: var(--white);
    border-radius: 12px;
    padding: 36px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--moss-green);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(26, 58, 47, 0.12);
}

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

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

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--forest-deep);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest-deep);
}

.service-price .period {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
}

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

/* Features */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    border-left: 3px solid var(--sage);
}

.feature-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sage);
    line-height: 1;
    min-width: 60px;
}

.feature-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.feature-content p {
    opacity: 0.85;
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(50% - 32px);
    min-width: 300px;
    background: var(--white);
    padding: 36px;
    border-radius: 12px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 5rem;
    color: var(--sage);
    opacity: 0.2;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: var(--moss-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-info strong {
    display: block;
    color: var(--forest-deep);
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.7;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.85;
    margin-top: 8px;
}

/* Process */
.process-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--forest-deep);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--forest-deep);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--moss-green) 0%, var(--forest-deep) 100%);
    padding: 70px 40px;
    border-radius: 16px;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-banner p {
    max-width: 500px;
    margin: 0 auto 28px;
    opacity: 0.9;
}

/* Form */
.form-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 2rem;
    color: var(--forest-deep);
    margin-bottom: 16px;
}

.form-info p {
    margin-bottom: 24px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sand);
}

.form-benefits li:last-child {
    border-bottom: none;
}

.form-benefits svg {
    width: 20px;
    height: 20px;
    fill: var(--moss-green);
    flex-shrink: 0;
}

.contact-form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(26, 58, 47, 0.1);
}

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

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

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

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 70px 0 30px;
}

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

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

.footer-col:first-child {
    flex: 1.5;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-col p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.7;
}

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

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

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

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* About Page */
.page-header {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--moss-green) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

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

.page-header p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-story-text {
    flex: 1.2;
}

.about-story-text h2 {
    font-size: 1.8rem;
    color: var(--forest-deep);
    margin-bottom: 20px;
}

.about-story-text p {
    margin-bottom: 16px;
}

.about-story-image {
    flex: 1;
}

.story-image-box {
    background: var(--moss-green);
    border-radius: 12px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-box svg {
    width: 70%;
    height: 70%;
    opacity: 0.6;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.value-card {
    flex: 1 1 calc(33.333% - 28px);
    min-width: 260px;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 10px;
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--sage);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.95rem;
    opacity: 0.85;
}

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

.team-member {
    flex: 1 1 calc(25% - 32px);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.team-photo {
    width: 140px;
    height: 140px;
    background: var(--moss-green);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 600;
}

.team-member h3 {
    font-size: 1.15rem;
    color: var(--forest-deep);
    margin-bottom: 4px;
}

.team-member .role {
    font-size: 0.9rem;
    color: var(--moss-green);
    margin-bottom: 12px;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--charcoal);
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--forest-deep);
    margin-bottom: 16px;
}

.contact-info > p {
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--sand);
}

.contact-details li:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--moss-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.contact-details strong {
    display: block;
    color: var(--forest-deep);
    margin-bottom: 4px;
}

.contact-details span {
    font-size: 0.95rem;
    color: var(--charcoal);
}

.contact-map {
    flex: 1;
    background: var(--sand);
    border-radius: 12px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: var(--charcoal);
    opacity: 0.6;
}

.map-placeholder svg {
    width: 80px;
    height: 80px;
    fill: var(--moss-green);
    opacity: 0.5;
    margin-bottom: 16px;
}

/* Thanks Page */
.thanks-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.thanks-content {
    max-width: 560px;
}

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

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

.thanks-content h1 {
    font-size: 2.4rem;
    color: var(--forest-deep);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.thanks-content .service-selected {
    background: var(--sand);
    padding: 16px 24px;
    border-radius: 8px;
    margin: 24px 0;
    font-weight: 600;
    color: var(--forest-deep);
}

.thanks-content .btn {
    margin-top: 24px;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 2.2rem;
    color: var(--forest-deep);
    margin-bottom: 12px;
}

.legal-content .last-updated {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin: 36px 0 16px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: var(--cream);
    padding: 24px;
    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: 24px;
    flex-wrap: wrap;
}

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

.cookie-text p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.cookie-text a {
    color: var(--sage);
    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.3s ease;
}

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

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

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

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.sticky-cta .btn {
    box-shadow: 0 6px 24px rgba(26, 58, 47, 0.3);
    padding: 16px 28px;
}

/* Services Page Specific */
.services-hero {
    background: var(--sand);
    padding: 100px 0 60px;
}

.services-intro {
    display: flex;
    gap: 48px;
    align-items: center;
}

.services-intro-text {
    flex: 1;
}

.services-intro-text h1 {
    font-size: 2.6rem;
    color: var(--forest-deep);
    margin-bottom: 16px;
}

.services-intro-image {
    flex: 0.8;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detailed-card {
    display: flex;
    gap: 40px;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    align-items: center;
}

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

.service-detailed-info {
    flex: 1.2;
}

.service-detailed-info h2 {
    font-size: 1.6rem;
    color: var(--forest-deep);
    margin-bottom: 12px;
}

.service-detailed-info p {
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
}

.service-features svg {
    width: 18px;
    height: 18px;
    fill: var(--moss-green);
}

.service-detailed-visual {
    flex: 0.8;
    background: var(--sage);
    border-radius: 10px;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detailed-visual svg {
    width: 60%;
    height: 60%;
    fill: var(--white);
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--forest-deep);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a {
        display: block;
        padding: 16px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .intro-block,
    .about-story,
    .form-section,
    .contact-grid,
    .services-intro {
        flex-direction: column;
    }

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

    .section {
        padding: 60px 0;
    }

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

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .service-card,
    .testimonial-card,
    .process-step,
    .value-card {
        flex: 1 1 100%;
    }

    .stats-row {
        gap: 28px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-col {
        flex: 1 1 100%;
    }

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

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

    .sticky-cta {
        right: 16px;
        bottom: 90px;
    }
}
