/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

img, table, iframe, video, embed, object {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}

.mobile-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    left: 8px;
    top: 8px;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.top-nav {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #dc2626;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #dc2626;
}

/* Breadcrumbs */
.breadcrumb-nav {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.breadcrumbs {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    color: #666;
    font-size: 14px;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li + li:before {
    content: "/";
    margin: 0 6px;
    color: #bbb;
}

.breadcrumbs a {
    color: #555;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.key-facts {
    list-style: disc;
    margin: 24px 0 48px 20px;
    color: #222;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.key-facts li {
    margin: 8px 0;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #dc2626;
    border-color: #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 32px;
    text-align: center;
}

.section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 16px;
}

/* Page Header */
.page-header {
    background: #f9fafb;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px 32px;
    margin-top: 48px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
}

.feature-card h3 {
    color: #dc2626;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Steps List */
.steps-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.steps-list li {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    padding-left: 55px;
    transition: transform 0.2s ease;
}

.steps-list li:hover {
    transform: translateX(5px);
    border-color: #dc2626;
}

.steps-list li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 18px;
    top: 20px;
    background: #dc2626;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 13px;
}

.steps-list {
    counter-reset: step-counter;
}

/* Trust Section */
.trust {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    list-style: none;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px 20px;
    font-weight: 600;
    color: #374151;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #dc2626;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 8px;
}

.stat-item p {
    color: #6b7280;
    font-weight: 500;
}

/* Certifications */
.certifications-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    list-style: none;
    margin-top: 32px;
}

.certifications-list li {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    font-weight: 500;
    color: #374151;
}

/* Contact Info */
.contact-info {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    text-align: center;
}

.contact-info p {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 0;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.contact-info p:hover {
    transform: translateY(-2px);
    border-color: #dc2626;
}

.contact-info a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Rating Capsule */
.rating-capsule {
    font: 14px/1.3 system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
    background: #fff;
    border: 1px solid #e6e8ec;
    border-radius: 999px;
    padding: 12px 18px;
    margin: 64px auto 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.rating-capsule:hover {
    transform: translateY(-2px);
}

.rating-capsule .stars {
    color: #f7b500;
    letter-spacing: 1px;
    font-size: 16px;
}

.rating-capsule .value {
    font-weight: 700;
}

.rating-capsule .count {
    color: #555;
}

.rating-capsule .reviews-link {
    color: #666;
    font-size: 12px;
    text-decoration: underline;
    margin-left: 6px;
}

/* Rating Summary */
.rating-summary {
    margin-top: 32px;
    text-align: center;
}

.rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.rating-display .stars {
    color: #f7b500;
    font-size: 32px;
    letter-spacing: 2px;
}

.rating-display .value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
}

.rating-display .slash {
    font-size: 1.5rem;
    color: #6b7280;
}

.rating-text {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Reviews */
.review {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.reviewer-info h3 {
    color: #111827;
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.reviewer-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

.review-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-meta .rating {
    color: #f7b500;
    font-size: 18px;
    letter-spacing: 1px;
}

.review-meta time {
    color: #6b7280;
    font-size: 0.9rem;
}

.review-text {
    line-height: 1.7;
    color: #374151;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.review-source {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.review-source a {
    color: #dc2626;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-source a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    background: #f9fafb;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #f9fafb;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #f87171;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-priority {
        font-size: 1.1em;
        line-height: 1.4;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .key-facts {
        margin-left: 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .logo-strip {
        gap: 16px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .review-meta {
        text-align: left;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    
    .rating-display {
        flex-direction: column;
        gap: 8px;
    }
    
    .rating-display .stars {
        font-size: 24px;
    }
    
    .rating-display .value {
        font-size: 2rem;
    }
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    color: #dc2626;
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-align: left;
}

.contact-card p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-details p {
    margin-bottom: 12px;
    color: #374151;
}

.contact-details strong {
    color: #111827;
}

.contact-details a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.contact-details a:hover {
    text-decoration: underline;
}

.office-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.office-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
}

.office-card h3 {
    color: #111827;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.office-card address {
    color: #6b7280;
    font-style: normal;
    line-height: 1.6;
}

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.emergency-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 24px;
}

.emergency-card h3 {
    color: #dc2626;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.emergency-card p {
    color: #7f1d1d;
    margin-bottom: 12px;
    line-height: 1.6;
}

.emergency-card strong {
    color: #991b1b;
}

.emergency-card a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.emergency-card a:hover {
    text-decoration: underline;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.resource-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.resource-item h3 {
    color: #111827;
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.resource-item p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-list {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .office-locations {
        grid-template-columns: 1fr;
    }
    
    .emergency-info {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}
