/* ==========================================
   RESET & 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;
    font-size: 16px;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

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

a:hover {
    color: #1a365d;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */

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

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 25px;
    height: 3px;
    background-color: #2c5282;
    transition: all 0.3s ease;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.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);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 999;
}

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

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

.nav-menu a {
    font-size: 1.1rem;
    color: #2d3748;
    display: block;
    padding: 0.5rem 0;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #2c5282;
    font-weight: 600;
}

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

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

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

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

/* ==========================================
   HERO SECTIONS
   ========================================== */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(to right, #4a90e2, #357abd);
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
}

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

.page-hero .lead {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

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

    .hero-lead {
        font-size: 1.3rem;
    }
}

/* ==========================================
   BUTTONS
   ========================================== */

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

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

.btn-primary:hover {
    background-color: #1a365d;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: #2c5282;
    border-color: #2c5282;
}

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

.btn-outline {
    background-color: transparent;
    border-color: #2c5282;
    color: #2c5282;
}

.btn-outline:hover {
    background-color: #2c5282;
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-text {
    background: none;
    border: none;
    color: #4a5568;
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: #2d3748;
}

/* ==========================================
   SECTIONS
   ========================================== */

section {
    padding: 3rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d3748;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

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

/* ==========================================
   INTRO SECTION
   ========================================== */

.intro-section {
    background-color: #f7fafc;
}

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

.intro-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.intro-visual svg {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .intro-grid {
        flex-direction: row;
        align-items: center;
    }

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

/* ==========================================
   VALUES SECTION
   ========================================== */

.values-section {
    background-color: #ffffff;
}

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

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
}

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

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.value-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

    .value-card {
        flex: 1;
        min-width: 280px;
    }
}

/* ==========================================
   SERVICES
   ========================================== */

.services-highlight {
    background-color: #f7fafc;
}

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

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

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

.service-item p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.link-arrow {
    color: #2c5282;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-arrow::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

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

    .service-item {
        flex: 1;
        min-width: 280px;
    }
}

/* ==========================================
   SERVICES LIST & CARDS
   ========================================== */

.services-list-section {
    background-color: #ffffff;
}

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

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: #4a5568;
}

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

.service-card {
    background-color: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #4a90e2;
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.15);
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5282;
    text-align: center;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: #f7fafc;
    border-radius: 6px;
}

.price-label {
    font-size: 0.875rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5282;
    margin: 0.25rem 0;
}

.price-unit {
    font-size: 0.9rem;
    color: #718096;
}

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

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

@media (min-width: 1024px) {
    .service-card {
        flex: 0 0 calc(33.333% - 1.333rem);
    }
}

/* ==========================================
   PROCESS SECTION
   ========================================== */

.process-section {
    background-color: #ffffff;
}

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

.step {
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2c5282;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c5282;
}

.step p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

/* ==========================================
   STATISTICS SECTION
   ========================================== */

.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

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

.stat-number {
    font-size: 3rem;
    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;
        justify-content: space-around;
    }

    .stat-item {
        flex: 1;
    }
}

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials-section {
    background-color: #f7fafc;
}

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

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

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: #4a5568;
    font-weight: 600;
}

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

    .testimonial {
        flex: 1;
    }
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.benefits-section {
    background-color: #ffffff;
}

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

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

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

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c5282;
}

.benefit-content p {
    color: #4a5568;
    line-height: 1.6;
}

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

.faq-section,
.faq-services,
.faq-contact {
    background-color: #f7fafc;
}

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

.faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

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

.faq-question[aria-expanded="true"] {
    background-color: #edf2f7;
}

.faq-icon {
    font-size: 1.5rem;
    color: #4a90e2;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

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

/* ==========================================
   TRUST & CTA SECTIONS
   ========================================== */

.trust-section {
    background-color: #ffffff;
}

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

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 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;
}

/* ==========================================
   STORY & PHILOSOPHY
   ========================================== */

.story-section,
.philosophy-section,
.approach-section {
    background-color: #ffffff;
}

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

.content-block h2 {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1rem;
}

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

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

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

.philosophy-item p {
    color: #4a5568;
    line-height: 1.7;
}

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

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

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

.approach-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* ==========================================
   TEAM SECTION
   ========================================== */

.team-section {
    background-color: #f7fafc;
}

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

.team-member {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.member-avatar svg {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

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

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

.team-member p {
    color: #4a5568;
    line-height: 1.6;
}

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

    .team-member {
        flex: 1;
    }
}

/* ==========================================
   TIMELINE
   ========================================== */

.milestones-section {
    background-color: #ffffff;
}

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

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

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

.timeline-content {
    flex: 1;
    padding-bottom: 2rem;
    border-left: 3px solid #e2e8f0;
    padding-left: 2rem;
}

.timeline-item:last-child .timeline-content {
    border-left-color: transparent;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.6;
}

/* ==========================================
   INDUSTRIES & MATERIALS
   ========================================== */

.industries-section,
.materials-section {
    background-color: #f7fafc;
}

.industries-grid,
.materials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-card,
.material-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.industry-card h3,
.material-card h3 {
    font-size: 1.2rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.industry-card p,
.material-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

    .industry-card,
    .material-card {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .industry-card,
    .material-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

/* ==========================================
   VALUES DETAIL
   ========================================== */

.values-detail {
    background-color: #f7fafc;
}

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

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

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

.value-block p {
    color: #4a5568;
    line-height: 1.7;
}

/* ==========================================
   BENEFITS OVERVIEW & COMPARISON
   ========================================== */

.benefits-overview {
    background-color: #f7fafc;
}

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

.comparison-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #4a90e2;
}

.comparison-item h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.comparison-item p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

/* ==========================================
   PROCESS DETAIL & FLOW
   ========================================== */

.process-detail {
    background-color: #ffffff;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.flow-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

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

.flow-step h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: #4a5568;
    line-height: 1.6;
}

/* ==========================================
   CONTACT SECTIONS
   ========================================== */

.contact-info-section {
    background-color: #ffffff;
}

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

.contact-main,
.contact-sidebar {
    flex: 1;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.info-block p {
    color: #4a5568;
    line-height: 1.7;
}

.info-note {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.info-card {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.info-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

    .contact-main {
        flex: 2;
    }

    .contact-sidebar {
        flex: 1;
    }
}

.visit-section {
    background-color: #f7fafc;
}

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

.visit-item {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.visit-item h3 {
    font-size: 1.2rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.visit-item p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

.directions-section {
    background-color: #ffffff;
}

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

.direction-method h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.direction-method p {
    color: #4a5568;
    line-height: 1.7;
}

.email-info-section {
    background-color: #f7fafc;
}

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

.email-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.email-list {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.email-list li {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.additional-info {
    background-color: #ffffff;
}

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

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

.info-item h3 {
    font-size: 1.2rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.info-item p {
    color: #4a5568;
    line-height: 1.6;
}

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

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

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

.map-description {
    text-align: center;
}

.map-description h2 {
    margin-bottom: 1rem;
}

.map-description p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.location-svg svg {
    max-width: 400px;
    margin: 0 auto;
}

/* ==========================================
   THANK YOU PAGE
   ========================================== */

.thankyou-section {
    padding: 4rem 0;
    text-align: center;
}

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

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

.thankyou-content h1 {
    font-size: 2.5rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.thankyou-content .lead {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.thankyou-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

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

.step-card .step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #4a5568;
    line-height: 1.6;
}

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

    .step-card {
        flex: 1;
    }
}

.thankyou-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

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

.helpful-links {
    background-color: #f7fafc;
}

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

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

.link-card h3 {
    font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.link-card p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

    .link-card {
        flex: 1;
    }
}

/* ==========================================
   LEGAL CONTENT
   ========================================== */

.legal-content {
    background-color: #ffffff;
}

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

.legal-text h2 {
    text-align: left;
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.legal-text h3 {
    text-align: left;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
    list-style-position: outside;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

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

.legal-text ol {
    list-style-type: decimal;
}

.legal-text li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

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

.legal-text a:hover {
    color: #1a365d;
}

.legal-notice {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
    margin-top: 2rem;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
}

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

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

.footer-col h3 {
    font-size: 1.5rem;
}

.footer-col h4 {
    font-size: 1.1rem;
}

.footer-col p {
    color: #cbd5e0;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 1.5rem;
    text-align: center;
}

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

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

    .footer-col {
        flex: 1;
    }
}

/* ==========================================
   COOKIE BANNER & MODAL
   ========================================== */

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

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

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    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-shrink: 0;
    }
}

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

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #718096;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #2d3748;
}

.modal h2 {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
}

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

.cookie-label {
    flex: 1;
}

.cookie-label strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #2d3748;
}

.cookie-label small {
    display: block;
    color: #718096;
    font-size: 0.875rem;
}

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

/* ==========================================
   UTILITY CLASSES
   ========================================== */

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================
   RESPONSIVE UTILITIES
   ========================================== */

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
}

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