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

:root {
    --color-primary: #2c1810;
    --color-secondary: #8b6f47;
    --color-accent: #c19a6b;
    --color-light: #f5f1ed;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-border: #e0d5c7;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Header and Navigation */
.header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-menu a {
    font-size: 1.1rem;
    color: var(--color-text);
    padding: 0.5rem 0;
    display: block;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

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

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

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

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

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: var(--color-light);
}

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

.hero h1 {
    margin-bottom: 1.5rem;
}

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

.hero-visual {
    margin-top: 2rem;
}

.hero-visual img {
    width: 100%;
    border-radius: 8px;
}

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

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

/* Section Spacing */
section {
    padding: 4rem 0;
}

.section-intro,
.section-intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-intro h2 {
    margin-bottom: 1.5rem;
}

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

.philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.philosophy-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.philosophy-item h3 {
    margin-bottom: 1rem;
}

/* Featured Service */
.featured-service {
    background-color: var(--color-light);
}

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

.featured-text .label {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-visual img {
    width: 100%;
    border-radius: 8px;
}

/* Stats Section */
.stats {
    background-color: var(--color-primary);
    color: var(--color-white);
}

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

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

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

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

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

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

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

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

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

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

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

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
}

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

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

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

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

.testimonial {
    background-color: var(--color-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.benefit-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

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

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

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

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

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

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

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: var(--transition);
}

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

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

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

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

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

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

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

.knowledge-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--color-accent);
}

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

/* CTA Section */
.cta,
.cta-alt,
.cta-contact {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2,
.cta-alt h2,
.cta-contact h2 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta p,
.cta-alt p,
.cta-contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.email-link {
    color: var(--color-accent);
    text-decoration: underline;
}

.email-link:hover {
    color: var(--color-white);
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    opacity: 0.9;
    font-size: 0.95rem;
}

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

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    border-top: 3px solid var(--color-accent);
}

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

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

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

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

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

.cookie-buttons button {
    flex: 1;
    min-width: 140px;
}

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

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

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

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

.cookie-options {
    margin-bottom: 2rem;
}

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

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

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

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

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

.modal-buttons button {
    flex: 1;
    min-width: 140px;
}

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

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

.story-content h2 {
    margin-bottom: 2rem;
}

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

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

.timeline {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.timeline-year {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

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

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

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.member-info {
    margin-bottom: 1rem;
}

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

.member-role {
    display: block;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

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

.value-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-item img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

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

/* Workshop Section */
.workshop {
    background-color: var(--color-white);
}

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

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

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

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

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

.approach-item {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

/* Commitment Section */
.commitment {
    background-color: var(--color-white);
}

.commitment h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.commitment-item {
    padding: 2rem;
    background-color: var(--color-light);
    border-radius: 8px;
    border-left: 4px solid var(--color-accent);
}

.commitment-item h3 {
    margin-bottom: 1rem;
}

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

.service-detail {
    max-width: 900px;
    margin: 0 auto 4rem;
    background-color: var(--color-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.service-header img {
    width: 70px;
    height: 70px;
}

.service-tagline {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-style: italic;
    margin: 0;
}

.service-body {
    margin-top: 1.5rem;
}

.service-features {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--color-white);
    border-radius: 6px;
}

.service-features h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-features ul {
    list-style: disc;
    padding-left: 1.5rem;
}

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

.service-pricing {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

/* Service Benefits */
.service-benefits {
    background-color: var(--color-light);
}

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

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

.benefit-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--color-secondary);
}

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

/* Process Overview */
.process-overview {
    background-color: var(--color-white);
}

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

.process-detailed {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.phase-number {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-phase h3 {
    margin-bottom: 1rem;
}

.process-phase p strong {
    color: var(--color-secondary);
}

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

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

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

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin-bottom: 0.75rem;
}

.contact-item a {
    color: var(--color-secondary);
    text-decoration: underline;
}

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

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

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

/* Directions Section */
.directions {
    background-color: var(--color-light);
}

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

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

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

.direction-method h3 {
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

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

.directions-note strong {
    font-weight: 700;
}

/* Company Info Section */
.company-info-section {
    background-color: var(--color-white);
}

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

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.company-detail-item {
    padding: 1.5rem;
    background-color: var(--color-light);
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.company-detail-item h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-secondary);
    flex: 1;
    min-width: 150px;
}

.company-detail-item p {
    margin: 0;
    font-weight: 600;
    flex: 2;
}

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

/* About Area */
.about-area {
    background-color: var(--color-white);
}

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

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

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

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

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

.thank-you-content h1 {
    margin-bottom: 1.5rem;
}

.thank-you-content .lead {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Next Steps */
.next-steps {
    background-color: var(--color-white);
}

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

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

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

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

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

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

.last-updated {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

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

.legal-section h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-border);
}

.legal-section h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.legal-section ul,
.legal-section ol {
    list-style-position: outside;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.legal-section li {
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

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

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

.note-box {
    background-color: var(--color-light);
    padding: 1.5rem;
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
    margin: 1.5rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookie-table th {
    background-color: var(--color-light);
    font-weight: 600;
    color: var(--color-primary);
}

.cookie-table td {
    color: var(--color-text-light);
}

/* Tablet Styles */
@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        padding: 0;
        width: auto;
        height: auto;
        box-shadow: none;
        gap: 2rem;
    }

    .nav-menu li {
        margin-bottom: 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero .container {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .hero-content,
    .hero-visual {
        flex: 1;
    }

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

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

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

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

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

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

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

    .industry-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

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

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

    .approach-item {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .benefit-card {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
    }

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

    .direction-method {
        flex: 1 1 calc(50% - 1rem);
    }

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

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-shrink: 0;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .services-cards {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1;
    }

    .philosophy-grid {
        gap: 4rem;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial {
        flex: 1;
    }

    .industries-grid {
        flex-wrap: nowrap;
    }

    .industry-card {
        flex: 1;
    }

    .knowledge-grid {
        gap: 3rem;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .team-member {
        flex: 1;
    }

    .approach-grid {
        flex-wrap: nowrap;
    }

    .approach-item {
        flex: 1;
    }

    .benefits-comparison {
        flex-wrap: nowrap;
    }

    .benefit-card {
        flex: 1;
    }

    .directions-content {
        flex-wrap: nowrap;
    }

    .direction-method {
        flex: 1;
    }

    .steps-grid {
        gap: 3rem;
    }
}