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

:root {
    --primary-color: #2d5a3d;
    --primary-dark: #1f3d2a;
    --primary-light: #4a7d5e;
    --accent-color: #8b6f47;
    --text-dark: #2c2c2c;
    --text-medium: #5a5a5a;
    --text-light: #7a7a7a;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    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);
}

ul {
    list-style: none;
}

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

/* Header */
.main-header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px var(--shadow);
}

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

.logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.main-nav.active ul {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 6px var(--shadow);
}

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
}

.main-nav a:hover {
    color: var(--primary-color);
}

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

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

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

.btn-primary:hover {
    background-color: #6f5838;
    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);
}

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

section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

section h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.alt-bg {
    background-color: var(--bg-light);
}

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

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

.intro-text p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.intro-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-visual img {
    max-width: 100%;
    height: auto;
}

/* Values Section */
.values-section {
    text-align: center;
}

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

.value-card {
    padding: 2rem;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 4px 12px var(--shadow);
}

.value-icon {
    margin-bottom: 1.5rem;
}

.value-icon img {
    height: 60px;
    width: 60px;
    margin: 0 auto;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-medium);
}

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

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

.philosophy-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Featured Products */
.featured-products {
    background-color: var(--bg-light);
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-feature {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-visual img {
    max-width: 300px;
    height: auto;
}

.product-info h3 {
    margin-bottom: 1rem;
}

.product-info p {
    color: var(--text-medium);
}

/* Process Section */
.process-section {
    text-align: center;
}

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

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step h3 {
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-medium);
}

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

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

.testimonial {
    background-color: var(--bg-white);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1.125rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

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

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

.stat {
    padding: 2rem;
}

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

.stat-label {
    font-size: 1.125rem;
}

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

.knowledge-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
}

.knowledge-list {
    list-style: none;
    margin: 2rem 0;
}

.knowledge-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.knowledge-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-white);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon:before,
.faq-icon:after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-icon:before {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon:after {
    width: 2px;
    height: 20px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon:after {
    transform: translateX(-50%) rotate(90deg);
}

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

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

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-buttons .btn-secondary {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

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

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

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

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

.footer-col a {
    color: var(--bg-light);
    transition: color 0.3s ease;
}

.footer-col 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: var(--text-light);
    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: 0 -2px 10px var(--shadow);
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    font-size: 0.938rem;
}

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

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

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

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

.modal-content {
    background-color: var(--bg-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;
}

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

.cookie-option span {
    font-weight: 600;
}

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

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.page-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 4rem 0;
}

.story-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

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

.team-intro {
    margin-bottom: 3rem;
}

.team-intro p {
    color: var(--text-medium);
    line-height: 1.7;
}

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

.team-member {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

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

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

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

/* Approach Section */
.approach-section {
    padding: 4rem 0;
}

.approach-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.8;
}

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

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

.material-card {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

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

.material-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.materials-note {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.materials-note p {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

/* Values Detail */
.values-detail-section {
    padding: 4rem 0;
}

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

.value-detail-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.value-detail-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-detail-item p {
    color: var(--text-medium);
    line-height: 1.8;
}

/* Timeline */
.milestones-section {
    background-color: var(--bg-light);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

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

.timeline-item {
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 60px;
    height: 30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 4px;
    transform: translateX(-50%);
}

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

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

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

/* Trust Section */
.trust-section {
    padding: 4rem 0;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.trust-point h3 {
    margin-bottom: 1rem;
}

.trust-point p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Services */
.services-list-section {
    padding: 4rem 0;
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px var(--shadow);
}

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

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

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}

/* Custom Projects */
.custom-projects {
    max-width: 800px;
    margin: 0 auto;
}

.custom-projects p {
    margin-bottom: 2rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.custom-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.custom-info h3 {
    margin-bottom: 1rem;
}

.custom-info ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.custom-info li {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

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

.benefit-item {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

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

/* Comparison Table */
.comparison-section {
    padding: 4rem 0;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: flex;
    flex-direction: column;
}

.comparison-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem;
    font-weight: 600;
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-cell:first-child {
    font-weight: 600;
    background-color: var(--bg-light);
}

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

.negative {
    color: #c74440;
}

.neutral {
    color: var(--text-medium);
}

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

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

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

.process-step h3 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Contact Sections */
.contact-info-section {
    padding: 4rem 0;
}

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

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

.contact-detail {
    margin-bottom: 2rem;
}

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

.contact-detail p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-detail .note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.directions-section {
    background-color: var(--bg-light);
}

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

.direction-method {
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-radius: 8px;
}

.direction-method h3 {
    margin-bottom: 1rem;
}

.direction-method p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.direction-method p:last-child {
    margin-bottom: 0;
}

.contact-about-section {
    padding: 4rem 0;
}

.contact-about-section p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-info-section {
    background-color: var(--bg-light);
}

.company-details {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.company-details p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.company-details p:last-child {
    margin-bottom: 0;
}

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

.thank-you-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thank-you-lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thank-you-content p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

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

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

.legal-section ul,
.legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background-color: var(--bg-white);
}

.cookies-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
}

.cookies-table td {
    color: var(--text-medium);
}

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

    .hero-cta {
        flex-direction: row;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .main-nav ul {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        position: static;
        padding: 0;
        border: none;
        box-shadow: none;
        background: none;
    }

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

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

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

    .value-card {
        flex: 1;
        min-width: calc(33.333% - 1.5rem);
    }

    .product-feature {
        flex-direction: row;
        align-items: center;
    }

    .product-feature.reverse {
        flex-direction: row-reverse;
    }

    .product-visual,
    .product-info {
        flex: 1;
    }

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

    .step {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .testimonial {
        flex: 1;
    }

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

    .stat {
        flex: 1;
    }

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

    .team-member {
        flex: 1;
    }

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

    .material-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

    .values-detail {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-detail-item {
        flex: 1;
        min-width: calc(50% - 1rem);
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        padding-right: 2rem;
    }

    .value-detail-item:nth-child(2n) {
        border-right: none;
    }

    .trust-points {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-point {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .service-card {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .benefit-item {
        flex: 1;
        min-width: calc(33.333% - 1rem);
    }

    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
        border-right: 1px solid var(--border-color);
    }

    .comparison-cell:last-child {
        border-right: none;
    }

    .process-timeline {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1;
        min-width: calc(50% - 1rem);
    }

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

    .contact-block {
        flex: 1;
    }

    .directions-content {
        flex-direction: row;
    }

    .direction-method {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-buttons {
        flex-direction: row;
    }

    .cta-buttons {
        flex-direction: row;
    }

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

    .modal-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 5rem 0;
    }

    .hero {
        padding: 6rem 0;
    }

    .page-hero {
        padding: 4rem 0;
    }

    .step {
        min-width: calc(25% - 1.5rem);
    }

    .material-card {
        min-width: calc(33.333% - 1rem);
    }
}