body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    background: linear-gradient(115deg,#25bb43 10%,#9f01ea 90%);
}

.help-center {
    padding: 50px;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
    color: white;
    font-size: 20px;
}

.contact-container {
  
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between items */
}

.contact-item {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between icon and text */
    background-color: #ffffff;
    /* padding: 10px; */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.contact-item:hover {
    background-color: #e9ecef;
}

.contact-item a {
    text-decoration: none;
    color: #090a0b; /* Link color */
    font-size: 20px;
}

.contact-item a:hover {
    text-decoration: none;
    color: #000;
}
