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

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

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

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

a {
    color: #307ac4;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #255d96;
}

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

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

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

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

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

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

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

    .nav-menu a {
        font-size: 1rem;
    }
}

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

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

.hero h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #34495e;
}

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

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

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

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

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

.page-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .page-hero {
        padding: 4rem 0;
    }

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

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

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

.btn-primary:hover {
    background-color: #34495e;
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

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

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

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

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.8;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 3rem;
    text-align: center;
}

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

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

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-icon {
    margin: 0 auto 1.5rem;
}

.philosophy-icon svg {
    margin: 0 auto;
}

.philosophy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-item p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .philosophy-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Featured Services */
.services-highlight {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card-large {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-card-large h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-card-large p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #34495e;
}

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

.feature-list li {
    padding: 0.7rem 0 0.7rem 2rem;
    position: relative;
    line-height: 1.6;
    color: #34495e;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

@media (min-width: 968px) {
    .services-highlight {
        flex-direction: row;
    }

    .service-card-large {
        flex: 1;
    }
}

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

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

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

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

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

@media (min-width: 768px) {
    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .stat-item {
        flex: 1;
        min-width: calc(25% - 1.5rem);
    }
}

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

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

.testimonial-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #34495e;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

@media (min-width: 768px) {
    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

.process-step {
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.process-step p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 968px) {
    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Company Values */
.company-values {
    background-color: #f8f9fa;
}

.values-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    text-align: center;
}

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

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .values-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Expertise Section */
.expertise-content p {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
}

.expertise-areas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.expertise-card p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .expertise-areas {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    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;
}

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

.faq-answer p {
    padding: 1.5rem;
    line-height: 1.8;
    color: #7f8c8d;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    text-align: center;
}

.cta h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

/* Story Section */
.story {
    background-color: #f8f9fa;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    position: relative;
    padding-left: 8rem;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    width: 6rem;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.timeline-content p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (max-width: 767px) {
    .timeline-item {
        padding-left: 0;
        padding-top: 3rem;
    }

    .timeline-year {
        position: static;
        margin-bottom: 1rem;
    }
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.team-member {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.member-role {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Approach Section */
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.approach-principles h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.principles-list li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
    line-height: 1.6;
    color: #34495e;
}

.principles-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

@media (min-width: 968px) {
    .approach-content {
        flex-direction: row;
    }

    .approach-text,
    .approach-principles {
        flex: 1;
    }
}

/* Industries/Client Types */
.client-types {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.client-type {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.client-type h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.client-type p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .client-types {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

.achievement-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.achievement-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.achievement-item p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .achievements-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Commitment Section */
.commitment {
    background-color: #f8f9fa;
}

.commitment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    text-align: center;
}

.commitment-areas {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-area h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.commitment-area p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .commitment-areas {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Services Page Styles */
.services-intro {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

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

.service-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-header h2 {
    margin-bottom: 0;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 2rem;
}

.service-details h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-details li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    line-height: 1.6;
    color: #34495e;
}

.service-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

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

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

.benefit-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-card p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Comparison Table */
.comparison-table {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.comparison-header {
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 700;
}

.comparison-cell {
    padding: 1.2rem;
    flex: 1;
}

.comparison-cell:first-child {
    font-weight: 600;
    background-color: #f8f9fa;
}

@media (min-width: 768px) {
    .comparison-row {
        flex-direction: row;
    }

    .comparison-header .comparison-cell:first-child {
        background-color: transparent;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-block {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-item p {
    line-height: 1.8;
    color: #34495e;
}

.contact-item a {
    color: #2c3e50;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-description h2,
.contact-description h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-description h2:first-child {
    margin-top: 0;
}

.contact-description p {
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

@media (min-width: 968px) {
    .contact-grid {
        flex-direction: row;
    }

    .contact-info {
        flex: 0 0 400px;
    }

    .contact-description {
        flex: 1;
    }
}

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

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

.direction-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.direction-item p {
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.direction-item ul {
    list-style: none;
    padding-left: 0;
}

.direction-item li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #34495e;
}

.direction-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c3e50;
}

@media (min-width: 768px) {
    .directions-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Company Details */
.details-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.detail-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #7f8c8d;
    font-weight: 600;
}

.detail-item p {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 600;
}

@media (min-width: 768px) {
    .details-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

/* Visit Info */
.visit-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 2.5rem;
    text-align: center;
}

.visit-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-feature {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.visit-feature h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.visit-feature p {
    line-height: 1.8;
    color: #7f8c8d;
}

@media (min-width: 768px) {
    .visit-features {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon svg {
    margin: 0 auto;
}

.thank-you-section h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thank-you-message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps p {
    margin-bottom: 2rem;
    color: #7f8c8d;
}

.next-steps-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.additional-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-info p {
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .next-steps-links {
        flex-direction: row;
        justify-content: center;
    }
}

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

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.legal-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e0e0e0;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
    color: #2c3e50;
}

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

.legal-section p {
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 1.2rem;
}

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

.legal-section li {
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 0.8rem;
}

.legal-section a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-update {
    font-style: italic;
    color: #7f8c8d;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.rights-note {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin-top: 1.5rem;
    font-size: 1.05rem;
}

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

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

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

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
    .footer-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
        min-width: calc(25% - 1.5rem);
    }
}

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

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

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

.cookie-content p {
    margin: 0;
    text-align: center;
}

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

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
        flex: 1;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}

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

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

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

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 600;
    color: #2c3e50;
}

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

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.8rem;
    font-size: 0.95rem;
    color: #7f8c8d;
    line-height: 1.6;
}

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

/* Responsive Typography */
@media (min-width: 768px) {
    body {
        font-size: 1.05rem;
    }

    section h2 {
        font-size: 2.3rem;
    }
}

/* Accessibility */
:focus {
    outline: 2px solid #2c3e50;
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 2px solid #2c3e50;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .cta {
        display: none;
    }

    body {
        color: #000;
    }

    a {
        text-decoration: underline;
    }
}
