/* ============================
   GLOBAL PAGE STYLES
============================ */

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #1a1a1a;
}

header {
    background: #ffffff;
    padding: 20px 40px;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo {
    height: 60px;
}

.page-title {
    text-align: center;
    margin: 40px 0 20px;
    font-size: 36px;
    font-weight: 700;
    color: #003366;
}

/* ============================
   REVIEW GRID LAYOUT
============================ */

.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
    }
}

/* ============================
   REVIEW CARD
============================ */

.review-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
}

.stars {
    color: #f4b400;
    font-size: 20px;
    margin-bottom: 8px;
}

.review-header {
    font-weight: 600;
    margin-bottom: 12px;
    color: #003366;
}

.review-text {
    line-height: 1.6;
    font-size: 15px;
}

/* ============================
   REVIEW CTA SECTION
============================ */

.review-cta {
    max-width: 900px;
    margin: 60px auto 40px;
    text-align: center;
}

.review-cta h2 {
    font-size: 28px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 25px;
}

.review-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-btn-google,
.review-btn-facebook {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    min-width: 260px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.review-btn-google {
    background: #003366;
}

.review-btn-facebook {
    background: #1877F2;
}

/* ============================
   FOOTER
============================ */

footer {
    margin-top: 60px;
    background: #ffffff;
    padding: 40px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

footer .logo {
    height: 70px;
    margin-bottom: 15px;
}
