

#content {
    max-width: 1200px;
    margin: auto;
}

.aboutus {
    padding: 50px 0;
}

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    max-width: 1200px;
    margin: auto;
    width: 100%;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    padding-right: 20px;
    min-width: 300px;
}

.about-text h4 {
    color: #71942F;
    font-weight: bold;
    font-size: 1.25rem;
}

.about-text h1 {
    font-size: 2.25rem;
    margin: 10px 0;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.5;
}

.book-now-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1rem;
}

.book-now-button:hover {
    background-color: #0056b3;
}

.about-image {
    flex: 1;
    text-align: right;
    margin-left: 20px;
    min-width: 300px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.location-section {
    text-align: center;
    padding: 20px;
}

.location-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-image {
        text-align: center;
        margin-top: 20px;
        margin-left: 0;
    }
}