    :root {
        --primary-color: #e74c3c;
        --primary-dark: #c0392b;
        --secondary-color: #3498db;
        --accent-color: #f39c12;
        --dark-color: #2c3e50;
        --darker-color: #1a252f;
        --light-gray: #f8f9fa;
        --medium-gray: #6c757d;
        --border-color: #dee2e6;
        --white: #ffffff;
        --success-color: #27ae60;
        --info-color: #17a2b8;
        --warning-color: #f39c12;
        --danger-color: #e74c3c;
        --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.7;
        color: var(--dark-color);
        overflow-x: hidden;
        font-size: 16px;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Header & Navigation */
    .header {
        background: var(--white);
        box-shadow: var(--shadow-md);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .logo {
        display: flex;
        align-items: center;
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .logo i {
        margin-right: 0.5rem;
        font-size: 2rem;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    /* Burger Menu */
    .burger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.5rem;
        z-index: 1001;
    }
    
    .burger span {
        width: 28px;
        height: 3px;
        background: var(--dark-color);
        margin: 4px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .burger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
        background: var(--white);
    }
    
    .burger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
        background: var(--white);
    }

    /* Navigation Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        overflow-y: auto;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-content {
        text-align: center;
        padding: 6rem 2rem 4rem;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav-links {
        list-style: none;
        padding: 0;
    }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 600;
        display: block;
        padding: 0.75rem;
        margin: 0.5rem 0;
        transition: all 0.3s ease;
        border-radius: 10px;
    }

    .nav-links a:hover {
        color: var(--accent-color);
        background: rgba(255, 255, 255, 0.1);
    }

    /* Breadcrumb */
    .breadcrumb {
        background: var(--light-gray);
        padding: 1rem 0;
        margin-top: 80px;
    }

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--medium-gray);
        flex-wrap: wrap;
    }

    .breadcrumb-nav a {
        color: var(--primary-color);
        text-decoration: none;
    }

    .breadcrumb-nav a:hover {
        text-decoration: underline;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.9), rgba(52, 152, 219, 0.9)),
                    url('../../assets/roofing-hero.webp');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 8rem 0 6rem;
        color: var(--white);
        text-align: center;
        position: relative;
    }

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .cta-button {
        display: inline-block;
        background: var(--white);
        color: var(--primary-color);
        padding: 1.25rem 2.5rem;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .cta-button:hover {
        background: var(--accent-color);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    }

    .emergency-banner {
        background: var(--danger-color);
        color: var(--white);
        padding: 1rem 0;
        text-align: center;
        font-weight: 600;
        position: sticky;
        top: 80px;
        z-index: 900;
    }

    .emergency-banner i {
        margin-right: 0.5rem;
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }

    /* Content Sections */
    .content-section {
        padding: 5rem 0;
    }

    .content-section:nth-child(even) {
        background: var(--light-gray);
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 2rem;
        color: var(--dark-color);
        text-align: center;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--medium-gray);
        text-align: center;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Service Cards */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .service-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

    .service-header {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: var(--white);
        padding: 2rem;
        text-align: center;
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .service-header h3 {
        font-size: 1.5rem;
        margin: 0;
    }

    .service-body {
        padding: 2rem;
    }

    .service-body p {
        color: var(--medium-gray);
        margin-bottom: 1.5rem;
    }

    .service-features {
        list-style: none;
        padding: 0;
    }

    .service-features li {
        padding: 0.5rem 0;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .service-features i {
        color: var(--success-color);
        width: 20px;
    }

    /* Trust Indicators */
    .trust-indicators {
        background: var(--primary-color);
        color: var(--white);
        padding: 3rem 0;
        margin: 3rem 0;
        border-radius: 15px;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        text-align: center;
    }

    .trust-item {
        padding: 1rem;
    }

    .trust-item i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        opacity: 0.9;
    }

    .trust-item h4 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .trust-item p {
        opacity: 0.9;
        font-size: 1rem;
    }

    /* Pricing Table */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
    }

    .pricing-card {
        background: var(--white);
        border-radius: 15px;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
    }

    .pricing-card.featured {
        transform: scale(1.05);
        border: 3px solid var(--primary-color);
    }

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }

    .pricing-badge {
        position: absolute;
        top: -15px;
        right: 20px;
        background: var(--accent-color);
        color: var(--white);
        padding: 0.25rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .pricing-header h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--dark-color);
    }

    .pricing-price {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .pricing-price span {
        font-size: 1rem;
        color: var(--medium-gray);
    }

    .pricing-features {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
    }

    .pricing-features li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

/* Reviews Section — horizontal scroll-snap carousel */
.reviews-scroller-wrap {
    position: relative;
    margin: 3rem 0;
}

.reviews-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0.25rem 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-gray);
}

.reviews-grid::-webkit-scrollbar {
    height: 6px;
}

.reviews-grid::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 3px;
}

.reviews-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.reviews-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: relative;
    flex: 0 0 360px;
    scroll-snap-align: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
    .review-card {
        flex: 0 0 280px;
        padding: 1.5rem;
    }
}

    .review-stars {
        color: var(--accent-color);
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .review-text {
        font-style: italic;
        color: var(--medium-gray);
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }

    .review-author {
        font-weight: 600;
        color: var(--dark-color);
    }

    .review-location {
        color: var(--medium-gray);
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
        color: var(--white);
        padding: 5rem 0;
        text-align: center;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .cta-section p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    /* Footer */
    .footer {
        background: var(--darker-color);
        color: var(--white);
        padding: 4rem 0 2rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
        font-weight: 700;
    }

    .footer-section p,
    .footer-section a {
        color: #bdc3c7;
        text-decoration: none;
        line-height: 1.8;
        margin-bottom: 0.5rem;
        display: block;
        transition: all 0.3s ease;
    }

    .footer-section a:hover {
        color: var(--primary-color);
    }

    .footer-bottom {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #34495e;
        color: #7f8c8d;
    }
    .logo {
        display: flex;
        align-items: center;
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    .logo img {
        height: 36px;
        width: auto;
        display: block;
    }

    .logo-text {
        line-height: 1;
    }

    .logo i {
        margin-right: 0.5rem;
        font-size: 2rem;
    }
    
    .logo:hover {
        transform: scale(1.05);
    }
    
    /* Sub-menus for services and locations */
.nav-submenu {
margin-top: 0.5rem;
opacity: 0;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
background: rgba(255, 255, 255, 0.1);
border-radius: 10px;
margin-left: 1rem;
margin-right: 1rem;
}

.nav-submenu.active {
opacity: 1;
max-height: 800px;
padding: 1rem 0;
}

.nav-submenu a {
font-size: 1rem;
font-weight: 500;
padding: 0.5rem 1rem;
color: rgba(255, 255, 255, 0.9);
text-transform: none;
letter-spacing: 0;
}

.nav-submenu a:hover {
color: var(--accent-color);
background: rgba(255, 255, 255, 0.1);
transform: scale(1.02);
}

/* Contact Info in Menu */
.nav-contact {
margin-top: 2rem;
opacity: 0;
transform: translateY(30px);
transition: all 0.4s ease 1.2s;
}

.nav-overlay.active .nav-contact {
opacity: 1;
transform: translateY(0);
}

.nav-contact-item {
color: var(--white);
margin: 1rem 0;
font-size: 1rem;
display: flex;
align-items: center;
justify-content: center;
gap: 0.75rem;
}

.nav-contact-item i {
color: var(--accent-color);
width: 25px;
}

.nav-social {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-top: 1.5rem;
}

.nav-social a {
color: var(--white);
font-size: 1.5rem;
transition: all 0.3s ease;
padding: 0.75rem;
}

.nav-social a:hover {
color: var(--accent-color);
transform: scale(1.2);
}
    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-content h1 {
            font-size: 2rem;
        }

        .hero-content p {
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .trust-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .reviews-grid {
            grid-template-columns: 1fr;
        }

        .nav-container {
            padding: 1rem;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 1.75rem;
        }

        .services-grid,
        .pricing-grid {
            grid-template-columns: 1fr;
        }

        .emergency-banner {
            font-size: 0.9rem;
        }
    }
.accreditations-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.accreditation-badge {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.25s ease;
}

.accreditation-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.accreditation-badge i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.accreditation-badge h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.4rem;
}

.accreditation-badge p {
    font-size: 0.78rem;
    color: var(--medium-gray);
    line-height: 1.4;
    margin: 0;
}

.accreditations-footnote {
    text-align: center;
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
    margin-top: 1.5rem;
}

/* ---------- Bolt-On B: Materials Comparison Table ---------- */
.materials-table-wrap {
    margin: 3rem 0 1.5rem;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.materials-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 720px;
}

.materials-table thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.materials-table th {
    padding: 1.1rem 1rem;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

.materials-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--dark-color);
}

.materials-table tbody tr:last-child td {
    border-bottom: none;
}

.materials-table tbody tr:hover {
    background: var(--light-gray);
}

.materials-table td:first-child {
    font-weight: 600;
}

.materials-table-note {
    font-size: 0.88rem;
    color: var(--medium-gray);
    text-align: center;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ---------- Bolt-On C: Warning Signs Grid ---------- */
.warning-signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.warning-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-color);
    transition: all 0.25s ease;
    position: relative;
}

.warning-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.warning-num {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.4;
    line-height: 1;
    font-feature-settings: "tnum" 1;
}

.warning-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
    padding-right: 3rem;
}

.warning-card p {
    font-size: 0.92rem;
    color: var(--medium-gray);
    line-height: 1.65;
    margin: 0;
}

.warning-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.warning-cta p {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

/* ---------- Bolt-On D: Process Timeline ---------- */
.process-timeline {
    position: relative;
    margin: 3rem 0 0;
    padding: 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.process-step {
    position: relative;
    padding: 0 0 2.25rem 4.5rem;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step-marker {
    position: absolute;
    left: 14px;
    top: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 0 0 5px var(--white), 0 4px 12px rgba(231, 76, 60, 0.4);
    z-index: 1;
    font-feature-settings: "tnum" 1;
}

.process-step-body h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.process-step-body p {
    font-size: 0.97rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.7;
}

/* ---------- Bolt-On E: Questions to Ask Grid ---------- */
.questions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.question-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
    transition: all 0.25s ease;
    position: relative;
}

.question-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.question-num {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-feature-settings: "tnum" 1;
}

.question-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    line-height: 1.35;
}

.question-card p {
    font-size: 0.92rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

/* ---------- Bolt-On F: Insurance Panel ---------- */
.insurance-panel-section {
    background: linear-gradient(135deg, var(--light-gray), #ffffff);
}

.insurance-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0 2rem;
}

.insurance-feature {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.25s ease;
}

.insurance-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.insurance-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.insurance-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.6rem;
}

.insurance-feature p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    line-height: 1.65;
    margin: 0;
}

.insurance-panel-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.insurance-panel-cta p {
    font-size: 1.05rem;
    color: var(--dark-color);
    margin-bottom: 1.25rem;
}

/* ---------- Bolt-On G: FAQ Accordion ---------- */
.faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.faq-item summary {
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    position: relative;
    list-style: none;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--primary-color);
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.25s ease;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '\2212';
    transform: translateY(-50%) rotate(0deg);
}

.faq-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 0.97rem;
}

.faq-body p {
    margin: 0;
}

/* ---------- Mobile responsive ---------- */
@media (max-width: 768px) {
    .accreditations-strip { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .accreditation-badge { padding: 1.25rem 0.75rem; }
    .accreditation-badge i { font-size: 1.6rem; }
    .accreditation-badge h4 { font-size: 0.85rem; }

    .materials-table { font-size: 0.85rem; }
    .materials-table th, .materials-table td { padding: 0.75rem 0.6rem; }

    .warning-card { padding: 1.5rem 1.25rem; }
    .warning-num { font-size: 1.5rem; }

    .process-timeline::before { left: 20px; }
    .process-step { padding-left: 3.5rem; }
    .process-step-marker { left: 4px; width: 32px; height: 32px; font-size: 0.78rem; }

    .question-card { padding: 1.5rem 1.25rem; }

    .insurance-feature { padding: 1.75rem 1.25rem; }
    .insurance-feature-icon { width: 56px; height: 56px; font-size: 1.4rem; }

    .faq-item summary { padding: 1rem 2.5rem 1rem 1.25rem; font-size: 1rem; }
    .faq-item summary::after { right: 1.25rem; }
    .faq-body { padding: 0 1.25rem 1.25rem; }
}
