/* ========================
   ABOUT SECTION STYLES
   ======================== */
.about {
    padding: 40px 0;
    text-align: center;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================
   CONTACT SECTION STYLES
   ======================== */
.contact {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.contact .container {
    max-width: 600px;
}

.contact h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact label {
    font-weight: bold;
    color: #2c3e50;
}

.contact input,
.contact textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.contact button[type="submit"] {
    padding: 12px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact button[type="submit"]:hover {
    background-color: #229954;
}