/* ATC Feedback Form - Custom Styles */

.feedback-page-section {
    background-color: #f9f0e1;
    padding: 60px 20px;
    min-height: calc(100vh - 300px);
}

.feedback-container {
    max-width: 800px;
    margin: 0 auto;
}

.feedback-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 50px;
    margin: 50px 0 0 0;
}

.feedback-header-text {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 5px solid #017b3d;
    margin-bottom: 40px;
}

.feedback-header-text p {
    margin: 0 0 15px 0;
    line-height: 1.8;
}

.feedback-header-text p:last-child {
    margin-bottom: 0;
    color: #666;
    font-size: 0.95rem;
}

.feedback-field {
    margin-bottom: 25px;
}

.feedback-field label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1rem;
}

.feedback-field input[type="text"],
.feedback-field input[type="email"],
.feedback-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.feedback-field input:focus,
.feedback-field textarea:focus {
    outline: none;
    border-color: #017b3d;
}

.feedback-field small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 0.85rem;
}

.feedback-field textarea {
    resize: vertical;
    min-height: 150px;
}

.feedback-submit-area {
    margin-top: 35px;
    text-align: center;
}

.feedback-submit-btn {
    background-color: #cd1125;
    color: white;
    border: none;
    padding: 15px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-submit-btn:hover {
    background-color: #a00e1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(205, 17, 37, 0.3);
}

.feedback-message-box {
    margin-top: 25px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .feedback-card {
        padding: 30px 20px;
    }
    
    .feedback-header-text {
        padding: 20px;
    }
    
    .feedback-submit-btn {
        width: 100%;
        padding: 15px 20px;
    }
}
