.premium-hero-1651-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

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

.premium-hero-1651-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}

.premium-hero-1651-location {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-hero-1651-title {
    margin: 0 0 20px;
    line-height: 1.2;
}

.premium-hero-1651-subtitle {
    margin: 0 0 32px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
}

/* Specific alignment adjustment for max-width to center block properly when text-align is center */
.premium-hero-1651-content[style*="text-align: center"] .premium-hero-1651-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.premium-hero-1651-buttons {
    display: flex;
    flex-wrap: wrap;
}

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

.premium-hero-1651-btn-primary:hover {
    opacity: 0.9;
}

.premium-hero-1651-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .premium-hero-1651-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .premium-hero-1651-btn {
        width: 100%;
    }
}