/* feedback.css */
:root {
    --primary-color: #2c5282;
    --secondary-color: #3182ce;
    --light-color: #f7fafc;
    --dark-color: #2d3748;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* 导航栏 */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    transition: color var(--transition-speed);
    padding: 1rem 1.5rem;
}

.nav-link:hover, .nav-link.active {
    color: var(--secondary-color);
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    font-weight: 400;
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background-color: rgba(44, 82, 130, 0.1);
}

/* 主要内容区 */
.feedback-section {
    padding: 2rem 0;
}

.section-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-description {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.form-title {
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-label {
    font-weight: 500;
}

/* 表单按钮样式 */
.btn-primary {
    background-image: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-speed);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.2);
    width: 100%;
}

.btn-primary:hover {
    background-image: linear-gradient(120deg, #66a6ff 0%, #3399ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(44, 82, 130, 0.3);
}

/* 版权信息栏 */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
    margin-top: 3rem;
}

.footer-logo {
    margin-top: 1rem;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-bottom: 0.8rem;
    color: #cbd5e0;
}

.copyright a {
    color: #cbd5e0;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
    color: white;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-description {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .btn-primary {
        width: 100%;
        padding: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
}