/* Testimonials Page Styles */
.testimonials-main {
    margin-top: 80px;
}

.testimonials-hero {
    background-color: #3498db;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.testimonials-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.featured-story {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.story-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: left;
}

.quote {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.achievement {
    text-align: center;
}

.achievement i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.success-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
}

.success-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.success-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.title {
    color: #3498db;
    font-weight: bold;
    margin-bottom: 1rem;
}

.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.metric {
    text-align: center;
}

.number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.label {
    font-size: 0.9rem;
    color: #666;
}

.join-story {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 4rem 1rem;
}

.join-story h2 {
    color: #fff;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .testimonials-hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .achievements {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
