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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    color: #1a5490;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0d3d6b;
}

ul {
    list-style: none;
}

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

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

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

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

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

.nav {
    display: flex;
    gap: 2rem;
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
}

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

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

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
        border-top: 1px solid #e0e0e0;
    }

    .nav.active {
        left: 0;
    }

    .nav a {
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a5490 0%, #0d3d6b 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.page-subtitle {
    font-size: 1.25rem;
    color: #666;
}

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

.btn-primary {
    background-color: #1a5490;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0d3d6b;
    color: #fff;
}

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

.btn-secondary:hover {
    background-color: #1a5490;
    color: #fff;
}

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

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

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

.section-intro {
    font-size: 1.125rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Company Intro */
.company-intro {
    background-color: #f9f9f9;
}

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

.intro-block {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.intro-block h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.75rem;
}

/* Philosophy */
.philosophy-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.philosophy-text {
    flex: 1;
    min-width: 300px;
}

.philosophy-text h2 {
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    margin-bottom: 1rem;
    color: #555;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
}

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

.service-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    color: #1a5490;
    margin-bottom: 0.75rem;
}

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

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

/* Stats */
.stats {
    background-color: #1a5490;
    color: #fff;
}

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

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

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

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

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

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5490;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.process-step h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.75rem;
}

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

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

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

.testimonial-author {
    font-weight: 600;
    color: #1a5490;
}

/* Benefits */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

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

.benefit-text h3 {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: #666;
}

/* Industries */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.industry-card h3 {
    font-size: 1.25rem;
    color: #1a5490;
    margin-bottom: 0.75rem;
}

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: #1a5490;
    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: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #666;
}

/* Trust Indicators */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.trust-item h3 {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: #666;
    font-size: 0.95rem;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #1a5490 0%, #0d3d6b 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;
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p {
    color: #aaa;
    font-size: 0.95rem;
}

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

.footer-column a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.9rem;
}

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

.story-content p {
    margin-bottom: 1.25rem;
    color: #555;
    font-size: 1.05rem;
}

/* Values */
.values {
    background-color: #f9f9f9;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

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

.value-card h3 {
    font-size: 1.25rem;
    color: #1a5490;
    margin-bottom: 0.75rem;
}

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

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

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: #e0e0e0;
}

.team-member h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.25rem;
}

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

.team-member p {
    color: #666;
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 2rem auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

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

.timeline-content h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
}

/* Expertise */
.expertise-content {
    margin-bottom: 2rem;
}

.expertise-content p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
}

.expertise-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-stat {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.expertise-stat h3 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.expertise-stat p {
    color: #666;
}

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

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

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

.commitment-content p {
    margin-bottom: 1.25rem;
    color: #555;
    font-size: 1.05rem;
}

/* Services Detail */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.service-detail {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

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

.service-detail-icon {
    width: 50px;
    height: 50px;
}

.service-detail-header h2 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

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

.service-description {
    color: #555;
    line-height: 1.8;
}

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

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

.benefit-column {
    flex: 1;
    min-width: 280px;
}

.benefit-column h3 {
    font-size: 1.25rem;
    color: #1a5490;
    margin-bottom: 0.75rem;
}

.benefit-column p {
    color: #666;
}

/* Process Flow */
.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.flow-step {
    flex: 1;
    min-width: 200px;
}

.flow-number {
    width: 50px;
    height: 50px;
    background-color: #1a5490;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.flow-step h3 {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.flow-step p {
    color: #666;
    font-size: 0.95rem;
}

/* Packages */
.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    position: relative;
}

.featured-package {
    border-color: #1a5490;
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #1a5490;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.package-card h3 {
    font-size: 1.5rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.package-card ul {
    margin-bottom: 1.5rem;
}

.package-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.package-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a5490;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

/* Contact */
.contact-intro {
    background-color: #f9f9f9;
}

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

.contact-intro-text h2 {
    margin-bottom: 1rem;
}

.contact-intro-text p {
    color: #555;
    font-size: 1.05rem;
}

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

.contact-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    color: #1a5490;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #555;
}

.contact-card a {
    color: #1a5490;
    font-weight: 600;
}

/* Location Info */
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.location-text {
    flex: 1;
    min-width: 300px;
}

.location-text h3 {
    font-size: 1.25rem;
    color: #1a5490;
    margin: 1.5rem 0 0.75rem;
}

.location-text p {
    color: #555;
    margin-bottom: 0.75rem;
}

.location-map {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
    border-radius: 8px;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.company-info-box {
    max-width: 700px;
    margin: 2rem auto 0;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.info-row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.info-label {
    font-weight: 600;
    color: #333;
    min-width: 150px;
}

.info-value {
    color: #666;
}

/* Expectations */
.expectations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.expectation-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.expectation-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.expectation-item h3 {
    font-size: 1.125rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.expectation-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Visit Us */
.visit-us {
    background-color: #f9f9f9;
}

.visit-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.visit-benefit {
    flex: 1;
    min-width: 280px;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.visit-benefit img {
    width: 25px;
    height: 25px;
}

.visit-benefit p {
    color: #555;
}

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

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

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

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.thank-you-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Next Steps */
.next-steps {
    background-color: #f9f9f9;
}

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

.step-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.25rem;
    color: #1a5490;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #666;
}

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

.suggestion-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

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

.suggestion-card h3 {
    font-size: 1.25rem;
    color: #1a5490;
    margin-bottom: 0.75rem;
}

.suggestion-card p {
    color: #666;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    color: #1a5490;
    margin: 2rem 0 1rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 1.5rem 0 0.75rem;
}

.legal-text p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-text ul {
    margin: 1rem 0 1rem 2rem;
    list-style: disc;
}

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

.legal-text a {
    color: #1a5490;
    text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

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

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

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

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

.modal-header h3 {
    margin: 0;
    color: #333;
}

.modal-close {
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 1.5rem;
}

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

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

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

.cookie-option p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    section h2 {
        font-size: 1.75rem;
    }

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

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

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

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

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons button {
        flex: 1;
    }
}