:root {
    --hm-green: #066c5f;
    --hm-gold: #c8a24d;
    --hm-sand: #f4efe6;
    --hm-ink: #141414;
}

.hm-body {
    background: var(--hm-sand);
    overflow-x: hidden;
}

.hm-search-close {
    border: none;
    background: var(--hm-sand);
    color: var(--hm-ink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    box-shadow: 0 10px 30px rgba(6, 108, 95, 0.18);
    transition: background 0.2s ease, color 0.2s ease;
}

.hm-search-close:hover {
    background: var(--hm-green);
    color: #fff;
}

.hm-search-toggle {
    color: var(--hm-gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.hm-modal {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 16px;
    background: rgba(12, 12, 12, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1090;
}
.hm-modal.is-visible {
    opacity: 1;
    visibility: visible;
}
.hm-modal__overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}
.hm-modal__dialog {
    position: relative;
    width: min(960px, 100%);
    max-height: 100%;
    overflow-y: auto;
    z-index: 1;
}
.hm-modal__form {
    background: #fff;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 30px 80px rgba(8, 31, 44, 0.18);
}
.hm-modal__close {
    flex-shrink: 0;
}
.hm-modal-open {
    overflow: hidden;
}
.hm-link {
    color: var(--hm-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hm-link:hover {
    color: var(--hm-gold);
}

[data-hm-purpose-tabs] {
    display: inline-flex;
    background: var(--hm-sand);
    border-radius: 999px;
    padding: 6px;
    gap: 6px;
    margin-bottom: 24px;
}

.hm-filter-tab {
    position: relative;
    border-radius: 999px;
    cursor: pointer;
    color: var(--hm-ink);
    font-weight: 600;
    display: inline-flex;
    transition: all 0.2s ease;
}

.hm-filter-tab input {
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.hm-filter-tab span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
}

.hm-filter-tab input:checked + span,
.hm-filter-tab.is-active span {
    background: #fff;
    color: var(--hm-green);
    box-shadow: 0 10px 25px rgba(6, 108, 95, 0.12);
}

.hm-hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at top left, rgba(6, 108, 95, 0.2), transparent), var(--hm-sand);
}

.hm-hero__pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80 10 L150 80 L80 150 L10 80 Z' fill='none' stroke='%23e5dcc9' stroke-width='1' stroke-opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.hm-hero__content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 25px 80px rgba(8, 31, 44, 0.08);
}

.hm-hero__eyebrow {
    color: var(--hm-gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hm-hero__content h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hm-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    list-style: none;
    margin: 24px 0;
}

.hm-hero__badges li {
    background: var(--hm-sand);
    color: var(--hm-ink);
    border-radius: 999px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.hm-hero__badges span {
    color: var(--hm-green);
}

.hm-hero__form {
    background: #fff;
    border: 1px solid #ece6d9;
    border-radius: 28px;
    padding: 24px;
    margin-top: 24px;
}

.hm-hero__form.is-hidden {
    display: none;
}

.hm-search-toggle {
    margin-top: 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hm-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.hm-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hm-form-field__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
}

.hm-form-field__control input,
.hm-form-field__control select {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #d9d0bd;
    padding: 12px 16px;
    font-size: 15px;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hm-form-field__control input:focus,
.hm-form-field__control select:focus {
    border-color: var(--hm-green);
    box-shadow: 0 0 0 3px rgba(6, 108, 95, 0.12);
    outline: none;
}

.hm-form-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px dashed rgba(8, 31, 44, 0.08);
}

.hm-quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    padding: 6px 0;
}

.hm-pill {
    border: 1px solid #d9d0bd;
    border-radius: 999px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--hm-ink);
    background: rgba(244, 239, 230, 0.6);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hm-pill input {
    display: none;
}

.hm-pill input:checked + span,
.hm-pill span:only-child {
    color: var(--hm-green);
    font-weight: 700;
}

.hm-pill input:checked + span {
    background: rgba(6, 108, 95, 0.08);
    border-radius: 999px;
}

.hm-search-btn {
    border-radius: 999px;
    padding: 14px 32px;
    font-size: 15px;
}

.hm-hero__card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.hm-hero__image {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hm-hero__card-content {
    position: absolute;
    inset: auto 24px 24px;
    background: rgba(255, 255, 255, 0.9);
    padding: 18px 22px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.hm-stats {
    background: #fff;
}

.hm-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.hm-stat-card {
    background: var(--hm-sand);
    padding: 28px;
    border-radius: 24px;
    border: 1px solid #efe7d7;
    text-align: center;
}

.hm-stat-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(110deg, #772a7c, #f27a54);
    margin: 0 auto 12px;
    display: grid;
    place-items: center;
}

.hm-stat-card h3 {
    font-size: 32px;
    margin-bottom: 4px;
    color: var(--hm-green);
}

.hm-destination {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.hm-destination img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hm-destination__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

.hm-destination:hover img {
    transform: scale(1.05);
}

.hm-property-card {
    position: relative;
    background: radial-gradient(circle at top, rgba(119, 42, 124, 0.08), rgba(6, 108, 95, 0.06)), #ffffff;
    border: 1px solid rgba(13, 15, 35, 0.08);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 18px 55px rgba(7, 0, 37, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.hm-property-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(251, 180, 76, 0.25), rgba(119, 42, 124, 0.35));
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.hm-property-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 65px rgba(6, 10, 24, 0.14);
    border-color: transparent;
}

.hm-property-card:hover::before {
    opacity: 0.25;
}

.hm-property-card__media,
.hm-property-card__body {
    position: relative;
    z-index: 1;
}

.hm-property-card__media {
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.hm-property-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 7, 14, 0.1), rgba(4, 7, 14, 0.45));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.hm-property-card:hover .hm-property-card__media::after {
    opacity: 1;
}

.hm-property-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.hm-property-card:hover .hm-property-card__media img {
    transform: scale(1.08);
}

.hm-property-card__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(6, 108, 95, 0.9);
    color: #fff;
    border-radius: 999px;
    padding: 6px 18px;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(6, 108, 95, 0.35);
}

.hm-fav {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: var(--hm-ink);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
    display: grid;
    place-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hm-fav:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.25);
}

.hm-property-card__body {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 248, 0.9));
}

.hm-property-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--hm-green);
    font-size: 18px;
    font-weight: 600;
}

.hm-property-card__price strong {
    font-size: 28px;
    color: var(--hm-ink);
}

.hm-property-card__price span {
    color: rgba(24, 26, 32, 0.6);
    font-size: 14px;
}

.hm-property-card h3 {
    margin: 0;
    font-size: 22px;
}

.hm-property-card h3 a {
    color: var(--hm-ink);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hm-property-card h3 a:hover {
    color: #066c5f;
}

.hm-property-card__address {
    color: #5d5a68;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hm-property-card__address i {
    color: #f27a54;
}

.hm-property-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hm-property-card__meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(6, 108, 95, 0.1);
    color: #1c202c;
    font-size: 13px;
    font-weight: 600;
}

.hm-property-card__meta li i {
    color: #066c5f;
}

@media (max-width: 991.98px) {
    .hm-property-card__media {
        min-height: 220px;
    }
}

@media (max-width: 575.98px) {
    .hm-property-card {
        border-radius: 26px;
    }

    .hm-property-card__body {
        padding: 22px;
    }
}

.hm-hero__form {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #dfd7c6;
    border-radius: 32px;
    padding: 28px;
    margin-top: 24px;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
    padding: 24px;
    height: 100%;
    border: 1px solid #efe7d7;
}

.hm-hero__form:not(.is-hidden) {
    animation: hmSlideDown 0.35s ease;
}

@keyframes hmSlideDown {
    from {
        transform: translateY(-8px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hm-hero__form-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(8, 31, 44, 0.12);
}

.hm-hero__form-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--hm-gold);
    margin-bottom: 4px;
}

.hm-hero__form-head h3 {
    margin: 0;
    font-size: 24px;
    color: var(--hm-ink);
}

.hm-search-close,
.hm-search-toggle {
    border: none;
    background: var(--hm-sand);
    color: var(--hm-ink);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    padding: 10px 18px;
    box-shadow: 0 10px 30px rgba(6, 108, 95, 0.18);
}

.hm-search-close {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .hm-modal__form {
        padding: 28px;
        border-radius: 24px;
    }

    [data-hm-purpose-tabs] {
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .hm-modal {
        padding: 24px 12px;
        align-items: center;
    }

    .hm-modal__form {
        padding: 22px;
    }

    .hm-hero__form-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hm-form-grid {
        grid-template-columns: 1fr;
    }

    [data-hm-purpose-tabs] {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    [data-hm-purpose-tabs]::-webkit-scrollbar {
        height: 4px;
    }

    .hm-quick-tags {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .hm-quick-tags::-webkit-scrollbar {
        height: 4px;
    }
}

.hm-search-toggle {
    margin-top: 12px;
}

.hm-search-close:hover,
.hm-search-toggle:hover {
    background: var(--hm-green);
    color: #fff;
}

.hm-story {
    background: #fff;
}

.hm-story__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    align-items: stretch;
}

.hm-story__media {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    min-height: 340px;
    height: 100%;
    box-shadow: 0 30px 80px rgba(8, 31, 44, 0.12);
}

.hm-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-story__badge,
.hm-story__stat {
    position: absolute;
    left: 24px;
    right: 24px;
    border-radius: 24px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 35px rgba(8, 31, 44, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hm-story__badge {
    top: 24px;
    font-weight: 600;
    color: var(--hm-ink);
}

.hm-story__badge span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--hm-green);
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

.hm-story__stat {
    bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
}

.hm-story__stat h3 {
    margin: 0;
    font-size: 40px;
    color: var(--hm-green);
}

.hm-story__stat p {
    margin: 0;
    color: #6c6b67;
}

.hm-story__content {
    background: var(--hm-sand);
    border-radius: 34px;
    padding: 40px;
    border: 1px solid #efe7d7;
}

.hm-story__icon-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.hm-story-icon {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    border: 1px solid #efe7d7;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hm-story-icon__badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(6, 108, 95, 0.08);
    color: var(--hm-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hm-story-icon h3 {
    margin: 0 0 4px;
    font-size: 16px;
}

.hm-story-icon p {
    margin: 0;
    font-size: 14px;
    color: #6c6b67;
}

.hm-story__cta {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: #6c6b67;
    font-weight: 600;
}

.hm-story__cta .ud-btn {
    border-radius: 999px;
}

@media (max-width: 575px) {
    .hm-story__content {
        padding: 28px;
    }

    .hm-story-icon {
        flex-direction: column;
    }
}

.hm-why {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(6, 108, 95, 0.06) 100%), var(--hm-sand);
}

.hm-why__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: stretch;
}

.hm-why__content {
    background: #fff;
    border-radius: 32px;
    padding: 36px;
    border: 1px solid #efe7d7;
    box-shadow: 0 30px 70px rgba(8, 31, 44, 0.08);
}

.hm-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-size: 13px;
    color: var(--hm-gold);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hm-eyebrow::before {
    content: '';
    width: 36px;
    height: 1px;
    background: currentColor;
}

.hm-why__lede {
    font-size: 16px;
    color: #5f5b53;
    margin-top: 16px;
}

.hm-why__highlights {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hm-why__highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--hm-ink);
}

.hm-why__highlights span {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(6, 108, 95, 0.08);
    color: var(--hm-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hm-why__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.hm-why-card {
    background: #fff;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid #efe7d7;
    box-shadow: 0 20px 55px rgba(8, 31, 44, 0.06);
    position: relative;
    overflow: hidden;
}

.hm-why-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(6, 108, 95, 0.08);
    pointer-events: none;
}

.hm-why-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(6, 108, 95, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.hm-why-card__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    z-index: 1;
}

.hm-why-card__glyph {
    font-size: 22px;
    color: var(--hm-green);
    z-index: 1;
}

.hm-why-card__pulse {
    position: absolute;
    inset: 6px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 0;
}

.hm-why-card__body h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.hm-why-card__body p {
    margin: 0;
    color: #5a5a5a;
}

@media (max-width: 991px) {
    .hm-why__layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .hm-why__content {
        padding: 28px;
    }

    .hm-why-card {
        padding: 20px;
    }
}

.hm-agent-card__avatar {
    width: 110px;
    height: 110px;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
}

.hm-agent-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-testimonials {
    background: radial-gradient(circle at top, rgba(6, 108, 95, 0.08), rgba(255, 255, 255, 0));
}

.hm-testimonial {
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid #efe7d7;
    height: 100%;
}

.hm-testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

.hm-testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hm-testimonial__author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.hm-journal-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(8, 31, 44, 0.05);
}

.hm-journal-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.hm-journal-card__body {
    padding: 24px;
}

.hm-journal-card__meta {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: #999;
}

.hm-modal .hm-modal__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hm-chip {
    border: 1px solid #e1d6c2;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
}

.hm-chip input {
    display: none;
}

.hm-chip input:checked + span,
.hm-chip span:only-child {
    color: var(--hm-green);
    font-weight: 600;
}

@media (max-width: 991px) {
    .hm-hero__content,
    .hm-hero__card {
        border-radius: 24px;
    }

    .hm-hero__content h1 {
        font-size: 36px;
    }

    .hm-section__heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .hm-form-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hm-search-btn {
        width: 100%;
        text-align: center;
    }
}
