/* 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, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #8b7355;
}

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

/* Header and Navigation */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #8b7355;
}

.nav-menu a.active {
    color: #8b7355;
}

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

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
        padding: 1rem 0;
        border-top: 1px solid #e8e8e8;
    }

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

    .nav-menu li {
        width: 100%;
    }

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

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

.hero-content {
    max-width: 600px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero p {
    font-size: 1.125rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

/* Page Hero */
.page-hero {
    padding: 3rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.page-hero .lead {
    font-size: 1.25rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

.btn-primary {
    background-color: #8b7355;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #725d45;
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border-color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.section-intro-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #5a6c7d;
}

.label {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #8b7355;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

/* Philosophy Section */
.philosophy {
    background-color: #f8f9fa;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    flex: 1 1 300px;
    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: #ffffff;
}

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

.featured-text {
    flex: 1 1 400px;
}

.featured-visual {
    flex: 1 1 400px;
}

.featured-visual img {
    width: 100%;
}

/* Stats Section */
.stats {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.stat-item {
    flex: 1 1 200px;
    text-align: center;
}

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

.stat-label {
    font-size: 1rem;
    color: #ffffff;
}

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

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

.service-card {
    flex: 1 1 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

/* Testimonials */
.testimonials {
    background-color: #f8f9fa;
}

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

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

.testimonial {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #8b7355;
    border-radius: 4px;
}

.testimonial p {
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2c3e50;
}

/* Process Steps */
.process {
    background-color: #ffffff;
}

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

.process-step {
    flex: 1 1 250px;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
}

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

/* Industries */
.industries {
    background-color: #f8f9fa;
    text-align: center;
}

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.industry-tag {
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 25px;
    font-weight: 500;
}

/* Values */
.values-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-block h3 {
    color: #8b7355;
    margin-bottom: 1rem;
}

/* FAQ */
.faq {
    background-color: #ffffff;
}

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

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

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2c3e50;
}

.faq-icon::after {
    content: '+';
    font-size: 1.5rem;
    color: #8b7355;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    content: '−';
}

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

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #5a6c7d;
}

/* CTA Sections */
.cta-final,
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3d5266 100%);
    color: #ffffff;
    text-align: center;
}

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

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

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

/* Footer */
.footer {
    background-color: #1a252f;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    flex: 1 1 250px;
}

.footer-brand h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #a0aec0;
}

.footer-links {
    flex: 2 1 400px;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-col {
    flex: 1 1 150px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #8b7355;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 0.875rem;
}

/* Story Page */
.story {
    max-width: 800px;
    margin: 0 auto;
}

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

.story-content p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    font-size: 1.0625rem;
}

/* Milestones */
.milestone {
    background-color: #f8f9fa;
}

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

.milestone-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.milestone-year {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 1rem;
}

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

/* Team */
.team {
    background-color: #ffffff;
}

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

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

.team-member {
    flex: 1 1 250px;
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e9ecef;
}

.member-role {
    color: #8b7355;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Approach */
.approach {
    background-color: #f8f9fa;
}

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

.approach-block {
    flex: 1 1 300px;
}

.approach-block h3 {
    color: #8b7355;
    margin-bottom: 1rem;
}

.approach-block p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

/* Commitments */
.commitments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

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

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

/* Vision */
.vision {
    background-color: #f8f9fa;
}

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

.vision-content p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    font-size: 1.0625rem;
}

/* Services Page */
.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-detailed {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.service-header h2 {
    margin: 0 0 0.5rem 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b7355;
}

.service-description p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

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

.service-includes h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5a6c7d;
}

.service-includes ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

/* Service Benefits */
.service-benefits {
    background-color: #ffffff;
}

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

.benefit-item {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.benefit-item h3 {
    color: #8b7355;
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    background-color: #f8f9fa;
}

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

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

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #8b7355;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

/* Comparison Table */
.comparison {
    background-color: #ffffff;
}

.comparison-table {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.comparison-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.comparison-table td {
    color: #5a6c7d;
}

/* Contact Page */
.contact-info {
    background-color: #ffffff;
}

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

.contact-details {
    flex: 2 1 500px;
}

.contact-sidebar {
    flex: 1 1 300px;
}

.contact-block {
    margin-bottom: 3rem;
}

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

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

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

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #8b7355;
}

.contact-item p {
    color: #5a6c7d;
}

.contact-item a {
    color: #8b7355;
}

.info-box {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.info-box p {
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.info-box ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #5a6c7d;
}

/* Directions */
.directions {
    background-color: #f8f9fa;
}

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

.direction-item {
    flex: 1 1 400px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.direction-item h3 {
    margin-bottom: 1rem;
    color: #8b7355;
}

.direction-item p {
    margin-bottom: 1rem;
    color: #5a6c7d;
}

/* Company Info Section */
.company-info-section {
    background-color: #ffffff;
}

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

.company-description p {
    margin-bottom: 1.5rem;
    color: #5a6c7d;
    font-size: 1.0625rem;
}

/* Visit CTA */
.visit-cta {
    background: linear-gradient(135deg, #8b7355 0%, #725d45 100%);
    color: #ffffff;
    text-align: center;
}

.visit-cta .cta-content h2 {
    color: #ffffff;
}

.visit-cta .cta-content p {
    color: #f8f9fa;
}

/* Thank You Page */
.thank-you-hero {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

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

.next-steps {
    background-color: #ffffff;
}

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

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

.step-card {
    flex: 1 1 300px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.step-card .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: #8b7355;
    color: #ffffff;
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

/* Meanwhile Section */
.meanwhile {
    background-color: #f8f9fa;
}

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

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

.meanwhile-card {
    flex: 1 1 350px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.meanwhile-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

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

.meanwhile-card p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.link-arrow {
    color: #8b7355;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.link-arrow::after {
    content: '→';
}

/* Legal Content */
.legal-content {
    background-color: #ffffff;
}

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

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: #5a6c7d;
}

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

.legal-text ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
    color: #5a6c7d;
}

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

.legal-text strong {
    color: #2c3e50;
}

/* Cookies Table */
.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

.cookies-table table {
    width: 100%;
    min-width: 600px;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #5a6c7d;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    color: #e9ecef;
}

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

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

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

.cookie-modal-content {
    background-color: #ffffff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e8e8e8;
}

.cookie-modal-header h2 {
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #5a6c7d;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.cookie-modal-body {
    padding: 1.5rem;
}

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

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.cookie-category h3 {
    margin: 0;
    font-size: 1.125rem;
}

.cookie-status {
    color: #8b7355;
    font-size: 0.875rem;
    font-weight: 600;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
    background-color: #8b7355;
}

.cookie-toggle input:checked + .cookie-slider:before {
    transform: translateX(24px);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e8e8e8;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

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

    section h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .featured-content {
        gap: 2rem;
    }

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

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

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

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

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .comparison-table {
        font-size: 0.875rem;
    }
}

@media (min-width: 769px) {
    .hero {
        padding: 5rem 0;
    }

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

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

    .hero-visual {
        margin-top: 0;
        flex: 1;
    }
}

@media (min-width: 1024px) {
    html {
        font-size: 17px;
    }

    .container {
        padding: 0 40px;
    }
}