.ph-1374-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;
}

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

.ph-1374-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.ph-1374-location {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.ph-1374-title {
    font-size: 56px;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.ph-1374-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.ph-1374-buttons {
    display: flex;
    flex-wrap: wrap;
}

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

.ph-1374-btn-secondary {
    border: 1px solid;
}

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