<file-changes>
.contact {
    background-color: white;
    padding: 3rem 1rem;
    margin-bottom: 1rem;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    padding: 2rem;
    border-radius: 10px;
}

.contact-details h3,
.contact-social h3 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.contact-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.contact-details p i,
.contact-social i {
    margin-right: 10px;
    color: var(--light-blue);
}

.contact-social .social-icons {
    display: flex;
    gap: 1rem;
}

.contact-social .social-icons a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color var(--transition-speed);
}

.contact-social .social-icons a:hover {
    color: var(--light-blue);
}

.contact-form {
    flex: 1;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--light-blue);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.submit-btn:hover {
    background-color: var(--accent-color);
}

@media screen and (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}
</file-changes>

