/* Feedback Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Base font size for rem calculations */
}

body {
    font-family: Arial, sans-serif;
    background-color: #e6f2ff;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Common elements */
h1 {
    font-size: clamp(1.5rem, 5vw, 2.5rem); /* Responsive font size */
    margin-bottom: 0.625rem;
    border-bottom: 2px solid #4d94ff;
    padding-bottom: 0.625rem;
    display: inline-block;
}

h2 {
    color: #0066cc;
    margin-bottom: 0.9375rem;
    padding-bottom: 0.625rem;
    border-bottom: 2px solid #4d94ff;
    font-size: clamp(1.3rem, 4vw, 2rem);
}

h3 {
    color: #0066cc;
    margin-bottom: 0.625rem;
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
}

p {
    margin-bottom: 0.9375rem;
    line-height: 1.8;
}

a {
    color: #0066cc;
    text-decoration: none;
}

/* Page Specific Styles */
.page-header {
    border-bottom: 2px solid #4d94ff;
    color: #0066cc;
    text-align: center;
    padding: 1.5625rem 1.875rem;
    margin: 1.25rem auto;
    width: 100%;
}

.breadcrumb {
    font-size: 0.875rem;
    color: #0066cc;
}

.feedback-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.feedback-intro {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
}

.feedback-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-row input[type="text"]:focus,
.form-row input[type="email"]:focus,
.form-row textarea:focus {
    border-color: #4d94ff;
    outline: none;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.3s;
    margin-right: 5px;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #4d94ff;
}

.rating-stars input:checked + label {
    color: #4d94ff;
}

.submit-btn {
    background-color: #4d94ff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
}

.submit-btn:hover {
    background-color: #0066cc;
}

.submit-btn i {
    margin-right: 8px;
}

.feedback-info {
    background-color: #f5f7fa;
    padding: 20px;
    border-radius: 8px;
}

.feedback-info h3 {
    color: #0066cc;
    border-bottom: 2px solid #4d94ff;
    padding-bottom: 10px;
    margin-top: 0;
}

.feedback-info ul {
    list-style: none;
    padding: 0;
}

.feedback-info li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.feedback-info li i {
    color: #4d94ff;
    margin-right: 10px;
}

.contact-alternative {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.contact-alternative p {
    margin: 8px 0;
    display: flex;
    align-items: center;
}

.contact-alternative i {
    width: 20px;
    margin-right: 10px;
    color: #4d94ff;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    margin-right: 10px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feedback-content {
        padding: 10px;
    }
    
    .feedback-form {
        padding: 20px;
    }
    
    .rating-stars label {
        font-size: 20px;
    }
}