.support-card {
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: #ffffff;
}
.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-color: #1e3265;
}
.icon-circle {
    width: 50px;
    height: 50px;
    background: #2a56cc;
    color: #1e3265;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.contact-sidebar {
    background: #1e3265;
    color: white;
    border-radius: 15px;
    padding: 30px;
}
.form-control:focus {
    border-color: #1e3265;
    box-shadow: none;
}

h5 {
    color: #1e3265;
}