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

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

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

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

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

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

ul {
    list-style: none;
}

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

/* ===================================
   Container and Layout
   =================================== */

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

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

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

.navbar {
    padding: 16px 0;
}

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

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

.logo:hover {
    color: #2563eb;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

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

.nav-menu li {
    margin: 8px 0;
}

.nav-menu a {
    display: block;
    padding: 12px 16px;
    color: #333;
    font-weight: 500;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: #eff6ff;
    color: #2563eb;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        margin: 0 4px;
    }
}

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

.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

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

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

    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

/* ===================================
   Page Hero
   =================================== */

.page-hero {
    background-color: #f3f4f6;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 16px;
}

.page-hero-text {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #2563eb;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

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

.btn-secondary:hover {
    background-color: #2563eb;
    color: #fff;
}

.btn-text {
    background-color: transparent;
    color: #6b7280;
    padding: 14px 20px;
}

.btn-text:hover {
    color: #333;
}

/* ===================================
   Sections
   =================================== */

section {
    padding: 80px 0;
}

section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    text-align: center;
}

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

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

.company-values {
    background-color: #f9fafb;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.value-card p {
    color: #6b7280;
}

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

    .value-card {
        flex: 1 1 calc(50% - 16px);
        min-width: calc(50% - 16px);
    }
}

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

.philosophy-section {
    background-color: #fff;
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.philosophy-text {
    max-width: 600px;
}

.philosophy-text h2 {
    text-align: left;
    margin-bottom: 24px;
}

.philosophy-text p {
    margin-bottom: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.philosophy-visual img {
    max-width: 400px;
}

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

/* ===================================
   Services Highlight
   =================================== */

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

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.service-feature {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: #dbeafe;
    color: #2563eb;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.service-feature h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.service-feature p {
    color: #6b7280;
    line-height: 1.7;
}

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

    .service-feature {
        flex: 1 1 calc(50% - 16px);
    }
}

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

.statistics-section {
    background-color: #1e40af;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

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

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

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

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

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 4px;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.benefit-content p {
    color: #6b7280;
    line-height: 1.7;
}

/* ===================================
   Process Section
   =================================== */

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    gap: 24px;
}

.step-marker {
    flex-shrink: 0;
}

.step-marker span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #2563eb;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.step-content p {
    color: #6b7280;
    line-height: 1.7;
}

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

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

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.8;
    font-style: italic;
}

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

.testimonial-author span {
    display: block;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 4px;
}

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

    .testimonial-card {
        flex: 1 1 calc(33.333% - 21px);
    }
}

/* ===================================
   Industries Section
   =================================== */

.industries-section {
    background-color: #f3f4f6;
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.industry-item {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
}

.industry-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.industry-item p {
    color: #6b7280;
}

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

    .industry-item {
        flex: 1 1 calc(33.333% - 16px);
    }
}

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

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

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

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

.faq-answer p {
    padding: 0 0 20px 0;
    color: #6b7280;
    line-height: 1.7;
}

/* ===================================
   Knowledge Section
   =================================== */

.knowledge-section {
    background-color: #f9fafb;
}

.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.knowledge-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.knowledge-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.knowledge-card p {
    color: #6b7280;
    line-height: 1.7;
}

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

    .knowledge-card {
        flex: 1 1 calc(50% - 16px);
    }
}

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

.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #2563eb;
}

.cta-section .btn-primary:hover {
    background-color: #f3f4f6;
}

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

footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-section p {
    line-height: 1.7;
}

.footer-links li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

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

    .footer-section {
        flex: 1;
    }
}

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.938rem;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-actions .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

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

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

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

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

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

.cookie-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
}

.modal-close {
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #1f2937;
}

.cookie-modal-body {
    padding: 24px;
}

.cookie-category {
    margin-bottom: 24px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.cookie-category p {
    color: #6b7280;
    font-size: 0.938rem;
    line-height: 1.6;
}

.cookie-modal-footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
}

/* ===================================
   About Page Styles
   =================================== */

.story-section {
    background-color: #fff;
}

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

.story-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.story-content p {
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.8;
}

.mission-vision {
    background-color: #f3f4f6;
}

.mission-vision-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.mission-card,
.vision-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mission-card h2,
.vision-card h2 {
    text-align: left;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

    .mission-card,
    .vision-card {
        flex: 1;
    }
}

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

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.team-member-visual {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.team-role {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 16px;
}

.team-member p {
    color: #6b7280;
    line-height: 1.7;
}

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

    .team-member {
        flex: 1 1 calc(50% - 16px);
    }
}

.values-detailed {
    background-color: #f9fafb;
}

.values-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.value-detailed {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
}

.value-detailed-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
}

.value-detailed h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.value-detailed p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

    .value-detailed {
        flex: 1 1 calc(50% - 16px);
    }
}

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

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

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 52px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background-color: #e5e7eb;
}

.timeline-year {
    flex-shrink: 0;
    width: 100px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.7;
}

.approach-section {
    background-color: #f3f4f6;
}

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

.approach-content > p {
    text-align: center;
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 48px;
}

.approach-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-point {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
}

.approach-point h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.approach-point p {
    color: #6b7280;
    line-height: 1.7;
}

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

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.trust-item {
    text-align: center;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.trust-item p {
    color: #6b7280;
}

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

    .trust-item {
        flex: 1;
    }
}

/* ===================================
   Services Page Styles
   =================================== */

.services-overview {
    background-color: #fff;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.service-card {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.service-card.featured-service {
    border-color: #2563eb;
    background-color: #eff6ff;
    position: relative;
}

.service-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background-color: #2563eb;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.service-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    margin: 0;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
}

.service-description {
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: disc;
    margin-left: 20px;
}

.service-features li {
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.6;
}

.service-benefits {
    background-color: #f3f4f6;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.benefit-box {
    text-align: center;
    padding: 32px;
    background-color: #fff;
    border-radius: 12px;
}

.benefit-box img {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
}

.benefit-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.benefit-box p {
    color: #6b7280;
}

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

    .benefit-box {
        flex: 1 1 calc(50% - 16px);
    }
}

.process-comparison {
    background-color: #fff;
}

.process-detailed {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.process-phase {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.phase-number {
    display: inline-block;
    background-color: #dbeafe;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 12px;
}

.process-phase h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.process-phase p {
    color: #6b7280;
    margin-bottom: 12px;
}

.process-phase ul {
    list-style: disc;
    margin-left: 20px;
}

.process-phase li {
    color: #6b7280;
    margin-bottom: 6px;
}

.comparison-section {
    background-color: #f9fafb;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
    margin-bottom: 32px;
}

.comparison-column {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
}

.comparison-column h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    line-height: 1.6;
}

.comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.comparison-list.negative li {
    color: #dc2626;
}

.comparison-list.negative li::before {
    background-color: #fee2e2;
    border: 2px solid #dc2626;
}

.comparison-list.positive li {
    color: #059669;
}

.comparison-list.positive li::before {
    background-color: #d1fae5;
    border: 2px solid #059669;
}

.comparison-note {
    text-align: center;
    font-size: 1.125rem;
    color: #2563eb;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
}

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

    .comparison-column {
        flex: 1;
    }
}

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

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

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.contact-card {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
}

.contact-card h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.7;
}

.contact-item a {
    color: #2563eb;
}

.directions h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.directions p {
    color: #6b7280;
    line-height: 1.7;
}

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

    .contact-card {
        flex: 1;
    }
}

.general-contact {
    background-color: #f3f4f6;
    text-align: center;
}

.general-email {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.general-email img {
    width: 64px;
    height: 64px;
}

.email-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
}

.response-time {
    margin-top: 16px;
    color: #6b7280;
    font-size: 0.938rem;
}

.about-company {
    background-color: #fff;
}

.company-description {
    max-width: 900px;
    margin: 0 auto;
}

.company-description p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.company-info-box {
    background-color: #f9fafb;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.info-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.info-item strong {
    display: block;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-item p {
    color: #6b7280;
    line-height: 1.6;
}

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

    .info-item {
        flex: 1 1 calc(50% - 12px);
    }
}

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

.thank-you-section {
    background-color: #fff;
    text-align: center;
    padding: 100px 0;
}

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

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
}

.thank-you-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 48px;
}

.next-steps {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
}

.step-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-box p {
    color: #4b5563;
    line-height: 1.7;
    margin-top: 6px;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

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

.helpful-resources {
    background-color: #f3f4f6;
}

.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 48px;
}

.resource-card {
    background-color: #fff;
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.resource-card p {
    color: #6b7280;
}

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

    .resource-card {
        flex: 1;
    }
}

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

.legal-page {
    background-color: #fff;
    padding: 60px 0 80px;
}

.legal-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.legal-intro {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-date {
    color: #9ca3af;
    font-size: 0.938rem;
    margin-bottom: 48px;
}

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

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 48px;
    margin-bottom: 16px;
    text-align: left;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e40af;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-table th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #1f2937;
}

.cookie-table td {
    color: #6b7280;
}

#open-cookie-settings {
    margin-top: 32px;
}

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

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .hero-content h1,
    .page-hero h1,
    .thank-you-content h1 {
        font-size: 2rem;
    }

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

@media (min-width: 1200px) {
    html {
        font-size: 17px;
    }
}