.contact-section {
    padding: 80px 20px;
    background: #f9f9f9;
    color: #333;
}

.contact-section .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-section h2 {
    font-size: 2em;
    color: #0085cc;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 1em;
}

.submit-btn {
    background: #0085cc;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #005f99;
}

.contact-info h3 {
    margin-bottom: 10px;
    font-size: 1.6em;
    color: #0085cc;
}

.contact-info p {
    margin: 5px 0;
    font-size: 1em;
}
