/* =========================================
   UNIFIED HVAC WEBSITE STYLES
   ========================================= */

/* =========================================
   1. RESET & VARIABLES
   ========================================= */
:root {
    --primary-blue: #0056b3;
    --primary-dark: #003d82;
    --dark-blue: #0a2540;
    --accent-red: #d32f2f;
    --accent-red-hover: #b71c1c;
    --text-main: #333333;
    --text-dark: #333333;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ff9800;
    --border-color: #e5e5e5;
    --container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: #fff;
}

/* Padding for mobile sticky button only on mobile */
@media(max-width: 768px) {
    body { padding-bottom: 70px; }
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* =========================================
   2. UTILITY CLASSES
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-center { text-align: center; }
.section-spacer { padding: 60px 0; }
.section-padding { padding: 60px 0; }
.bg-light { background-color: var(--bg-light); }

/* =========================================
   3. BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 10px;
    border: none;
}

.btn-red {
    background: linear-gradient(180deg, #e53935 0%, #c62828 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(211, 47, 47, 0.3);
}

.btn-red:hover {
    background: linear-gradient(180deg, #d32f2f 0%, #b71c1c 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(211, 47, 47, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

/* SVG Icon styling */
.btn-icon {
    width: 20px;
    height: 20px;
    fill: white;
}

/* =========================================
   4. HEADER (Sticky & Subtle)
   ========================================= */
header {
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 70px;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 18px;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-badge {
    background: var(--primary-blue);
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.logo-icon {
    background: var(--primary-blue);
    color: white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 14px;
}

/* Desktop Nav */
.nav-menu, .nav-links {
    display: none;
}

/* Hamburger */
.mobile-toggle, .mobile-menu-btn {
    display: block;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* Mobile Menu Content */
.mobile-nav-content {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    flex-direction: column;
    border-top: 1px solid #eee;
}

.mobile-nav-content.active {
    display: flex;
}

.mobile-nav-link {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    color: #333;
}

@media(min-width: 992px) {
    .mobile-toggle, .mobile-menu-btn { display: none; }
    .mobile-nav-content { display: none !important; }
    
    .nav-menu, .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
    }
    
    .nav-link {
        font-weight: 500;
        color: #555;
        font-size: 15px;
        position: relative;
        padding: 10px 0;
    }
    
    .nav-link:hover { color: var(--primary-blue); }

    /* Dropdown */
    .dropdown { position: relative; }
    
    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: -15px;
        background-color: white;
        min-width: 180px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        border-radius: 4px;
        z-index: 1001;
        padding: 10px 0;
        border-top: 3px solid var(--primary-blue);
    }
    
    .dropdown:hover .dropdown-content { display: block; }
    
    .dropdown-content a {
        color: #333;
        padding: 10px 20px;
        text-decoration: none;
        display: block;
        font-size: 14px;
    }
    
    .dropdown-content a:hover { 
        background-color: #f1f1f1; 
        color: var(--primary-blue); 
    }
}

/* Header Call Button (Desktop) */
.header-cta {
    display: none;
}

@media(min-width: 768px) {
    .header-cta { display: block; }
}

/* =========================================
   5. HERO SECTION (Main Pages)
   ========================================= */
.hero {
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hvac_header_1.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--text-main);
}

.hero h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-weight: 800;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-action-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.green-status-text {
    color: var(--success);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    background: #e8f5e9;
    padding: 5px 12px;
    border-radius: 4px;
}

@media(min-width: 600px) {
    .hero-action-area {
        flex-direction: row;
        align-items: center;
    }
}

@media(max-width: 768px) {
    .hero { padding: 40px 0; }
    .hero-content { padding: 25px; }
    .hero h1 { font-size: 28px; }
    .btn { width: 100%; }
}

/* =========================================
   6. PAGE HEADER (Secondary Pages)
   ========================================= */
.page-header {
    background-color: var(--light-bg);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 42px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
}

@media(max-width: 768px) {
    .page-header { padding: 50px 0; }
    .page-header h1 { font-size: 32px; }
}

/* =========================================
   7. TRUST STRIP
   ========================================= */
.trust-strip {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.trust-icon { color: var(--primary-blue); font-weight: bold; }

/* =========================================
   8. SERVICES GRID
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-img { height: 200px; background: #eee; }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 25px; }
.service-body h3 { color: var(--primary-dark); margin-bottom: 10px; font-size: 20px; }
.service-body p { color: #666; font-size: 15px; }

/* =========================================
   9. HOW IT WORKS
   ========================================= */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.step-item { padding: 20px; }

.step-icon {
    width: 60px; height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    position: relative;
}

.step-num {
    position: absolute; top: -5px; right: -5px;
    background: var(--accent-red);
    width: 24px; height: 24px;
    border-radius: 50%;
    font-size: 12px; line-height: 24px;
    color: white; font-weight: bold;
}

.step-item h3 { margin-bottom: 10px; color: var(--primary-dark); }
.step-item p { font-size: 14px; color: #666; }

/* =========================================
   10. COMMON PROBLEMS
   ========================================= */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

@media(max-width: 992px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 600px) { .problems-grid { grid-template-columns: 1fr; } }

.problem-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    display: flex; gap: 15px; align-items: flex-start;
}

.prob-icon { font-size: 28px; color: var(--accent-red); min-width: 30px; }
.prob-info h4 { font-size: 17px; margin-bottom: 6px; color: #222; }
.prob-info p { font-size: 13px; color: #666; }

/* =========================================
   11. DID YOU KNOW
   ========================================= */
.did-you-know {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    display: flex; gap: 20px; align-items: flex-start;
}

.info-icon { font-size: 30px; color: #f57c00; }

/* =========================================
   12. CONNECTION / ABOUT SECTION
   ========================================= */
.connection-wrapper {
    display: flex; gap: 50px; align-items: center; flex-wrap: wrap;
}

.conn-text { flex: 1; min-width: 300px; }
.conn-img { flex: 1; min-width: 300px; }

.features-row {
    display: flex; gap: 20px; margin-top: 25px;
}

.feature-box {
    background: white; padding: 15px; border-radius: 6px;
    text-align: center; flex: 1; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* =========================================
   13. SAFETY TIPS
   ========================================= */
.tips-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}

@media(max-width: 768px) { .tips-grid { grid-template-columns: 1fr; } }

.check-list li {
    margin-bottom: 15px; display: flex; gap: 10px; align-items: center; font-size: 15px;
}

.check-icon { color: var(--success); font-weight: bold; }

/* =========================================
   14. FAQ (Always Open)
   ========================================= */
.faq-grid { max-width: 900px; margin: 40px auto 0; }

.faq-item {
    background: white; border: 1px solid #e0e0e0; border-radius: 8px;
    padding: 25px; margin-bottom: 15px;
}

.faq-q { font-size: 18px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px; }
.faq-a { font-size: 15px; color: #555; padding-left: 15px; border-left: 3px solid #eee; }

/* =========================================
   15. FOOTER CTA
   ========================================= */
.footer-cta {
    background: white; padding: 40px; border-radius: 8px;
    text-align: center; box-shadow: 0 5px 20px rgba(0,0,0,0.05); margin-bottom: 40px;
}

.contact-methods {
    display: flex; justify-content: center; gap: 30px; margin-top: 30px; flex-wrap: wrap;
}

.contact-method { display: flex; gap: 10px; text-align: left; align-items: center; }

/* =========================================
   16. FOOTER
   ========================================= */
footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

@media(max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

footer h4 { color: white; margin-bottom: 20px; font-weight: 700; text-transform: uppercase; }
footer ul li { margin-bottom: 10px; }
footer a:hover { color: white; text-decoration: underline; }

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 13px;
    color: #999;
}

/* Alternative footer style for secondary pages */
.footer-col h4 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
}

.footer-col p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--text-light); }
.footer-links a:hover { color: var(--primary-blue); text-decoration: underline; }

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.contact-icon { color: var(--primary-blue); }

.disclaimer-text {
    font-size: 11px;
    color: #999;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    line-height: 1.5;
}

/* =========================================
   17. MOBILE STICKY BUTTON
   ========================================= */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 10px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 2000;
    display: none;
    border-top: 1px solid #ddd;
}

@media(max-width: 768px) { .mobile-sticky-cta { display: block; } }

.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: var(--accent-red);
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    gap: 10px;
}

/* =========================================
   18. ABOUT PAGE SPECIFIC
   ========================================= */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.highlight-box {
    background-color: #e8f4ff;
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--dark-blue);
}

.about-image {
    background-color: #ddd;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
}

.cta-banner {
    background-color: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta-banner h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-banner p {
    margin-bottom: 30px;
    opacity: 0.9;
}

@media(max-width: 768px) {
    .about-content { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
}

/* =========================================
   19. CONTACT PAGE SPECIFIC
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.info-card {
    background: var(--white);
    margin-bottom: 30px;
}

.info-card h3 {
    color: var(--dark-blue);
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    display: inline-block;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    background-color: #e8f4ff;
    color: var(--primary-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-blue);
}

.info-text p {
    color: var(--text-light);
    font-size: 15px;
}

.form-box {
    background-color: var(--white);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.form-box h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.form-box p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-blue);
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

@media(max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* =========================================
   20. BLOG STYLES
   ========================================= */

/* Blog Hero */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hvac_header_1.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.blog-hero p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media(max-width: 768px) {
    .blog-hero { padding: 60px 0; }
    .blog-hero h1 { font-size: 32px; }
    .blog-hero p { font-size: 16px; }
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

@media(max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.blog-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
}

.read-more:hover {
    color: var(--primary-dark);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.newsletter-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-box h3 {
    color: var(--primary-dark);
    font-size: 24px;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

@media(max-width: 500px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Article Hero */
.article-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hvac_emergency.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.article-hero h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    opacity: 0.9;
}

@media(max-width: 768px) {
    .article-hero { padding: 50px 0; }
    .article-hero h1 { font-size: 28px; }
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-content h2 {
    color: var(--primary-dark);
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 700;
}

.article-content h3 {
    color: var(--primary-blue);
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.8;
}

.article-content ul, .article-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
}

.article-content ul li {
    list-style-type: disc;
}

.article-content ol li {
    list-style-type: decimal;
}

.article-content strong {
    color: var(--text-main);
    font-weight: 600;
}

.featured-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: #777;
    margin-top: 10px;
    font-style: italic;
}

/* Warning Signs */
.warning-sign {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin: 30px 0;
    border-left: 5px solid var(--accent-red);
}

.warning-sign h4 {
    color: var(--accent-red);
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.warning-icon {
    font-size: 24px;
}

.urgency-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 15px;
}

.urgency-high {
    background: #ffebee;
    color: var(--accent-red);
}

.urgency-medium {
    background: #fff3e0;
    color: #e65100;
}

.urgency-low {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--primary-blue);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.info-box h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 18px;
}

.info-box p {
    margin: 0;
    color: var(--text-main);
}

.danger-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left: 4px solid var(--accent-red);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.danger-box h4 {
    color: var(--accent-red);
    margin-bottom: 10px;
    font-size: 18px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

th {
    background: var(--primary-blue);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
}

td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
    font-size: 15px;
}

tr:hover {
    background: #f8f9fa;
}

tr:last-child td {
    border-bottom: none;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-blue) 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

/* =========================================
   21. LEGAL PAGES (Privacy/TOS)
   ========================================= */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h2 {
    color: var(--dark-blue);
    font-size: 24px;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.legal-content h3 {
    color: var(--primary-blue);
    font-size: 18px;
    margin: 30px 0 15px;
}

.legal-content p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-light);
    list-style-type: disc;
}

.last-updated {
    font-style: italic;
    color: #888;
    margin-bottom: 30px;
}
