.hero-container-1b354c61 {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    width: 100%;
}

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

.hero-inner-1b354c61 {
    width: 100%;
    max-width: 1400px; /* Overridden by inline style from slider, with !important */
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.hero-content-1b354c61 {
    width: 100%;
    max-width: 700px; /* Overridden by inline style from slider */
}

.hero-subtitle-1b354c61 {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #333;
    font-weight: 600;
}

.subtitle-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #333;
    margin-right: 15px;
}
.subtitle-line.mobile-only {
    display: none;
}

.hero-title-1b354c61 {
    margin: 0 0 25px 0;
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-desc-1b354c61 {
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    max-width: 90%;
}

.hero-buttons-1b354c61 {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    flex-direction: row; /* Ensure row direction even if not explicitly needed on desktop */
}

.hero-btn-1b354c61 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.hero-btn-1b354c61.btn-1 {
    background-color: #002b5c;
    color: #fff;
    border-radius: 4px;
}

.hero-btn-1b354c61.btn-1 .btn-icon {
    margin-left: 10px;
}

.hero-btn-1b354c61.btn-2 {
    background-color: transparent;
    color: #002b5c;
    border: 1px solid #002b5c;
    border-radius: 4px;
}

.hero-features-1b354c61 {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.hero-feature-1b354c61 {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #555;
}

.feature-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #999;
    color: #999;
    font-size: 10px;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .hero-container-1b354c61 {
        padding: 60px 0; /* Reduced padding on mobile */
    }

    .hero-content-1b354c61 {
        text-align: center;
        max-width: 100% !important; /* Force full width on mobile */
    }

    .hero-subtitle-1b354c61 {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .subtitle-line {
        margin-right: 10px;
    }
    .subtitle-line.mobile-only {
        display: inline-block;
        margin-left: 10px;
        margin-right: 0;
    }

    .hero-title-1b354c61 {
        font-size: 36px; /* Smaller title on mobile */
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-desc-1b354c61 {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }
    
    .hero-inner-1b354c61 {
        padding: 0 20px;
    }

    .hero-buttons-1b354c61 {
        justify-content: center;
        flex-direction: row; /* Enforce side-by-side */
        gap: 10px; /* Reduced gap */
    }

    .hero-btn-1b354c61 {
        padding: 10px 15px; /* Smaller buttons */
        font-size: 13px;
        flex: 1 1 auto; /* Allow buttons to grow and fill available space side-by-side */
        white-space: nowrap; /* Prevent text wrapping inside buttons if possible */
    }

    .hero-features-1b354c61 {
        justify-content: center;
    }
}