.about-hero {
    margin: 180px auto;
    position: relative;
    height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.about-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero h1 {
    position: relative;
    z-index: 2;
    font-size: 48px;
}

.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

.section-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary);
    text-align: center;
}

.section p{
    line-height: 1.5;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.features .box {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.features .box:hover {
    transform: translateY(-5px);
}

.features .box h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

.achievements {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: center;
}

.achievement-item {
    flex: 1;
    min-width: 200px;
    background: var(--card-bg);
    padding: 30px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.achievement-item h2 {
    font-size: 36px;
    color: var(--primary);
}

.achievement-item p {
    font-size: 16px;
}

.cta {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 40px 20px;
}

.cta h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .achievements {
        flex-direction: column;
        align-items: center;
    }
}