/* About Us Page Custom Styling */

/* About Us hero background */
.aboutus-page .aboutus-hero {
    background-image: url('../img/noi-pc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutus-page .aboutus-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(17, 26, 60, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutus-title {
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: underline;
    margin-bottom: 1rem;
    text-align: left;
}

.aboutus-subtitle {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.5;
    margin: 0 auto;
    text-align: left;
}

/* CV content alignment */
.cv-content {
    text-align: left;
    text-align: justify;
}

/* Team card styling */
.team-card {
    background-color: var(--cardblue) !important;
}

/* About Us responsive adjustments */
@media (max-width: 768px) {
    .aboutus-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
        padding-left: 20px;
    }
    
    .aboutus-subtitle {
        margin-bottom: 1rem;
        margin-top: 0.5rem;
        padding-left: 20px;
    }
    
    .aboutus-hero {
        height: 40vh;
    }
}
