/* Custom form container */
#custom-form {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    max-width: 800px;
    margin: 20px auto;
}

/* Form elements inside #custom-form */
#custom-form .form-control {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
}

/* Form labels */
#custom-form .form-group h5 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

/* Submit button styling */
#custom-form .btn-primary {
background-color: #5c895c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

/* Button hover effect */
#custom-form .btn-primary:hover {
    background-color: #0056b3;
}

/* Contact info styling */
#custom-form .info-wrap {
    background-color: #343a40;
    color: white;
    padding: 20px;
    border-radius: 5px;
}

/* Form header */
#custom-form h3 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

/* Error messages */
#custom-form span[data-val="true"] {
    color: red;
    font-size: 14px;
}

/* Set specific styles for mobile */
@media (max-width: 768px) {
    #custom-form {
        padding: 15px;
    }

    #custom-form .form-group h5 {
        font-size: 16px;
    }

    #custom-form .btn-primary {
        font-size: 16px;
    }
}
