.box {
    background-color: #aebbb0;
    padding: 2em;
}

body.dark-mode .box {
    background-color: #181818;
}

/* --- Content Container Background --- */
/* This container wraps the main page content (excluding header/footer/sidebar) */
.content-container {
    background-color: #ffffff;
    /* Light mode background */
    padding: 2em;
    margin: 150px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}

body.dark-mode .content-container {
    background-color: #111;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

/* --- Google Reviews Section (Inside the Content Container) --- */
.google-reviews-section {
    text-align: center;
    margin-bottom: 1.5em;
}

.google-reviews-section .reviews-header h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.google-reviews-section .reviews-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
    transition: color 0.3s;
}

/* Reviews container and individual review styling */
#reviews-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review {
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: background 0.3s, border-color 0.3s;
}

.review .stars {
    color: gold;
    margin-bottom: 0.5rem;
}

.review p {
    margin: 0;
}

.review:last-child {
    border-bottom: none;
}

.review .review-author {
    font-weight: bold;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.review .review-text {
    margin-bottom: 10px;
    transition: color 0.3s;
}

.review .review-stars {
    color: #f5c518;
    /* Star yellow */
    font-size: 1.2rem;
}

/* --- Dark Mode Styles for Reviews --- */
body.dark-mode .content-container .google-reviews-section .reviews-header h2 {
    color: #f1f1f1;
}

body.dark-mode .content-container .google-reviews-section .reviews-header p {
    color: #b0b0b0;
}

body.dark-mode .content-container #reviews-container .review {
    border: 1px solid #444;
    background-color: #3a3a3a;
}

body.dark-mode .content-container .review .review-author {
    color: #fff;
}

body.dark-mode .content-container .review .review-text {
    color: #ccc;
}

body.dark-mode .content-container .review .stars {
    color: #ffd700;
    /* Slightly brighter gold */
}