
.contact .content {
    max-width: 1200px;
    margin:100px  auto;
}
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
h2 {
    color: #0b44a8;
    margin-bottom: 40px;
    font-weight: 500;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
    margin: 20px;
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.divider {
    margin: 20px 0;
    border: 0;
    height: 2px;
    background: linear-gradient(to right, #0056b3, #d9534f);
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 15px;
}
.social-icons a  i {
    color: #0b44a8;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    font-size: 1em;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button {
    font-size: 1.2em;
    padding: 15px;
    background-color: #0056b3;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #4a99ee;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column-reverse;
        padding: 20px;
    }

    .contact-info,
    .contact-form {
        margin: 10px 0;
    }
}