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

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2c;
    --accent-gold: #b8860b;
    --light-bg: #f8f9f5;
    --dark-text: #1a1a1a;
    --medium-gray: #666;
    --light-gray: #e5e5e5;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

.main-nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark-text);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45,80,22,0.85), rgba(74,124,44,0.75)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1600&h=900&fit=crop') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 3rem 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}

.cta-primary:hover {
    background: #9a7109;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,134,11,0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-green);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.intro-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--dark-text);
}

.problem-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.3rem;
    color: var(--primary-green);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.problem-list {
    margin: 1.5rem 0 2rem 0;
}

.problem-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.highlight-text {
    font-weight: 600;
    color: var(--secondary-green);
    font-size: 1.15rem;
    margin-top: 1.5rem;
}

.insight-section {
    padding: 5rem 2rem;
    background: var(--primary-green);
    color: var(--white);
}

.insight-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.insight-section p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.trust-section {
    padding: 4.5rem 2rem;
    background: var(--light-bg);
}

.trust-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.trust-icon {
    font-size: 3rem;
    color: var(--secondary-green);
    margin-bottom: 1rem;
}

.trust-card h4 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.trust-card p {
    color: var(--medium-gray);
}

.testimonial-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.testimonial {
    border-left: 5px solid var(--accent-gold);
    padding-left: 2rem;
    font-style: italic;
}

.testimonial p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    color: var(--medium-gray);
    font-size: 1rem;
}

.services-reveal {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.services-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-green);
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background: var(--secondary-green);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-green);
}

.form-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.form-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background: var(--accent-gold);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #9a7109;
    transform: translateY(-2px);
}

.urgency-section {
    padding: 4.5rem 2rem;
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
}

.urgency-section h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.urgency-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.benefits-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.benefits-section h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-green);
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 260px;
}

.benefit-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.benefit-item p {
    font-size: 1.05rem;
    color: var(--dark-text);
}

.main-footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-column a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #9a7109;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 200;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-cookie:hover {
    background: #9a7109;
}

.btn-cookie-reject {
    background: var(--medium-gray);
    color: var(--white);
}

.btn-cookie-reject:hover {
    background: #555;
}

.page-hero {
    padding: 5rem 2rem 3rem;
    background: var(--light-bg);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-green);
}

.lead {
    font-size: 1.25rem;
    color: var(--medium-gray);
}

.story-section,
.approach-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.story-section h2,
.approach-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.story-section p,
.approach-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.values-section h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-green);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 260px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.team-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.stats-section {
    padding: 5rem 2rem;
    background: var(--primary-green);
}

.stats-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.cta-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
    color: var(--primary-green);
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--light-gray);
}

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

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-price-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--accent-gold);
    color: var(--white);
    border-radius: 5px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--secondary-green);
}

.service-content ul {
    margin: 1rem 0 1.5rem 0;
}

.service-content li {
    padding: 0.5rem 0 0.5rem 1.8rem;
    position: relative;
}

.service-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-green);
    font-weight: 700;
}

.service-note {
    background: var(--light-bg);
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-gold);
    margin: 1.5rem 0;
    font-style: italic;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--secondary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.packages-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.packages-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.packages-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.contact-info-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.contact-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 260px;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.contact-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-card a {
    color: var(--secondary-green);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--primary-green);
}

.visit-section {
    padding: 4rem 2rem;
    background: var(--light-bg);
}

.visit-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.visit-section p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    line-height: 1.8;
}

.faq-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.faq-section h2 {
    font-size: 2.3rem;
    margin-bottom: 2.5rem;
    color: var(--primary-green);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-text);
}

.thanks-section {
    padding: 6rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--light-bg);
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--medium-gray);
}

.selected-service-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-confirmation h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-green);
}

.steps-list {
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    font-size: 1.05rem;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0.8rem;
    background: var(--secondary-green);
    color: var(--white);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--accent-gold);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: var(--secondary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.contact-reminder {
    margin-top: 2rem;
    font-size: 1.05rem;
}

.contact-reminder a {
    color: var(--secondary-green);
    font-weight: 600;
}

.legal-page {
    padding: 4rem 2rem;
    background: var(--white);
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.update-date {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary-green);
}

.legal-page h3 {
    font-size: 1.4rem;
    margin: 1.8rem 0 0.8rem;
    color: var(--secondary-green);
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-page li {
    list-style: disc;
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.legal-page a {
    color: var(--secondary-green);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--light-gray);
    }

    .hamburger {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

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

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

    .trust-grid,
    .stats-grid {
        flex-direction: column;
    }

    .benefits-grid,
    .values-grid,
    .contact-grid {
        flex-direction: column;
    }

    .benefit-item,
    .value-card,
    .contact-card {
        flex: 1 1 100%;
    }

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

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .thanks-content h1 {
        font-size: 2rem;
    }

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