/* Testimonial Warning Specific Styles */
.attention-title {
    font-size: 1.5rem;
    color: #4A3B3E;
    /* Or dark color */
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.attention-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 25px;
}

.attention-text .bold {
    font-weight: 700;
}

.testimonial-card {
    background: #E8EAF6;
    /* Light indigo/purple background */
    border: 1px solid #C5CAE9;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FFC107;
    /* Gold */
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 3px;
    letter-spacing: 2px;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
}

.testimonial-details {
    font-size: 0.8rem;
    color: #666;
}

.testimonial-content {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
    font-style: italic;
}