.featured-testimonial-section {
    padding: 30px 0 60px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: none;
    margin: 0;
}

.featured-testimonial-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.featured-testimonial {
    background-color: #e1ffc7; /* More authentic WhatsApp green bubble */
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 0;
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    border-top-right-radius: 4px; /* WhatsApp style bubble tip */
}

.featured-testimonial-name {
    font-weight: 600;
    color: #3f6aac;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.featured-testimonial-quote p {
    margin: 0 0 15px 0;
    color: #262626;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    white-space: pre-line; /* Preserve line breaks from HTML */
}

.featured-testimonial-quote p:last-child {
    margin-bottom: 5px;
}

.message-time-featured {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 5px;
    font-weight: 500;
}

.blue-ticks-featured::after {
    content: "✓✓";
    color: #34B7F1; /* WhatsApp blue ticks color */
    margin-left: 4px;
    font-size: 14px;
    font-weight: bold;
}

.featured-testimonial-header {
    text-align: center;
    margin-bottom: 30px;
}

.featured-testimonial-header h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 10px;
}

.featured-testimonial-header p {
    color: #666;
    font-size: 16px;
}

/* Responsive styles */
@media (max-width: 767px) {
    .featured-testimonial-container {
        padding: 0 15px;
    }
    
    .featured-testimonial {
        padding: 15px;
    }
    
    .featured-testimonial-quote p {
        font-size: 15px;
    }
    
    .featured-testimonial-header h2 {
        font-size: 24px;
    }
}
