.hero-banner {
    width: 100%;
    height: 360px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}
/* ============================= */
/* ===== ABOUT SECTION ======== */
/* ============================= */

.about-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

/* Main Heading */
.about-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #111;
}

/* Sub Headings */
.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 500;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* Paragraph */
.about-section p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 20px;
}

/* ============================= */
/* ===== MOBILE VERSION ======= */
/* ============================= */

@media (max-width: 768px) {

    .about-section {
        padding: 50px 20px;
    }

    .about-container {
        width: 100%;
    }

    .about-section h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    .about-section h2 {
        font-size: 24px;
        margin-top: 35px;
    }

    .about-section p {
        font-size: 15px;
        line-height: 1.7;
    }

}
/* =============================== */
/* ===== WHY CHOOSE SECTION ===== */
/* =============================== */

.why-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.why-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 35px;
    color: #111;
}

/* Paragraphs */
.why-section p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 28px;
}

/* =============================== */
/* ===== MOBILE RESPONSIVE ====== */
/* =============================== */

@media (max-width: 768px) {

    .why-section {
        padding: 50px 20px;
    }

    .why-container {
        width: 100%;
    }

    .why-section h2 {
        font-size: 28px;
    }

    .why-section p {
        font-size: 15px;
        line-height: 1.7;
    }

}
/* =============================== */
/* ===== CONTACT SECTION ======== */
/* =============================== */

.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-container {
    width: 85%;
    max-width: 1100px;
    margin: auto;
}

/* Heading */
.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #111;
}

/* Intro paragraph */
.contact-intro {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 40px;
}

/* Contact list */
.contact-list {
    list-style: circle;
    padding-left: 25px;
    margin-bottom: 40px;
}

.contact-list li {
    font-size: 17px;
    margin-bottom: 18px;
    color: #333;
}

/* Bottom paragraph */
.contact-footer-text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* =============================== */
/* ===== MOBILE RESPONSIVE ====== */
/* =============================== */

@media (max-width: 768px) {

    .contact-section {
        padding: 50px 20px;
    }

    .contact-container {
        width: 100%;
    }

    .contact-section h2 {
        font-size: 28px;
    }

    .contact-intro,
    .contact-list li,
    .contact-footer-text {
        font-size: 15px;
        line-height: 1.7;
    }

}
