.elementor-3907 .elementor-element.elementor-element-5c2b31b{--display:flex;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-bfabad6 *//* SECTION */
.consultation-section {
    background: linear-gradient(135deg, #16215B, #2C81B6);
    padding: 80px 20px;
    text-align: center;
}

/* CONTAINER */
.consultation-container {
    max-width: 900px;
    margin: 0 auto;
}

/* TITLE */
.consultation-section h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* TEXT */
.consultation-section p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto 35px;
}

/* FORM */
#gpaForm {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* ROW */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

/* INPUTS */
.form-row input,
.form-row textarea {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.form-row textarea {
    min-height: 120px;
    resize: none;
}

/* BUTTON */
#gpaForm button {
    width: 100%;
    padding: 14px;
    background: #16215B;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

#gpaForm button:hover {
    background: #2C81B6;
}

/* SUCCESS MESSAGE (IMPORTANT FIX) */
#successMsg {
    display: none;
    margin-top: 15px;
    color: #00ff88;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .consultation-section h2 {
        font-size: 32px;
    }
}/* End custom CSS */