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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a1b;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 95, 45, 0.98);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #fff;
    color: #2c5f2d;
}

.btn-accept:hover {
    background: #f0f0f0;
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Header */
.header {
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: #2c5f2d;
    font-weight: 700;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #1a3a1b;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c5f2d;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/market-hero.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: #2c5f2d;
    color: #fff;
}

.btn-primary:hover {
    background: #1a3a1b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.btn-secondary:hover {
    background: #2c5f2d;
    color: #fff;
}

.btn-submit {
    background: #2c5f2d;
    color: #fff;
    width: 100%;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-submit:hover {
    background: #1a3a1b;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: #f8fdf8;
}

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

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c5f2d;
    font-weight: 700;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.intro-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Benefits Alt Section */
.benefits-alt {
    padding: 90px 0;
    background: #fff;
}

.benefits-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    background: #f8fdf8;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(44, 95, 45, 0.15);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}

/* Services Preview Section */
.services-preview {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdf8 100%);
}

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

.section-header-center h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 800;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #666;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(44, 95, 45, 0.12);
}

.service-content h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 700;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 28px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #1a3a1b;
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials-section {
    padding: 90px 0;
    background: #2c5f2d;
    color: #fff;
}

.testimonials-section h3 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.testimonials-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Stats Visual Section */
.stats-visual {
    padding: 80px 0;
    background: #f8fdf8;
}

.stats-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* Form Section */
.form-section {
    padding: 90px 0;
    background: #fff;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h3 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 700;
}

.form-header p {
    font-size: 1.1rem;
    color: #666;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    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: #2c5f2d;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* Sticky CTA Section */
.cta-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #2c5f2d;
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
    z-index: 900;
    display: none;
}

.cta-sticky.show {
    display: block;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-content span {
    font-weight: 600;
}

.btn-cta-sticky {
    padding: 8px 20px;
    background: #fff;
    color: #2c5f2d;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-sticky:hover {
    background: #f0f0f0;
}

/* Info Blocks Section */
.info-blocks {
    padding: 80px 0;
    background: #f8fdf8;
}

.info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-block {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.info-block h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 700;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Footer */
.footer {
    background: #1a3a1b;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h5 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #fff;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Page Hero */
.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    color: #fff;
    text-align: center;
}

.page-hero h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #2c5f2d;
    font-weight: 700;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.list-styled {
    list-style: disc;
    margin-left: 30px;
}

.list-styled li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2c5f2d;
}

.timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    min-width: 80px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2c5f2d;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #2c5f2d;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px #2c5f2d;
}

.timeline-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #2c5f2d;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.value-item {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background: #f8fdf8;
    border-radius: 10px;
    border-left: 4px solid #2c5f2d;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c5f2d;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
}

.service-detailed-item {
    margin-bottom: 60px;
    padding: 50px;
    background: #f8fdf8;
    border-radius: 12px;
}

.service-detail-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #2c5f2d;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.service-features {
    margin: 30px 0;
}

.service-features h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 700;
}

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

.service-features li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Pricing Table */
.pricing-table {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-row:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 1.05rem;
    color: #333;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f2d;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

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

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-info h3,
.contact-map h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c5f2d;
    font-weight: 700;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c5f2d;
    font-weight: 700;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.map-placeholder {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.directions h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 700;
}

.directions p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fdf8;
}

.faq-section h3 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #2c5f2d;
    font-weight: 700;
}

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

.faq-item {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c5f2d;
    font-weight: 700;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* CTA Section */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #2c5f2d 0%, #1a3a1b 100%);
    color: #fff;
    text-align: center;
}

.cta-section h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: #fff;
    color: #2c5f2d;
}

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

/* Thanks Page */
.thanks-hero {
    padding: 80px 0;
    background: #f8fdf8;
}

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

.success-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c5f2d;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.selected-service {
    font-size: 1.1rem;
    color: #333;
}

.next-steps {
    text-align: left;
    margin: 50px 0;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.next-steps h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c5f2d;
    text-align: center;
    font-weight: 700;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: #2c5f2d;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.step-text h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2c5f2d;
    font-weight: 700;
}

.step-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Additional Info Section */
.additional-info {
    padding: 80px 0;
    background: #fff;
}

.additional-info h3 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: #2c5f2d;
    font-weight: 700;
}

.info-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 35px;
    background: #f8fdf8;
    border-radius: 10px;
    text-align: center;
}

.info-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c5f2d;
    font-weight: 700;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.info-card a {
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Content */
.legal-content {
    padding: 80px 0;
}

.legal-text h3 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #2c5f2d;
    font-weight: 700;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text h4 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #2c5f2d;
    font-weight: 700;
}

.legal-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.legal-text ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.gdpr-table,
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-table th,
.cookies-table th {
    background: #2c5f2d;
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.gdpr-table td,
.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.gdpr-table tr:last-child td,
.cookies-table tr:last-child td {
    border-bottom: none;
}

.cookie-settings-section {
    margin: 40px 0;
    text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .nav.active ul {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

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

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

    .intro-flex {
        flex-direction: column;
        gap: 40px;
    }

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

    .testimonials-wrapper {
        flex-direction: column;
    }

    .stats-flex {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-year {
        min-width: 60px;
    }

    .timeline-year::after {
        right: -18px;
    }

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

    .cta-sticky {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }

    .cta-content {
        flex-direction: column;
        gap: 10px;
    }

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

    .service-detailed-item {
        padding: 30px 20px;
    }

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

@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        justify-content: space-between;
    }

    .benefit-card {
        flex-basis: calc(50% - 20px);
    }
}

@media (min-width: 769px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }
}
