/* Non-critical Styles - Mobile First */

.content-section {
    padding: 40px 0;
}

.table-responsive {
    overflow-x: auto;
    margin: 25px 0;
    border: 1px solid #eee;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    background: #fff;
}

table th, table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

table th {
    background: #f1f1f1;
    font-weight: 700;
}

h2 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #111;
}

p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
}

ul {
    margin: 0 0 20px 20px;
}

ul li {
    margin-bottom: 8px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* FAQ Styling */
.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-red);
}

/* Reviews Styling */
.reviews-section {
    background: #f4f4f4;
    padding: 50px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.stars {
    color: #ffc107;
    margin-bottom: 10px;
}

/* Author Section */
.author-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
}

.author-content h3 {
    margin-bottom: 5px;
}

.role {
    font-weight: 600;
    color: #888;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* Desktop Overrides */
@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .author-box {
        flex-direction: row;
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    h2 {
        font-size: 28px;
    }
}