/* ===== CONTACT SECTION ===== */
.contact {
    background: #e9e9e9;
    padding: 60px 0;
    margin: 60px 0;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: #f9f9f9;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== CONTACT INFO ===== */
.contact-info {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.contact-info h3 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-info .info-item {
    text-align: center;
}

.contact-info .info-item i {
    font-size: 30px;
    color: #333;
    margin-bottom: 15px;
}
