/* ===================================
   BLOG POST STYLES
   Kuwait Clean - Blog Post Template
   =================================== */

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-teal), var(--color-cyan), var(--color-green));
    z-index: 10000;
    transition: width 0.1s ease;
}

/* Breadcrumb */
.breadcrumb-nav {
    background: var(--color-light);
    padding: 80px 0 12px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-gray-light);
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb li:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--color-gray-light);
}

.breadcrumb a {
    color: var(--color-teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb li:last-child {
    color: var(--color-primary);
    font-weight: 600;
}

/* Blog Post Hero */
.post-hero {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a4a6e 50%, var(--color-teal) 100%);
    overflow: hidden;
}

.post-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.post-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.post-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.post-category {
    display: inline-block;
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.4);
    color: var(--color-cyan);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.post-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.post-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.post-meta-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.85;
}

.post-meta-item svg {
    opacity: 0.7;
}

/* Blog Post Layout */
.post-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    padding: 48px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar - Table of Contents */
.post-sidebar {
    position: relative;
}

.toc-wrapper {
    position: sticky;
    top: 100px;
    background: var(--color-white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.toc-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-light);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.toc-list li {
    counter-increment: toc-counter;
    margin-bottom: 4px;
}

.toc-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--color-gray-light);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-link::before {
    content: counter(toc-counter);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-light);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gray-light);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

.toc-link.active {
    background: rgba(45, 156, 219, 0.08);
    color: var(--color-teal);
    border-left-color: var(--color-teal);
    font-weight: 600;
}

.toc-link.active::before {
    background: var(--color-teal);
    color: white;
}

/* Main Content */
.post-content {
    min-width: 0;
}

/* Quick Answer Box */
.quick-answer-box {
    background: linear-gradient(135deg, #f0faf9 0%, #e8f7f6 100%);
    border: 2px solid var(--color-cyan);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 48px;
}

.quick-answer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.quick-answer-header svg {
    color: var(--color-teal);
}

.quick-answer-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
}

.quick-answer-box > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.quick-answer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.quick-answer-item {
    background: white;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.qa-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gray-light);
    margin-bottom: 6px;
    font-weight: 500;
}

.qa-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-teal);
}

/* Post Sections */
.post-section {
    margin-bottom: 56px;
    scroll-margin-top: 100px;
}

.post-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--color-cyan);
    display: inline-block;
}

.post-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 28px 0 12px;
}

.post-section h3.table-title {
    color: #FFFFFF;
    margin: 0;
}

.post-section p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-gray);
    margin-bottom: 16px;
}

/* Section Images */
.section-image-wrapper {
    margin-bottom: 28px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.section-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.section-image-wrapper:hover .section-image {
    transform: scale(1.03);
}

/* Info Cards Grid */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.info-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--color-cyan);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-teal), var(--color-cyan));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 10px !important;
}

.info-card p {
    font-size: 0.95rem !important;
    line-height: 1.7;
    color: var(--color-gray-light);
    margin-bottom: 0 !important;
}

/* Key Insight Box */
.key-insight {
    display: flex;
    gap: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e8f4fd 100%);
    border-left: 4px solid var(--color-teal);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
}

.key-insight-warning {
    background: linear-gradient(135deg, #fff8f0 0%, #fef3e8 100%);
    border-left-color: var(--color-accent);
}

.key-insight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.key-insight-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray);
}

.key-insight-content strong {
    color: var(--color-primary);
}

/* Pricing Tables */
.pricing-table-wrapper {
    margin: 28px 0;
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.table-title,
.post-section .table-title {
    padding: 20px 24px;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.pricing-table-responsive {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: var(--color-light);
}

.pricing-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 0.9rem;
    border-bottom: 2px solid #e0e0e0;
}

.pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: var(--color-gray);
}

.pricing-table tbody tr:hover {
    background: rgba(45, 156, 219, 0.04);
}

.highlight-row {
    background: rgba(78, 205, 196, 0.06);
}

.highlight-row td {
    font-weight: 600;
    color: var(--color-primary);
}

/* Company Cards */
.company-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 28px 0;
}

.company-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

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

.company-card.featured {
    border: 2px solid var(--color-teal);
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f0faf9 0%, white 100%);
}

.company-card-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: var(--color-teal);
    color: white;
    padding: 4px 16px;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-name {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.company-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--color-gray-light);
}

.stars-small {
    color: #FFD93D;
    font-size: 1rem;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray-light);
    margin-bottom: 20px;
}

.company-pricing {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.company-price-item {
    background: var(--color-light);
    padding: 10px 16px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.company-price-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gray-light);
    margin-bottom: 4px;
}

.company-price-item strong {
    font-size: 1rem;
    color: var(--color-teal);
}

.btn-company {
    display: inline-block;
    padding: 12px 28px;
    background: var(--color-teal);
    color: white;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-company:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(45, 156, 219, 0.3);
}

/* Numbered List */
.numbered-list {
    margin: 28px 0;
}

.numbered-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.numbered-item:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(45, 156, 219, 0.2);
}

.number-circle {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-teal), var(--color-cyan));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
}

.numbered-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.numbered-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-gray-light);
    margin: 0;
}

/* Comparison Boxes */
.comparison-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.comparison-box {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.comparison-box-header {
    padding: 16px 20px;
    text-align: center;
}

.comparison-box-header.pro {
    background: linear-gradient(135deg, var(--color-teal), var(--color-cyan));
    color: white;
}

.comparison-box-header.neutral {
    background: linear-gradient(135deg, #6c757d, #868e96);
    color: white;
}

.comparison-box-header.diy {
    background: linear-gradient(135deg, var(--color-accent), var(--color-coral));
    color: white;
}

.comparison-box-header h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.comparison-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.comparison-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--color-gray);
    border-bottom: 1px solid #f5f5f5;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.pro-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #25D366;
    font-weight: 700;
}

.con-item::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--color-coral);
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 28px 0;
}

.benefit-item {
    background: var(--color-white);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.benefit-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-gray-light);
    margin: 0;
}

/* FAQ Accordion */
.faq-accordion {
    margin: 28px 0;
}

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

.faq-item:hover {
    border-color: rgba(45, 156, 219, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-light);
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--color-teal);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-gray-light);
}

/* Post Conclusion / CTA */
.post-conclusion {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-teal) 100%);
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    margin: 48px 0;
    color: white;
}

.post-conclusion h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    border: none;
    display: block;
    padding: 0;
}

.post-conclusion p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 16px;
    color: white;
}

.post-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.post-cta-buttons .btn {
    padding: 14px 32px;
    font-size: 1.05rem;
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 32px 0;
}

.share-label {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.95rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-twitter {
    background: #1DA1F2;
}

.share-facebook {
    background: #1877F2;
}

.share-whatsapp {
    background: #25D366;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--color-light);
    border-radius: 16px;
    margin: 32px 0;
    align-items: flex-start;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: contain;
    background: white;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.author-description {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-gray-light);
    margin-bottom: 12px;
}

.author-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.author-links a {
    font-size: 0.85rem;
    color: var(--color-teal);
    text-decoration: none;
    font-weight: 600;
}

.author-links a:hover {
    color: var(--color-primary);
}

/* Related Posts */
.related-posts {
    margin: 48px 0 0;
}

.related-posts h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.related-post-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.related-post-content {
    padding: 16px;
}

.related-post-date {
    font-size: 0.8rem;
    color: var(--color-gray-light);
    margin-bottom: 6px;
    display: block;
}

.related-post-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
    
    .post-sidebar {
        order: -1;
    }
    
    .toc-wrapper {
        position: static;
    }
    
    .toc-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    
    .company-cards {
        grid-template-columns: 1fr;
    }
    
    .company-card.featured {
        grid-column: 1;
    }
}

@media (max-width: 768px) {
    .post-hero-title {
        font-size: 2rem;
    }
    
    .post-hero-subtitle {
        font-size: 1.05rem;
    }
    
    .post-meta-bar {
        gap: 16px;
    }
    
    .quick-answer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-boxes {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .toc-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .post-section h2 {
        font-size: 1.5rem;
    }
    
    .section-image {
        height: 240px;
    }
    
    .post-conclusion {
        padding: 32px 24px;
    }
    
    .post-conclusion h2 {
        font-size: 1.5rem;
    }
    
    .numbered-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .social-share {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .author-links {
        justify-content: center;
    }
    
    .post-cta-buttons {
        flex-direction: column;
    }
    
    .post-cta-buttons .btn {
        width: 100%;
    }
    
    .breadcrumb-nav {
        padding: 72px 0 10px;
    }
}

@media (max-width: 480px) {
    .post-hero {
        padding: 40px 0 60px;
    }
    
    .post-hero-title {
        font-size: 1.625rem;
    }
    
    .quick-answer-box {
        padding: 20px;
    }
    
    .quick-answer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .toc-list {
        grid-template-columns: 1fr;
    }
    
    .company-pricing {
        flex-direction: column;
    }
    
    .section-image {
        height: 200px;
    }
}
