/* REVIEWS SECTION */
.reviews {
    background-color: #121418; /* A darker background to differentiate sections */
    color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.reviews h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #f5c98a;
}

.reviews-subtitle {
    margin-bottom: 3rem;
    color: #aaaaaa;
}

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

.review-card {
    background-color: #1f2329;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.reviewer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background-color: #f5c98a;
    color: #0d1117;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
}

.reviewer-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
}

.reviewer-info .stars {
    color: #ffcc00;
    font-size: 1rem;
    margin-top: 0.3rem;
}

.review-text {
    color: #cccccc;
    line-height: 1.6;
    font-style: italic;
    font-size: 0.95rem;
}
