.bus-cont{
    width: 100%;
    height: 500px;
    background-image: url(photoOne.jpg);
    background-size: cover;        /* Makes the image cover the entire area */
    background-position: center;   /* Centers the image */
    background-repeat: no-repeat;
    display: flex;
    flex-direction: row;
}

.bus-first{
    width: 35%;
    height: 100%;
    background-color: #000080;
    padding: 15px;
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.ti-bus{
    color: white;
    font-family: sans-serif;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
    line-height: 1.0;
    font-weight: 600;
    padding-top: 15px;
}

.p-bus{
    font-family: "Raleway", sans-serif;
    color: rgb(255, 255, 255);
    letter-spacing: 0.3px;
    padding-left: 30px;
    padding-right: 30px;
    line-height: 1.2;
    font-size: 1.5em;
    text-align: center;
    margin-top: -160px;
}

.nine{
    color: #000080; /* Navy blue for the title */
    font-size: 2em; /* Adjust font size as needed */
    font-weight: bold; /* Make the title bold */
    margin-bottom: 10px;
    font-family: sans-serif;
}

.bus-explication{
    width: 100%;
    height: 300px;
    background-color: white;
}

.otro{
    text-align: center;
    padding-top: 47px;
    color: #000080;
    font-size: 40px;
    font-weight: 550;
    font-family: Arial, Helvetica, sans-serif;
}  

.otro-p{
    color:rgb(57, 56, 56);
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px;
    padding-left: 45px;
    letter-spacing: 0.7px;
    text-align: center;
    font-size: 18px;
}

.bus-suite{
    width: 100%;
    height: 300px;
    background-color: #000080;
}

.apply-button {
    background-color: #10bb10; /* Bootstrap's primary color */
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none; /* Remove underline if it's an anchor */
    display: inline-block; /* */
    border: none;
    cursor: pointer;
}

.apply-button:hover {
    background-color: #09bd18; /* Darker shade on hover */
}

@media (max-width: 768px) { /* Medium screens and below (typical mobile) */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .space-y-6 {
        margin-bottom: 24px;
    }
}


@media (max-width: 768px) {
    .bus-cont{
        align-items: center;
        justify-content: center;
        height: 530px;
    }
    .bus-first{
        width: 95%;
        height: auto;
        
    }
    .p-bus{
        padding-bottom: 15px;
        font-weight: 600;
        margin-top: -20px;
    }

    .bus-explication{
        height: auto;
        padding: 20px;
        min-height: 680px;
        padding-bottom: 25px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
    }
    .otro{
        font-size: 35px;
        padding:  15px;
        padding-bottom: 40px;
        margin-bottom: -35px;
        font-weight: 500;
    }
    .otro p{
        margin-bottom: -50px;
        padding-left: 0;
        
        margin-right: 15px;
        border: solid 4px black;
    }

}