h1, h2, h3{
    font-family: "Cormorant Garamond", serif;
}

body{
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

.btn-arrow svg {
    display: block;
    width: 20px;
    height: 20px;
}

/************ Shared page banner ************/
.page-banner {
    width: 100%;
    background-color: #f2efe6;
    padding: 130px 20px 50px;
    text-align: center;
}

.page-banner .banner-tag {
    display: block;
    color: #b67a1c;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.page-banner h1 {
    position: relative;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.2rem;
    font-weight: 600;
    color: #223a59;
    margin: 0;
    padding-bottom: 18px;
}

.page-banner h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 2px;
    background: #ba9652;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 110px 20px 40px;
    }

    .page-banner h1 {
        font-size: 2.6rem;
    }
}

/************ WhatsApp float ************/
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.whatsapp-float img {
    width: 34px;
    height: 34px;
    display: block;
}