/* about_contact.css */

/* General Page Styling */
body {
    background-color: #1a1a1a;
    color: #f1f1f1;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container Styling */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    color: #e3e3e3;
}

/* Header Styling */
.about-header h1 {
    text-align: center;
    font-size: 2.5em;
    color: #1f77b4; /* Bright green */
    margin-bottom: 20px;
}

/* Content Styling */
.about-content, .contact-content, .disclaimer {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Feedback Form Styling */
.feedback-form {
    margin-top: 30px;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feedback-form label {
    color: #1f77b4;
    font-weight: bold;
}

.feedback-form input.form-control, .feedback-form textarea.form-control {
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #1f77b4;
    border-radius: 5px;
    padding: 10px;
}

.feedback-form input.form-control:focus, .feedback-form textarea.form-control:focus {
    border-color: #1f77b4;
    background-color: #444444;
}

.feedback-form button.btn {
    background-color: #1f77b4;
    border: none;
    color: #ffffff;
    padding: 10px;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.feedback-form button.btn:hover {
    background-color: #1f77b4;
}

/* Disclaimer Styling */
.disclaimer {
    font-size: 0.9em;
    color: #aaaaaa;
    text-align: center;
    padding-top: 20px;
}
