/* Blog AC Duct Cleaning Styles */

.blog-post-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    margin-top: 76px;
}

.hero-content {
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-post-content {
    padding: 60px 0;
    line-height: 1.8;
}

.blog-post-content h2 {
    color: #2c3e50;
    margin: 40px 0 20px;
    font-weight: 600;
}

.blog-post-content h3 {
    color: #34495e;
    margin: 30px 0 15px;
    font-weight: 500;
}

.blog-post-content p,
.blog-post-content li {
    color: #555;
    margin-bottom: 16px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 5px;
}

.faq-section {
    background: #f8f9fa;
    padding: 40px 0;
    margin: 40px 0 0 0;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-question {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-answer {
    color: #555;
}

.table-of-contents {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.table-of-contents h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.table-of-contents ul {
    list-style: none;
    padding-left: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
}

.table-of-contents a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.table-of-contents a:hover {
    color: #0056b3;
}

.breadcrumb-nav {
    background: transparent;
    padding: 15px 0;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 991px) {
    .blog-post-hero {
        padding: 60px 0 30px;
    }
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .blog-post-content {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    .blog-post-hero {
        padding: 40px 0 20px;
    }
    .blog-post-content {
        padding: 15px 0;
    }
    .faq-section {
        padding: 20px 0;
    }
}

/* Sidebar tweaks for mobile */
@media (max-width: 991px) {
    .col-lg-4 {
        margin-top: 40px;
    }
} 