.hb-hero-container {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    padding: 60px 4%;
}

.hb-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hb-video-wrap {
    overflow: hidden;
}

.hb-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hb-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 60vh;
}

.hb-pre-title {
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 30px;
}

.hb-title {
    font-family: \"Playfair Display\", \"Didot\", \"Georgia\", serif;
    font-size: clamp(32px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 auto 0;
    max-width: 900px;
}

.hb-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.hb-btn-left {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #3cb371;
    color: #3cb371;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.hb-btn-left:hover {
    background-color: rgba(60, 179, 113, 0.1);
}

.hb-btn-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1ed760;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hb-btn-right:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 215, 96, 0.4);
}

.hb-btn-right svg,
.hb-btn-right i {
    width: 18px;
    height: 18px;
    fill: currentColor;
    font-size: 18px;
}

/* Alignment classes dynamically added via prefix_class */
.hb-align-left .hb-hero-content {
    align-items: flex-start;
}
.hb-align-left .hb-title {
    text-align: left;
    margin-right: auto;
    margin-left: 0;
}
.hb-align-left .hb-pre-title {
    text-align: left;
}
.hb-align-left .hb-bottom-row {
    justify-content: space-between;
}

.hb-align-center .hb-hero-content {
    align-items: center;
}
.hb-align-center .hb-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.hb-align-center .hb-pre-title {
    text-align: center;
}
.hb-align-center .hb-bottom-row {
    justify-content: center;
    gap: 30px;
}

.hb-align-right .hb-hero-content {
    align-items: flex-end;
}
.hb-align-right .hb-title {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}
.hb-align-right .hb-pre-title {
    text-align: right;
}
.hb-align-right .hb-bottom-row {
    justify-content: flex-end;
    gap: 30px;
}

@media (max-width: 768px) {
    .hb-hero-content {
        min-height: auto;
    }
    .hb-bottom-row {
        flex-direction: column;
    }
    .hb-align-left .hb-bottom-row {
        align-items: flex-start;
    }
    .hb-align-center .hb-bottom-row {
        align-items: center;
    }
    .hb-align-right .hb-bottom-row {
        align-items: flex-end;
    }
}
