/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4a7c59;
    --secondary-color: #6b8e23;
    --accent-color: #8fbc8f;
    --text-dark: #2c3e30;
    --text-light: #5a6c5d;
    --background-light: #f8f9f7;
    --background-white: #ffffff;
    --border-color: #d4dcd6;
    --shadow: 0 2px 8px rgba(74, 124, 89, 0.1);
    --shadow-hover: 0 4px 16px rgba(74, 124, 89, 0.15);
}

html {
    scroll-behavior: smooth;
}

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

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

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

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* Header and Navigation */
.site-header {
    background-color: var(--background-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    padding: 1rem 0;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

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

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-hero {
    background-color: var(--background-light);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

/* Sections */
section {
    padding: 4rem 0;
}

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

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

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

.icon-feature {
    flex: 0 0 200px;
}

.icon-feature svg {
    width: 100%;
    height: auto;
}

.centered-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.lead-text {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Services */
.services-highlight {
    background-color: var(--background-light);
}

.services-highlight h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

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

/* Services Page */
.services-list {
    background-color: var(--background-white);
}

.service-detail {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.service-info {
    flex: 1;
    min-width: 250px;
}

.service-info h2 {
    margin-bottom: 0.5rem;
}

.service-description {
    color: var(--text-light);
    font-size: 1.125rem;
}

.service-price {
    text-align: right;
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 150px;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.service-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-features {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-features li {
    margin-bottom: 0.5rem;
}

/* Company Story */
.company-story {
    background-color: var(--background-white);
}

/* Philosophy */
.philosophy {
    background-color: var(--background-light);
    text-align: center;
}

.philosophy h2 {
    margin-bottom: 2rem;
}

/* Statistics */
.statistics {
    background-color: var(--background-white);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

/* Process */
.process {
    background-color: var(--background-light);
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.process-flow {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-block {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.process-icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
}

/* Testimonials */
.testimonials {
    background-color: var(--background-white);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial cite {
    font-style: normal;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Industry Insights */
.industry-insights {
    background-color: var(--background-light);
}

.industry-insights h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.insight-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-block {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
}

/* Benefits */
.benefits {
    background-color: var(--background-white);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.benefit-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    margin-bottom: 0.5rem;
}

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

.service-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-comparison {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-block {
    flex: 1;
    min-width: 250px;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
}

/* FAQ */
.faq {
    background-color: var(--background-light);
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background-white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--background-light);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Values */
.values {
    background-color: var(--background-white);
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

/* Team */
.team {
    background-color: var(--background-light);
}

.team h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.member-icon svg {
    width: 100%;
    height: 100%;
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

/* Approach */
.approach {
    background-color: var(--background-white);
}

.approach h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.approach-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

/* Achievements */
.achievements {
    background-color: var(--background-light);
}

.achievements h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-year {
    flex: 0 0 80px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 0.25rem;
}

.timeline-content {
    flex: 1;
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

/* Industries Served */
.industries-served {
    background-color: var(--background-white);
}

.industries-served h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
}

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

.industry-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

/* Contact Page */
.contact-info {
    background-color: var(--background-white);
}

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

.contact-block {
    flex: 1;
    min-width: 280px;
}

.contact-block h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-details {
    color: var(--text-light);
}

.contact-details .address {
    line-height: 1.8;
}

.email-link {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.detail-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

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

.about-contact h2 {
    margin-bottom: 2rem;
}

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

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

.directions h2 {
    margin-bottom: 2rem;
}

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

.directions-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.company-details h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.company-info-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.info-block {
    flex: 1;
    min-width: 300px;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
}

.info-block h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.service-areas h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.areas-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

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

.area-column h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.area-column ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.area-column li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.coverage-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Thank You Page */
.thank-you-hero {
    background-color: var(--background-light);
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.success-icon svg {
    width: 100%;
    height: 100%;
}

.next-steps {
    background-color: var(--background-white);
}

.next-steps h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
    text-align: center;
}

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

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

.while-waiting h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.waiting-content {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.content-block {
    flex: 1;
    min-width: 280px;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.text-link:hover {
    color: var(--secondary-color);
}

.contact-reminder {
    background-color: var(--background-white);
}

.reminder-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.reminder-box h2 {
    margin-bottom: 1rem;
}

.reminder-box p {
    margin-bottom: 2rem;
}

/* Legal Pages */
.legal-page {
    background-color: var(--background-white);
    padding: 3rem 0;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.updated-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    margin-bottom: 1rem;
}

.cookie-table table {
    width: 100%;
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.cookie-table td {
    padding: 0.5rem;
    vertical-align: top;
}

.cookie-table td:first-child {
    width: 150px;
}

/* Footer */
.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

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

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.cookie-option p {
    margin: 0.5rem 0 0 1.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 0;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

    .icon-feature {
        flex: 1;
        max-width: 150px;
        margin: 0 auto;
    }

    .service-header {
        flex-direction: column;
    }

    .service-price {
        text-align: left;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        flex: 1;
    }

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

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

    .cookie-actions button {
        width: 100%;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

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

    section {
        padding: 3rem 0;
    }

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

    .price-amount {
        font-size: 1.75rem;
    }
}