  /* Contact Section Styling */
  .contact-section {
    padding: 80px 20px;
    background-color: #eaeaea;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: bold;
}

.contact-section p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-group label {
    display: block;
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3498db;
}

.submit-btn {
    width: 100%; /* Make the button wider */
    padding: 15px;
    background-color: #3498db;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;
    text-transform: uppercase;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.form-status {
    margin-top: 20px;
    font-size: 1rem;
    color: #e74c3c;
    font-weight: bold;
}

.success-message {
    color: #2ecc71;
}
