/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(14, 80, 124, 0.7), rgba(14, 80, 124, 0.7)), url('../images/about_hero_bg.jpg') no-repeat center center/cover; /* Dark blue overlay */
    color: var(--white);
    text-align: center;
    padding: 120px 0 80px;
    margin-top: 70px; /* To account for sticky header */
}

.about-hero h1 {
    color: var(--white);
    font-size: 3em;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1.2em;
}

/* Company Overview Section */
.company-overview {
    padding: 80px 0;
}

.overview-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    align-items: center;
}

.overview-content .text-block {
    flex: 2;
    min-width: 300px;
}

.overview-content .image-block {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.overview-content .image-block img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-block .caption {
    font-size: 0.9em;
    color: #777;
    margin-top: 10px;
}

.text-block ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.text-block ul li {
    background: url('../images/check_icon.png') no-repeat left center; /* Placeholder icon */
    background-size: 20px;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--dark-blue);
}

/* Mission Vision Values Section */
.mission-vision {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
}

.mv-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.mv-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.mv-item i {
    color: var(--teal);
    margin-bottom: 20px;
}

.mv-item h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.mv-item p, .mv-item ul {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
}

.mv-item ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    text-align: left;
}

.mv-item ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.mv-item ul li::before {
    content: '\2022'; /* Bullet point */
    color: var(--teal);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

/* Leadership Team Section */
.leadership-team {
    padding: 80px 0;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid var(--teal);
}

.team-member h3 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.team-member p:nth-of-type(1) { /* Title */
    font-weight: bold;
    color: var(--teal);
    margin-bottom: 10px;
}

.team-member p:nth-of-type(2) { /* Bio */
    font-size: 0.9em;
    color: #555;
    min-height: 90px; /* Consistent height for bios */
}

.team-member .fab {
    color: var(--dark-blue);
    font-size: 24px;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.team-member .fab:hover {
    color: var(--teal);
}

/* Locations Section */
.locations {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.location-map-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.location-info {
    flex: 1;
    min-width: 300px;
}

.location-info h3 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 1.5em;
}

.location-info p {
    margin-bottom: 5px;
}

.map-embed {
    flex: 2;
    min-width: 400px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 350px; /* Ensure map is visible */
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5em;
    }

    .overview-content {
        flex-direction: column;
    }

    .mv-item, .team-member, .location-info, .map-embed {
        min-width: unset;
        width: 100%;
    }
}