.ph-1342-wrapper {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

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

.ph-1342-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 60px 20px;
    margin: 0 auto;
    width: 100%;
}

.ph-1342-title {
    margin: 0 0 24px;
    font-family: serif;
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 400;
}

.ph-1342-subtitle {
    margin: 0 0 40px;
    font-family: sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 300;
}

.ph-1342-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ph-1342-btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.ph-1342-btn-primary {
    border: 1px solid transparent;
}

.ph-1342-btn-primary:hover {
    opacity: 0.9;
}

.ph-1342-btn-secondary {
    background-color: transparent;
    border: 1px solid;
}

.ph-1342-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .ph-1342-wrapper {
        min-height: 70vh;
    }
    
    .ph-1342-title {
        font-size: 2.5rem;
    }
    
    .ph-1342-subtitle {
        font-size: 1.125rem;
    }
    
    .ph-1342-actions {
        flex-direction: column;
        gap: 16px;
    }
    
    .ph-1342-btn {
        width: 100%;
        text-align: center;
    }
}