/**
 * About Us Component Styles
 */

.about-us-section {
    margin-bottom: 60px;
}

.about-us-image {
    height: 810px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    text-align: center;
    padding-top: 120px;
}

.about-us-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(34, 60, 147, 0) 51.42%, rgba(34, 60, 147, 0.35) 62.52%, rgba(34, 60, 147, 0.7) 76.08%, rgba(34, 60, 147, 0.883825) 81.5%, rgba(34, 60, 147, 0.996491) 88.41%, #223C93 98.77%);
    z-index: 1;
}

.about-us-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.about-us-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-us-description {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 30px;
}

.about-us-description p {
    margin-bottom: 15px;
}

.about-us-cta {
    display: inline-block;
    background-color: var(--primary-color, #223C93);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #fff;
}

.about-us-cta:hover {
    background-color: #fff;
    color: var(--primary-color, #223C93);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Team Section */
.about-us-team {
    padding: 60px 0;
}

.team-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.team-section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color, #223C93);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.team-member-info {
    padding: 15px;
    text-align: center;
}

.team-member-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.team-member-position {
    font-size: 14px;
    color: var(--primary-color, #223C93);
    margin: 0;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-us-title {
        font-size: 32px;
    }
    
    .team-section-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .about-us-image {
        height: 450px;
    }
    
    .about-us-title {
        font-size: 28px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-member-photo img {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .about-us-image {
        height: 400px;
    }
    
    .about-us-title {
        font-size: 26px;
    }
    
    .about-us-description {
        font-size: 15px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-member-photo img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-photo img {
        height: 280px;
    }
} 