
 
 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
 }
 
 
 .about-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
    text-align: center;
 }
 
 
 .intro-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1.5rem;
    position: relative;
 }
 
 
 .intro-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #2563eb;
 }
 
 
 .intro-text {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0 auto;
 }
 
 
 .about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
 }
 
 
 .about-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 
 .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
 }
 
 
 .about-card h3 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
 }
 
 
 .about-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #2563eb;
 }
 
 
 .value-icon {
    width: 60px;
    height: 60px;
    background-color: #eef5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
 }
 
 
 .team-section {
    margin-bottom: 4rem;
 }
 
 
 .team-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
 }
 
 
 .team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
 }
 
 
 .team-member {
    text-align: center;
    transition: transform 0.3s ease;
 }
 
 
 .team-member:hover {
    transform: translateY(-5px);
 }
 
 
 .member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 5px solid #eef5ff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
 }
 
 
 .member-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2563eb;
 }
 
 
 .member-role {
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
 }
 
 
 
 
 
 
 .cta-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    background-color: #2563eb;
    color: white;
 }
 
 
 .cta-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
 }
 
 
 .cta-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
 }
 
 
 .cta-btn {
    display: inline-block;
    background-color: white;
    color: #2563eb;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
 }
 
 
 .cta-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }
 
 
 @media (max-width: 768px) {

 
    .intro-heading {
        font-size: 1.5rem;
    }
 
 
    .intro-text {
        font-size: 1rem;
    }
 
 
 }
 