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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

h1 {
    font-size: 2rem;
    color: #1a252f;
}

h2 {
    font-size: 1.75rem;
    color: #1a252f;
}

h3 {
    font-size: 1.4rem;
    color: #2c3e50;
}

h4 {
    font-size: 1.2rem;
    color: #2c3e50;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5b87;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Header */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2980b9;
}

.logo a:hover {
    color: #1a5b87;
}

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

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #2c3e50;
    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: #2980b9;
    border-bottom-color: #2980b9;
}

/* Mobile Menu Toggle */
.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: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 0;
        padding: 1rem 0;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #2980b9;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #1a5b87;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(41, 128, 185, 0.3);
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2980b9 0%, #1a5b87 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Page Hero */
.page-hero {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

.section-label {
    display: inline-block;
    color: #2980b9;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

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

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

.philosophy-content p {
    font-size: 1.1rem;
    color: #4a5568;
}

/* Insights Section */
.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.insight-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.insight-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: #2980b9;
}

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

/* Stats Section */
.stats-section {
    background-color: #2980b9;
    color: #ffffff;
}

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

.stat-item {
    flex: 1 1 calc(25% - 1.5rem);
    text-align: center;
}

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

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

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2980b9;
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.15);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #2980b9;
}

.service-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2980b9;
    margin-top: 1rem;
}

/* Benefits Section */
.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 1.5rem;
    background-color: #ffffff;
    border-left: 4px solid #2980b9;
}

.benefit-item h3 {
    color: #2980b9;
    margin-bottom: 0.8rem;
}

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

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

.testimonial {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.testimonial p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #2980b9;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

/* Destinations Section */
.destinations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.destination-card {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.destination-card h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #2980b9;
    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;
    padding: 0 1.5rem;
}

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

.faq-answer p {
    margin: 0;
    color: #4a5568;
}

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

.value-block {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-block h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2980b9 0%, #1a5b87 100%);
    color: #ffffff;
    text-align: center;
}

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

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

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

/* Services Detail Page */
.services-main {
    background-color: #f8f9fa;
}

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

.service-detail {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2980b9;
}

.price-period {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.service-description h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-description ul {
    list-style-type: none;
    padding: 0;
}

.service-description li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.service-description li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-note,
.service-best-for {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 0.95rem;
}

.featured-service {
    border: 3px solid #2980b9;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #2980b9;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

.benefit-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

/* Comparison Section */
.comparison-table {
    margin-top: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

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

.comparison-row > div {
    flex: 1;
    padding: 1.5rem;
}

.comparison-feature {
    font-weight: 600;
    background-color: #f8f9fa;
}

.comparison-us {
    background-color: #e8f5e9;
    color: #27ae60;
    font-weight: 500;
}

.comparison-diy {
    background-color: #fff3cd;
    color: #856404;
}

/* Guarantee Section */
.guarantee-section {
    background-color: #e8f5e9;
}

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

/* Contact Page */
.contact-layout {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-description {
    flex: 1;
}

.contact-method {
    margin-bottom: 2.5rem;
}

.contact-method h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

.contact-detail {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.5rem 0;
}

.contact-detail a {
    color: #2980b9;
}

.contact-note {
    font-size: 0.9rem;
    color: #5a6c7d;
    margin-top: 0.5rem;
}

.contact-checklist {
    list-style-type: none;
    padding: 0;
}

.contact-checklist li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.contact-checklist li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
}

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

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

.direction-method {
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.direction-method h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

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

.company-details p {
    margin-bottom: 0.8rem;
}

/* Team Section */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-member {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member h3 {
    color: #2980b9;
    margin-bottom: 0.5rem;
}

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

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2980b9;
}

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2980b9;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.timeline-content h3 {
    color: #2980b9;
    margin-bottom: 0.8rem;
}

/* Values Detailed */
.values-detailed {
    background-color: #f8f9fa;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 1rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.value-item h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

/* Recognition Section */
.recognition-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.recognition-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.recognition-quote {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
}

.recognition-item cite {
    font-style: normal;
    font-weight: 600;
    color: #2980b9;
}

/* Commitment Section */
.commitment-content {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-list {
    list-style-type: none;
    padding: 0;
}

.commitment-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Approach Section */
.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.approach-point {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.approach-point h3 {
    color: #2980b9;
    margin-bottom: 0.8rem;
}

/* Team Availability */
.team-availability {
    background-color: #f8f9fa;
}

.team-availability p {
    max-width: 900px;
    margin: 0 auto 1rem;
}

/* Milestones Section */
.milestones-section {
    background-color: #f8f9fa;
}

/* Story Section */
.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Mission Section */
.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-text p {
    font-size: 1.1rem;
    color: #4a5568;
}

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

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

.thankyou-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: #27ae60;
}

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

.thankyou-message {
    font-size: 1.2rem;
    color: #5a6c7d;
}

/* Next Steps Section */
.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.step-card .step-number {
    width: 50px;
    height: 50px;
    background-color: #2980b9;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

/* Meantime Section */
.meantime-section {
    background-color: #f8f9fa;
}

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

.suggestion-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.suggestion-card h3 {
    color: #2980b9;
    margin-bottom: 1rem;
}

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

.link-arrow:hover {
    color: #1a5b87;
}

/* Contact Reminder */
.contact-reminder {
    background-color: #f8f9fa;
}

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

/* Legal Pages */
.legal-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.legal-intro {
    font-size: 1.1rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 1rem auto;
}

.legal-date {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-top: 1rem;
}

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

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

.legal-section h2 {
    color: #2980b9;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.legal-section h3 {
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
}

.legal-section p {
    color: #4a5568;
    line-height: 1.8;
}

.legal-footer {
    background-color: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.cookie-settings-link {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

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

.footer-section {
    flex: 1 1 calc(33.333% - 2rem);
}

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

.footer-section p {
    color: #b0b9c2;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: #b0b9c2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #b0b9c2;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 8px 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;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

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

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

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

.modal-content h3 {
    color: #2980b9;
    margin-bottom: 1.5rem;
}

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

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

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

.cookie-option p {
    margin: 0.5rem 0 0 28px;
    font-size: 0.9rem;
    color: #5a6c7d;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

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

    .insight-card,
    .service-card,
    .benefit-card,
    .destination-card,
    .team-member,
    .value-item {
        flex: 1 1 100%;
    }

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

    .testimonial,
    .value-block,
    .recognition-item,
    .step-card,
    .suggestion-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-layout {
        flex-direction: column;
    }

    .footer-section {
        flex: 1 1 100%;
    }

    .timeline:before {
        left: 50px;
    }

    .timeline-year {
        width: 70px;
    }
}

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

    .hero-content h1 {
        font-size: 1.8rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .stat-item,
    .testimonial,
    .value-block,
    .recognition-item,
    .step-card,
    .suggestion-card {
        flex: 1 1 100%;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }

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

    .modal-buttons button {
        width: 100%;
    }

    .timeline:before {
        display: none;
    }

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

    .timeline-year {
        width: auto;
    }
}

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

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

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

    .service-detail {
        padding: 1.5rem;
    }

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