<style>
/* General Styling */
body {
    font-family: Arial, sans-serif;
    color: #2d3436;
    background-color: #f5f5f5;
}

.content {
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrap {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #0984e3;
}

.support-toggle {
    border-bottom: 1px solid #dfe6e9;
    padding: 15px;
    background-color: #e8f4fd;
    transition: background-color 0.3s ease;
}

.support-toggle:hover {
    background-color: #d6eaf8;
}

.toggle-header {
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    transition: transform 0.4s ease;
}

.open .toggle-icon {
    transform: rotate(180deg);
}

.support-form {
    display: none;
    padding: 20px;
}

/* Form Styling */
form .form-control {
    border: 2px solid #dfe6e9;
    border-radius: 30px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

form .form-control:focus {
    border-color: #74b9ff;
    background-color: #ffffff;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    outline: none;
}

form label.col-form-label {
    font-weight: bold;
    color: #2d3436;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

form .btn-primary {
    background-color: #0984e3;
    border-color: #0984e3;
    border-radius: 30px;
    padding: 12px 25px;
    font-size: 16px;
    transition: background-color 0.3s ease-in-out;
}

form .btn-primary:hover {
    background-color: #74b9ff;
    border-color: #74b9ff;
}

.form-group .form-control::placeholder {
    color: #b2bec3;
    opacity: 1;
}

form .form-control:focus::placeholder {
    opacity: 0;
}

ul.list-unstyled li.d-flex {
    align-items: center;
    margin-bottom: 15px;
}

ul.list-unstyled li .wrap-icon {
    background-color: #0984e3;
    color: white;
    padding: 10px;
    border-radius: 50%;
    margin-right: 15px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0984e3;
}
</style>