.about-first-section>nav{
    background-color: transparent !important;
    position: absolute;
    top: 0;
    width: 100%;
}
.about-first-section{
    background-image: url('../img/IndexVIPTaxiAms.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
}
.about-first-section:before{
    content: "";
    height: 100%;
    background-color: black;
    opacity: 0.4;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.about-first-section .container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    color: white;
}
.about-first-section .container h1{
    font-size: 100px !important;
    color: white;
}

/* about - Section 2 */
.about-second-section{
    background-color: black !important;
    color: white !important;
    padding: 3rem;
    text-align: start;
}
.about-second-section-container{
    display: flex;
    justify-content: space-between;
    margin: 1rem auto;
}
.about-second-section-container section{
    width: 45%;
    color: white !important;
    background-color: black !important;
    padding: 20px;
}

/* About - Section 3 */
.about-third-section{
    background-color: black !important;
    color: white !important;
    padding: 4rem 0;
    text-align: start;
}
.about-third-section-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}
.about-third-section-container section{
    margin:2rem 0; 
    width:45%; 
    color:white !important;
    background-color: black !important;
    padding: 20px;
}

/* Button styles */
.about-first-section button,
.about-first-section .btn,
.about-second-section button,
.about-second-section .btn,
.about-third-section button,
.about-third-section .btn {
    background-color: blue !important;
    color: white !important;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

@media only screen and (max-width: 500px) {
    .about-first-section .container h1 {
        font-size: 80px !important;
        text-align: center;
        color: white;
    }
    .about-second-section {
        padding: 1rem;
        background-color: black !important;
    }
    .about-second-section-container {
        flex-direction: column;
        text-align: start;
    }
    .about-second-section-container section {
        width: 90%;
        margin: auto;
        color: white !important;
        background-color: black !important;
        padding: 15px;
    }
    .about-third-section-container {
        flex-direction: column;
    }
    .about-third-section-container section{
        width: 95%;
        margin: 1.5rem auto;
        color: white !important;
        background-color: black !important;
        padding: 15px;
    }
}