.about-container {
    width: 80%;
    margin: -100px auto 50px; /* Overlap with hero */
    position: relative;
    z-index: 10;
}

.about-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #121213;
    text-align: center;
}

.about-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-hero {
    height: 40vh;
    width: 100%;
    background: url('../images/bg.png') no-repeat center center/cover;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .about-container {
        width: 95%;
        margin-top: -50px;
    }
    .about-card {
        padding: 20px;
    }
    .about-hero h1 {
        font-size: 2.5rem;
    }
}
