/* About Page Specific Styles */

/* Hero Section with Image and Content */
.about-hero-section {
    padding: 0;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.about-hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    width: 100%;
    min-height: calc(100vh - 80px);
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 0px 40px 0px 40px;
}

.about-hero-image img {
    width: 100%;
    max-height: 630px;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 20px 20px;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    max-width: 750px;
    max-height: 550px;
    margin: auto;
    margin-right: 80px;
    padding: 50px 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-hero-content h1 {
    font-size: 2.8rem;
    color: #09552F;
    margin-bottom: 0.1rem;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.what-we-do h3 {
    font-size: 1.3rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-weight: 600;
}

.what-we-do-list {
    list-style: none;
    padding: 0;
}

.what-we-do-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
    font-size: 0.93rem;
    line-height: 1.6;
}

.what-we-do-list i {
    color: #6FCF4D;
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.what-we-do-list span {
    color: #1a1a1a;
}

/* Mission and Vision Section */
.mission-vision-section {
    padding: 60px 0;
    background-color: #FAFAFA;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-vision-item {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mission-vision-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.mission-vision-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-vision-text {
    padding: 30px;
}

.mission-vision-text h2 {
    font-size: 1.8rem;
    color: #1A1A1A;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-vision-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Innovation and Partnerships Section */
.innovation-partnerships-section {
    padding: 60px 0 80px;
    background-color: white;
}

.innovation-partnerships-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.innovation-box,
.partnerships-box {
    padding: 40px;
    background-color: #FAFAFA;
    border-radius: 16px;
    border-left: 4px solid #09552F;
}

.innovation-box h2,
.partnerships-box h2 {
    font-size: 1.5rem;
    color: #1A1A1A;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.innovation-box p,
.partnerships-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .about-hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .about-hero-layout {
        min-height: auto;
        display: block;
        position: relative;
    }

    .about-hero-image {
        position: relative;
        height: 400px;
        margin-bottom: -80px;
    }

    .about-hero-content {
        position: relative;
        max-width: 100%;
        margin: 0 20px;
        z-index: 10;
    }

    .mission-vision-grid,
    .innovation-partnerships-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 80px 0 40px;
    }

    .about-hero-image {
        height: 300px;
        margin-bottom: -60px;
    }

    .about-hero-content {
        padding: 35px 30px;
        margin: 0 15px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

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

    .what-we-do h3 {
        font-size: 1.15rem;
    }

    .mission-vision-image {
        height: 200px;
    }

    .mission-vision-text,
    .innovation-box,
    .partnerships-box {
        padding: 25px;
    }

    .mission-vision-text h2 {
        font-size: 1.5rem;
    }

    .innovation-box h2,
    .partnerships-box h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .about-hero-image {
        height: 250px;
        margin-bottom: -50px;
    }

    .about-hero-content {
        padding: 25px 20px;
    }

    .about-hero-content h1 {
        font-size: 1.6rem;
    }

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

    .what-we-do h3 {
        font-size: 1.05rem;
    }

    .what-we-do-list li {
        font-size: 0.85rem;
    }

    .what-we-do-list i {
        font-size: 0.9rem;
    }

    .mission-vision-text h2 {
        font-size: 1.3rem;
    }

    .innovation-box h2,
    .partnerships-box h2 {
        font-size: 1.2rem;
    }

    .mission-vision-text,
    .innovation-box,
    .partnerships-box {
        padding: 20px;
    }
}