.sh-1408-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

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

.sh-1408-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.sh-1408-location {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.sh-1408-title {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 25px 0;
}

.sh-1408-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.sh-1408-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: inherit;
}

.sh-1408-content[style*="text-align: center"] .sh-1408-buttons { justify-content: center; }
.sh-1408-content[style*="text-align: right"] .sh-1408-buttons { justify-content: flex-end; }
.sh-1408-content[style*="text-align: left"] .sh-1408-buttons { justify-content: flex-start; }

.sh-1408-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sh-1408-btn-secondary {
    border: 1px solid;
}

@media (max-width: 767px) {
    .sh-1408-title {
        font-size: 40px;
    }
    
    .sh-1408-subtitle {
        font-size: 18px;
    }
    
    .sh-1408-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .sh-1408-btn {
        width: 100%;
    }
}