
/* General Styling */
.support-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}
.support-section .conform {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.inquiry-form {
    max-width: 600px; /* Adjust width if needed */
    width: 100%;
}


/* Info Details & Form Container */
.info-box {
    min-height: 100%; /* Ensures both boxes are the same height */
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Icon Styling */
.info-icon {
 
    color: #610095;
    display: flex;
    align-items: center;
    justify-content: center;
  
    font-size: 18px;
}

/* Info Details */
.info-details {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-details .info-text {
    margin-left: 15px;
}

.info-text h5 {
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

/* Inquiry Form */
.inquiry-form input,
.inquiry-form textarea {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: #610095;
    box-shadow: 0 0 10px rgba(97, 0, 149, 0.3);
}

.inquiry-form button {
    border-radius: 10px;
    background: #610095;
    border: none;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.inquiry-form button:hover {
    background: #4d0077;
}


