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

:root {
    --primary-color: #2C5F2D;
    --primary-dark: #1F4620;
    --primary-light: #4A8A4D;
    --secondary-color: #97BE5A;
    --accent-color: #FFA500;
    --text-dark: #1A1A1A;
    --text-light: #4A4A4A;
    --text-muted: #6B6B6B;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}

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

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

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

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

a:hover {
    color: var(--primary-dark);
}

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

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

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-menu {
    position: fixed;
    top: 73px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 73px);
    background-color: var(--bg-white);
    list-style: none;
    padding: 2rem 0;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--bg-light);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--bg-white);
}

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

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

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e9 100%);
}

.hero-content {
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 400px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 3rem 0;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Philosophy Section */
.philosophy {
    background-color: var(--bg-light);
}

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item {
    text-align: center;
    padding: 1.5rem;
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.philosophy-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Benefits Section */
.benefits-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.benefits-image {
    width: 100%;
    max-width: 400px;
}

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

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

.process-step {
    text-align: center;
    padding: 1.5rem;
}

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

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    margin-bottom: 1rem;
}

.testimonial-text p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-color);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Tips Section */
.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tip-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.tip-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-light);
}

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

.faq-answer p {
    padding: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-content h2 {
    color: var(--bg-white);
    margin-bottom: 1rem;
}

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

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-link {
    color: var(--secondary-color);
    text-decoration: underline;
    display: inline-block;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.cookie-option-header label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

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

/* Pricing Section */
.pricing-section {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.pricing-card.featured {
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.25rem;
}

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

.price-currency {
    font-size: 1.25rem;
    color: var(--text-light);
}

.price-period {
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.pricing-features ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-footer {
    text-align: center;
}

/* Services Detail */
.service-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.service-detail-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.service-detail-visual {
    display: flex;
    justify-content: center;
}

.service-image {
    width: 100%;
    max-width: 400px;
}

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

.additional-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.additional-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.additional-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.additional-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.additional-price {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-table {
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.comparison-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row.highlight {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
}

.comparison-label {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-value {
    text-align: right;
}

.comparison-value.negative {
    color: var(--text-muted);
}

.comparison-value.positive {
    color: var(--primary-color);
}

.comparison-value.savings {
    color: var(--primary-color);
    font-weight: 700;
}

.comparison-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Process Steps Detailed */
.process-steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step-detailed {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

/* Contact Section */
.contact-info-section {
    background-color: var(--bg-light);
}

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

.contact-info-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--primary-dark);
}

.contact-info-block h3 {
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-detail a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Company Info */
.company-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-info-item {
    background-color: var(--bg-light);
    padding: 1.25rem;
    border-radius: 6px;
}

.company-info-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.company-info-item p {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Contact Reasons */
.reasons-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reason-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.reason-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.reason-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-light) 100%);
    text-align: center;
}

.final-cta-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.final-cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

/* Thank You Page */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.thank-you-message {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.next-steps {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    text-align: left;
}

.step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.meanwhile-section {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.meanwhile-section h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.meanwhile-list {
    list-style: none;
    padding-left: 0;
}

.meanwhile-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.meanwhile-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Legal Pages */
.legal-page {
    padding: 3rem 0;
}

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

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.legal-intro {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cookies-table {
    margin-top: 1.5rem;
}

.cookies-table h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.cookies-table table {
    width: 100%;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.cookies-table tr {
    border-bottom: 1px solid var(--border-color);
}

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

.cookies-table td {
    padding: 0.75rem;
    line-height: 1.6;
}

.cookies-table td:first-child {
    background-color: var(--bg-light);
    width: 30%;
    font-weight: 600;
}

/* Story Section */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.story-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-image {
    width: 100%;
    max-width: 400px;
}

/* Values Section */
.values-section {
    background-color: var(--bg-light);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* Team Section */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-member {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.member-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary-dark);
}

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

.member-info p {
    line-height: 1.7;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content {
    background-color: var(--bg-light);
    padding: 1.25rem;
    border-radius: 6px;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Approach Section */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.approach-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.approach-item p {
    line-height: 1.7;
    color: var(--text-light);
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
}

.impact-section h2 {
    color: var(--bg-white);
}

.impact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-stat {
    text-align: center;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.impact-stat p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Mission Section */
.mission-content h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.mission-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.mission-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.mission-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.mission-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: row;
        gap: 1.5rem;
    }

    .philosophy-grid,
    .services-grid,
    .stats-grid,
    .tips-grid,
    .testimonials-grid,
    .values-grid,
    .team-grid,
    .additional-grid,
    .reasons-grid,
    .company-info-grid,
    .impact-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item,
    .service-card,
    .stat-item,
    .tip-card,
    .testimonial-card,
    .value-card,
    .team-member,
    .additional-card,
    .reason-card,
    .company-info-item,
    .impact-stat {
        flex: 1 1 calc(50% - 1rem);
    }

    .pricing-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .pricing-card {
        flex: 1;
    }

    .service-detail-item {
        flex-direction: row;
        align-items: center;
    }

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

    .service-detail-content,
    .service-detail-visual {
        flex: 1;
    }

    .benefits-content {
        flex-direction: row;
        align-items: center;
    }

    .benefits-text,
    .benefits-visual {
        flex: 1;
    }

    .story-content {
        flex-direction: row;
        align-items: center;
    }

    .story-text,
    .story-visual {
        flex: 1;
    }

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

    .contact-info-block {
        flex: 1;
    }

    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-col {
        flex: 1 1 calc(50% - 1rem);
    }

    .cookie-actions {
        flex-direction: row;
        align-items: center;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    section {
        padding: 4rem 0;
    }

    section h2 {
        font-size: 2.25rem;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero .container {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .hero-content {
        flex: 1;
        margin-bottom: 0;
    }

    .hero-visual {
        flex: 1;
    }

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

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background-color: transparent;
        box-shadow: none;
        display: flex;
        padding: 0;
    }

    .nav-link {
        padding: 0.5rem 1rem;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: transparent;
        border-left: none;
        border-bottom-color: var(--primary-color);
    }

    .philosophy-item,
    .stat-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .service-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

    .tip-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 1rem);
    }

    .value-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

    .team-member {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .additional-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

    .reason-card {
        flex: 1 1 calc(25% - 1.125rem);
    }

    .company-info-item {
        flex: 1 1 calc(25% - 1.125rem);
    }

    .impact-stat {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .footer-col {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .process-steps {
        flex-direction: row;
    }

    .process-step {
        flex: 1;
    }
}

@media (min-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }
}