/* About Page Specific Styles */

/* Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    background: linear-gradient(45deg, #003366, #0066cc);
    background-size: cover;
}

/* About Overview Section */
.about-section {
    padding: 80px 0;
}

.about-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.about-content {
    flex: 1 1 500px;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.about-image {
    flex: 1 1 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Value Cards Section */
.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-card p {
    color: #666;
}

/* Stats Section */
.stats-section {
    margin-bottom: 60px;
}

.stats-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.stat-item {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 60px;
}

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.testimonial-content p {
    color: #555;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding: 20px 30px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 80px 0;
    color: #fff;
    text-align: center;
    background: linear-gradient(135deg, #003366, #0066cc);
    background-size: cover;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.cta-section p {
    color: #fff;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .about-overview, .values-grid, .team-grid, .stats-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content, .about-image {
        flex: 1 1 100%;
    }
}

@media screen and (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-content h2, .values-section h2, .team-section h2, .stats-section h2, .testimonials-section h2, .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
} 