body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background-color: #fff;
    padding: 10px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: #000;
    margin: 0 15px;
}

.header-container {
    padding: 50px;
    background-color: #f8f9fa;
}

.header-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.header-content .text-section {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
}

.header-content .text-section h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.header-content .text-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.header-content .text-section .btn {
    margin-right: 10px;
    padding: 10px 20px;
}

.header-content .carousel-section {
    flex: 1;
    max-width: 50%;
}

.header-content .carousel-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.info-section {
    background-color: #fff;
    padding: 50px 0;
}

.info-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.info-section h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.info-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.info-card {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 30%;
    margin-bottom: 20px;
}

.info-card i {
    color: #000;
    margin-bottom: 15px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 16px;
}

.listings {
    padding: 50px 0;
}

.section-heading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.listing {
    text-align: center;
    margin-bottom: 30px;
}

.listing img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.listing h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.listing p {
    font-size: 16px;
    margin-bottom: 10px;
}

.listing .btn {
    background-color: #ff6f61;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.testimonials-section {
    background-color: #fff;
    padding: 50px 0;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-section p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.testimonial .stars {
    color: #ffc107;
    margin-bottom: 10px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.testimonial-footer img {
    border-radius: 50%;
    margin-right: 15px;
    width: 40px;
    height: 40px;
}

.testimonial-footer p {
    font-size: 16px;
    margin-right: 15px;
}

.contact-section {
    align-items: center;
    padding: 35px;
    background: #eaf3f3;
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-form p {
    font-size: 18px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form button {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.contact-form button {
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.contact-form .radio-group {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.contact-form .radio-group label {
    font-size: 18px;
}

.contact-form .radio-group input {
    margin-right: 5px;
}

.contact-image {
    flex: 1;
    background: url('images/coffee.jpg') no-repeat center center/cover;
    border-radius: 10px;
    height: 0px;
}

.credit {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    font-size: 16px;
}

.credit span {
    font-weight: bold;
}

.listings .listing h3 a {
    color: #000;
    text-decoration: none;
}

.listings .listing h3 a:hover {
    text-decoration: underline;
}

.listing p {
    font-size: 12px;
    margin-bottom: 10px;
}
.hero-section{
    margin-left:68px;
}

@media (max-width: 767.98px) {
    .header-content {
        flex-direction: column;
    }

    .header-content .text-section,
    .header-content .carousel-section {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .info-card {
        width: 100%;
        margin-bottom: 20px;
    }

    .testimonial-footer {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-footer p {
        margin: 0;
        text-align: center;
    }

    .contact-image {
        height: 200px;
    }
}
