/* Header Styles */
.header-top {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-top .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-icons {
    display: flex;
    align-items: center;
}

.header-icons-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-logo {
    height: 60px;
}

.header-icon {
    height: 70px;
}

.header-main {
    background: #f5f5f5;
    padding: 20px 0;
}

.header-main .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    margin: 0 100px;
}

.logo img {
    max-height: 60px;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* Sticky Footer Setup */
html, body {
    height: 100%;
}

.main-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
}

/* News Detail Page Styles */
.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.news-detail {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 30px;
}

.news-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.news-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-meta {
    color: #666;
    font-size: 14px;
}

.news-meta span {
    margin-right: 20px;
}

.news-content {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.news-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.news-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: #fff;
    padding: 60px 0 20px;
    border-top: none;
    margin-top: auto;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-nav {
    flex: 1;
    min-width: 200px;
}

.footer-nav h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-nav a {
    color: #e5e7eb;
    text-decoration: none;
}

.footer-nav a:hover {
    color: #ff6633;
}

.footer-contact h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-contact p {
    color: #e5e7eb;
    margin: 8px 0;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.qr-item p {
    color: #e5e7eb;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #e5e7eb;
    font-size: 14px;
}

.copyright a {
    color: #e5e7eb;
    text-decoration: none;
}

.copyright a:hover {
    color: #ff6633;
}

.back-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #ff6633;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #e65c2e;
    transform: translateY(-2px);
}

.error-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.error-message p {
    margin-bottom: 20px;
    font-size: 16px;
}
