/* ========================================
   Reset and Base Styles
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    color: #8B4513;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #5D2E0F;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    color: #2C3E50;
}

h2 {
    font-size: 2rem;
    color: #2C3E50;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    color: #34495E;
}

h4 {
    font-size: 1.25rem;
    color: #34495E;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

/* ========================================
   Layout Components
   ======================================== */

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

section {
    padding: 4rem 0;
}

.alt-bg {
    background-color: #F8F9FA;
}

/* ========================================
   Navigation
   ======================================== */

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    background-color: #fff;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    text-decoration: none;
}

.logo:hover {
    color: #5D2E0F;
}

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

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B4513;
    border-bottom-color: #8B4513;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ========================================
   Buttons
   ======================================== */

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #8B4513;
    color: #fff;
    border-color: #8B4513;
}

.btn-primary:hover {
    background-color: #5D2E0F;
    border-color: #5D2E0F;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    color: #8B4513;
    border-color: #8B4513;
}

.btn-secondary:hover {
    background-color: #8B4513;
    color: #fff;
}

button.btn-primary,
button.btn-secondary {
    font-size: 1rem;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    background: linear-gradient(135deg, #F5E6D3 0%, #FFF8DC 100%);
    padding: 5rem 0;
}

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

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* ========================================
   Page Header
   ======================================== */

.page-header {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0.5rem;
}

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

/* ========================================
   Philosophy Section
   ======================================== */

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

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

.philosophy-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

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

.philosophy-item h3 {
    margin-bottom: 1rem;
    color: #8B4513;
}

/* ========================================
   Services & Features
   ======================================== */

.featured-services h2,
.services-category h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-showcase,
.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-card.featured {
    border-top: 4px solid #8B4513;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-header {
    margin-bottom: 1rem;
}

.service-header h3 {
    margin-bottom: 0.5rem;
}

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

.service-description {
    margin-bottom: 1rem;
    color: #555;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8B4513;
    font-weight: bold;
}

/* ========================================
   Company Story
   ======================================== */

.company-story .container,
.company-history .container {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.story-content,
.history-content {
    flex: 1;
    min-width: 300px;
}

.story-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.story-visual svg {
    width: 100%;
    max-width: 300px;
}

/* ========================================
   Benefits
   ======================================== */

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

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

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    min-width: 60px;
}

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

/* ========================================
   Statistics
   ======================================== */

.statistics {
    background: linear-gradient(135deg, #8B4513 0%, #5D2E0F 100%);
    color: #fff;
}

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

.stat-item {
    text-align: center;
    min-width: 150px;
}

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

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

/* ========================================
   Testimonials
   ======================================== */

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #8B4513;
}

/* ========================================
   Values
   ======================================== */

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

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

.value-block {
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #8B4513;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

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

/* ========================================
   Knowledge/Tips
   ======================================== */

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

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

.knowledge-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #FFF8DC;
    border-radius: 8px;
    border-top: 3px solid #8B4513;
}

.knowledge-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

/* ========================================
   FAQ
   ======================================== */

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

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: #F8F9FA;
}

.faq-icon {
    font-size: 1.5rem;
    color: #8B4513;
    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: #F8F9FA;
}

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

.faq-answer p {
    padding: 1.25rem;
    margin: 0;
}

/* ========================================
   CTA Section
   ======================================== */

.cta {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Team Section
   ======================================== */

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

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

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.member-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.member-icon svg {
    width: 100%;
    height: 100%;
}

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

/* ========================================
   Timeline
   ======================================== */

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

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #8B4513;
    min-width: 100px;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background-color: #F8F9FA;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
}

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

/* ========================================
   Mission & Vision
   ======================================== */

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

.mission-block,
.vision-block {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mission-block h2,
.vision-block h2 {
    color: #8B4513;
    margin-bottom: 1.5rem;
}

/* ========================================
   Principles
   ======================================== */

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

.principles-list {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.principle-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

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

.principle-icon svg {
    width: 100%;
    height: 100%;
}

.principle-item h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

/* ========================================
   Contact Page
   ======================================== */

.contact-info {
    padding: 4rem 0;
}

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

.contact-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #8B4513;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.875rem;
    color: #777;
    font-style: italic;
}

.about-location,
.directions {
    padding: 4rem 0;
}

.location-content p {
    margin-bottom: 1.5rem;
}

.directions-grid,
.parking-options,
.tips-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.direction-card,
.parking-option,
.tip-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.direction-card h3,
.tip-card h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.parking-tip {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #FFF8DC;
    border-left: 4px solid #FFD700;
    border-radius: 4px;
}

/* ========================================
   Company Details
   ======================================== */

.company-details {
    background-color: #F8F9FA;
}

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

.info-block {
    flex: 1;
    min-width: 300px;
}

.info-block h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.info-block p {
    margin-bottom: 0.5rem;
}

/* ========================================
   Thank You Page
   ======================================== */

.thank-you-hero {
    background: linear-gradient(135deg, #F5E6D3 0%, #FFF8DC 100%);
    padding: 5rem 0;
    text-align: center;
}

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

.thank-you-icon svg {
    width: 100%;
    height: 100%;
}

.thank-you-message {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

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

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

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

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

.step-icon svg {
    width: 100%;
    height: 100%;
}

.link-arrow {
    color: #8B4513;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

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

.reason-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.reason-item h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.testimonial-highlight {
    background-color: #F8F9FA;
}

.testimonial-featured {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-quote {
    margin-bottom: 1.5rem;
}

.quote-icon {
    width: 60px;
    height: 60px;
}

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

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

.link-block {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.link-block h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

.link-block p {
    margin-bottom: 1.5rem;
    color: #555;
}

/* ========================================
   Legal Pages
   ======================================== */

.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2C3E50;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #34495E;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text ul li {
    list-style-type: disc;
    margin-bottom: 0.5rem;
}

.legal-text a {
    color: #8B4513;
    text-decoration: underline;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-entry {
    padding: 1.5rem;
    background-color: #F8F9FA;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.cookie-entry p {
    margin-bottom: 0.5rem;
}

/* ========================================
   Additional Services
   ======================================== */

.service-benefits h2,
.process-steps h2,
.services-faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.benefit-block {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-block h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

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

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

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

.step-content {
    flex: 1;
}

.step-content h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

/* ========================================
   Services Intro
   ======================================== */

.services-intro {
    background-color: #F8F9FA;
    padding: 2rem 0;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    text-align: center;
    color: #555;
}

/* ========================================
   Sustainability & Community
   ======================================== */

.sustainability h2,
.community h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.sustainability-content p {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.sustainability-actions,
.community-initiatives {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.action-item,
.initiative {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.action-item h3,
.initiative h3 {
    color: #8B4513;
    margin-bottom: 1rem;
}

/* ========================================
   Trust Indicators
   ======================================== */

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

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    min-width: 150px;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    display: block;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #555;
}

/* ========================================
   Map Placeholder
   ======================================== */

.map-placeholder {
    background-color: #F8F9FA;
}

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

/* ========================================
   Footer
   ======================================== */

footer {
    background-color: #2C3E50;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

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

/* ========================================
   Cookie Banner
   ======================================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2C3E50;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
    padding: 0.75rem 1.5rem;
}

/* ========================================
   Cookie Modal
   ======================================== */

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

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

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.modal-content h3 {
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

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

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

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

.cookie-option p {
    margin: 0.5rem 0 0 1.75rem;
    font-size: 0.875rem;
    color: #666;
    font-weight: normal;
}

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

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

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

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

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 1rem;
    }

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

    .nav-menu li {
        width: 100%;
        border-top: 1px solid #eee;
    }

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

    .hero .container {
        flex-direction: column;
    }

    .philosophy-grid,
    .services-showcase,
    .services-grid,
    .testimonials-grid,
    .team-grid,
    .steps-grid,
    .reasons-grid,
    .links-grid {
        flex-direction: column;
    }

    .stats-grid,
    .trust-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .timeline-year {
        font-size: 1.5rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-number {
        margin: 0 auto 1rem;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }

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

/* ========================================
   Print Styles
   ======================================== */

@media print {
    header,
    footer,
    .cookie-banner,
    .cookie-modal,
    .cta,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    a {
        text-decoration: underline;
        color: #000;
    }

    .container {
        max-width: 100%;
    }
}