.hpv2-wrapper {
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.hpv2-container {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
}

.hpv2-content {
    display: flex;
    flex-direction: column;
    max-width: 800px;
}

.hpv2-title {
    margin: 0 0 15px 0;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hpv2-subtitle {
    margin: 0 0 25px 0;
    font-size: 1.5rem;
    line-height: 1.4;
}

.hpv2-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.hpv2-breadcrumbs .hpv2-active {
    color: #ffffff;
    font-weight: 600;
}

.hpv2-buttons {
    display: flex;
    gap: 15px;
    justify-content: inherit;
}

.hpv2-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hpv2-btn-primary {
    background-color: #3b82f6;
    color: #ffffff;
}

.hpv2-btn-primary:hover {
    background-color: #2563eb;
}

.hpv2-btn-secondary {
    background-color: rgba(255,255,255,0.2);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
}

.hpv2-btn-secondary:hover {
    background-color: rgba(255,255,255,0.3);
}

@media (max-width: 1024px) {
    .hpv2-title {
        font-size: 2.25rem;
    }
    .hpv2-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .hpv2-title {
        font-size: 1.75rem;
    }
    .hpv2-subtitle {
        font-size: 1.1rem;
    }
    .hpv2-container {
        padding: 20px;
    }
}
