/* Contact Section */
.contact-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-section h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-size: 16px;
    font-weight: bold;
    color: #555;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: -10px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #c7bfbf;
    border-radius: 5px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    transition: border 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgb(255, 150, 150);
    outline: none;
    box-shadow: 0 0 5px rgba(247, 247, 247, 0.5);
}

.submit-btn {
    background-color: rgb(232, 197, 197);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: rgb(200, 120, 120);
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}