
/* Styles for the About Us Section */
.about-header {
    position: relative;
    height: 25vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(215, 25, 32, 0.9);
    z-index: 1;
}

.about-header .content {
    position: relative;
    z-index: 2;
}

.about-header h1 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about-header {
        height: 18vh;
        padding: 20px;
    }

    .about-header h1 {
        font-size: 20px;
        line-height: 1.2;
    }
}
