.hero-wrapper-dff9e296 {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 60px 40px;
    box-sizing: border-box;
    overflow: hidden;
    font-family: sans-serif;
    color: #fff;
    min-height: 90vh;
}

.hero-bg-dff9e296,
.hero-overlay-dff9e296 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-dff9e296 {
    background-color: #0b1a2d;
    background-size: cover;
    background-position: center;
}

.hero-overlay-dff9e296 {
    background: linear-gradient(to bottom, rgba(11,26,45,0) 0%, rgba(11,26,45,0.8) 100%);
    z-index: 2;
}

.hero-content-dff9e296 {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.hero-main-col-dff9e296 {
    max-width: 600px;
    flex: 1 1 500px;
}

.hero-subtitle-dff9e296 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.hero-title-dff9e296 {
    font-family: "Playfair Display", serif;
    font-size: 64px;
    line-height: 1.1;
    font-weight: 400;
    font-style: italic;
    margin: 0 0 24px;
    color: #ffffff;
}

.hero-desc-dff9e296 {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 40px;
    color: #f1f5f9;
}

.hero-actions-dff9e296 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn-dff9e296 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-primary-dff9e296 {
    background-color: #f98858;
    color: #ffffff;
    border: 2px solid #f98858;
}
.hero-btn-primary-dff9e296:hover {
    background-color: transparent;
    color: #f98858;
}

.hero-btn-outline-dff9e296 {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
}
.hero-btn-outline-dff9e296:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
}

.hero-stats-col-dff9e296 {
    display: flex;
    gap: 40px;
    border-left: 1px solid rgba(255,255,255,0.2);
    padding-left: 40px;
}

.stat-item-dff9e296 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-num-dff9e296 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    line-height: 1;
    color: #ffffff;
}

.stat-label-dff9e296 {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #cbd5e1;
}

@media (max-width: 991px) {
    .hero-content-dff9e296 {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-stats-col-dff9e296 {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 40px;
        width: 100%;
        justify-content: flex-start;
    }
}
@media (max-width: 767px) {
    .hero-title-dff9e296 {
        font-size: 48px;
    }
    .hero-stats-col-dff9e296 {
        flex-wrap: wrap;
        gap: 20px;
    }
}