/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    line-height: 1.8;
    margin: 0;
    /*padding: 0;*/
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2 {
    font-weight: 700;
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
    color: #555;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url("#") center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Mission Section */
.about-mission {
    padding: 60px 20px;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.about-mission p {
    font-size: 1.1rem;
}

/* Values Section */
.about-values {
    padding: 60px 20px;
    background: #f1f8ff;
    margin-bottom: 40px;
}

.about-values ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.about-values ul li {
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    color: #333;
}

.about-values ul li strong {
    color: #0056b3;
    font-size: 1.1rem;
}

/* Team Section */
.about-team {
    padding: 60px 20px;
    margin: 40px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.team-member {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background: white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.team-member p {
    color: #777;
    font-size: 0.95rem;
}

/* Testimonials Section */
.about-testimonials {
    padding: 60px 20px;
    background: #f9f9f9;
    margin-bottom: 40px;
    text-align: center;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
}

.testimonial:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.testimonial p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
}

.testimonial span {
    font-weight: bold;
    color: #0056b3;
}

/* Call-to-Action Section */
.about-cta {
    padding: 60px 20px;
    background: #0056b3;
    color: white;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 40px;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.about-cta .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    background: #ffcc00;
    color: #0056b3;
    border: none;
    transition: background 0.3s, transform 0.3s;
}

.about-cta .btn:hover {
    background: #ffdd33;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        flex-direction: column;
    }
}
