:root {
    --vp-blue-rgb: 0, 163, 163;
    --vp-blue: rgb(var(--vp-blue-rgb));
    --vp-light-blue: #e6f2ff;
    --vp-blue-drak-rgb: 0, 120, 128;
    --vp-dark-blue: rgb(var(--vp-blue-drak-rgb));
    --vp-accent: var(--brand-color);
}

section.contact-banner{
    height: 450px;
    color:#fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,.3);
    .text-box{
        background: rgba(0,0,0,.3);
        .text-box-inner{
            top:40%;
            text-align: center;
            padding: 0 3em;
        }
    }
    h1{
        font-size: 1.8em;
        font-weight: 700;
        line-height: 2.5em;
    }
    .lead{
        max-width: 700px;
    }
}

button.pop-form-btn{
    background: var(--brand-color);
    border-color:var(--brand-color-light);
    color:#fff;
}

.vp-header {
    color: #fff;
    padding: 3rem 0;
    border-radius: 0 0 20px 20px;
}

.vp-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    &.quick-support{
        margin-top: 6rem;
    }
}

.vp-section:hover {
    transform: translateY(-5px);
}

.vp-icon {
    width: 50px;
    height: 50px;
    background-color: var(--vp-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vp-icon i {
    color: var(--vp-blue);
    font-size: 1.5rem;
}

.vp-contact-method {
    padding: 1.5rem;
    border-radius: 10px;
    background-color: var(--vp-light-blue);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.vp-contact-method:hover {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.vp-contact-method a {
    color: var(--vp-dark-blue);
    text-decoration: none;
    font-weight: 600;
}

.vp-contact-method a:hover {
    color: var(--vp-accent);
    text-decoration: underline;
}

.vp-benefit-item {
    padding: 1rem;
    border-left: 3px solid var(--vp-blue);
    background-color: var(--vp-light-blue);
    margin-bottom: 0.75rem;
    border-radius: 0 8px 8px 0;
}

.vp-faq-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.vp-faq-header {
    background-color: var(--vp-light-blue);
    border: none;
}

.vp-faq-header button {
    font-weight: 600;
    color: var(--vp-dark-blue);
}

.vp-testimonial {
    border-left: 4px solid var(--vp-accent);
    padding: 1.5rem;
    background-color: white;
    margin-bottom: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.vp-testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.vp-tech-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.vp-tech-icon {
    width: 40px;
    height: 40px;
    background-color: var(--vp-light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.vp-tech-icon i {
    color: var(--vp-blue);
}

.btn-vp-primary {
    background-color: var(--vp-blue);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    border: none;
}

.btn-vp-primary:hover {
    background-color: var(--vp-dark-blue);
    color: white;
}

.vp-highlight {
    color: var(--vp-accent);
    font-weight: 600;
}

h2, h3 {
    color: var(--vp-dark-blue);
}

.vp-section-title {
    position: relative;
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.vp-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--vp-accent);
    border-radius: 2px;
}