body {
    font-family: 'Inter', sans-serif;
}

.input-field:focus {
    outline: none;
    border-color: #106846;
    box-shadow: 0 0 0 3px rgba(16, 104, 70, 0.1);
}

.hero-image-shadow {
    box-shadow: 20px 20px 0px rgba(16, 104, 70, 0.1);
}

/* Style riêng cho ngôi sao Trustpilot */
.tp-star-box {
    background-color: #00b67a;
    color: white;
    padding: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Quan trọng: Bù trừ chiều cao của Sticky Header */
}

/* Ẩn hiện Mobile Menu mượt mà */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px;
    /* Đủ lớn để chứa menu */
    opacity: 1;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}