.contact-section {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.contact-section-title {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 10px;
    position: relative;
    z-index: 2;
}

.contact-accent-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    margin: 0 auto 3rem;
    border-radius: 2px;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-items: center;
}

.feedback-form .form-group {
    margin-bottom: 20px;
}

.feedback-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: #3498db;
    outline: none;
}

.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2563EB 0%, #fc785a 100%);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-items: center;
    align-self: center;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(#2563EB 100%);
}
