/* About Page Specific Styles */


/* About Hero Section */

.about-hero {
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(29, 78, 216, 0.5)), url('../images/History.png') center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center 70%;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-white);
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}


/* About Content */

.about-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 2rem;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 350px;
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .about-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        background-size: 120%;
        background-position: center 30%;
    }
    .about-hero h1 {
        font-size: 1.8rem;
    }
    .about-hero p {
        font-size: 1rem;
    }
}