.banner{
    width: 100%;
    height: 400px;
    background-image: url("../img/newsbanner.jpg");
    background-size: cover;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.banner h2{
    margin-top: 160px;
    font-size: 32px;
    margin-bottom: 40px;
}
.banner p{
    margin-top: 10px;
    font-size: 20px;
}
.news-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.news-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 30px;
    color: white;
}

.news-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    color: #999;
    font-size: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 8px;
    color: #93c5fd;
}

.news-content {
    padding: 30px;
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

.news-content p {
    margin-bottom: 25px;
}

.section-title {
    font-size: 20px;
    color: #1e40af;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dbeafe;
}

.key-points {
    background: #eff6ff;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #3b82f6;
}

.key-points ul {
    padding-left: 20px;
}

.key-points li {
    margin-bottom: 12px;
}

.navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
}

.nav-btn {
    padding: 12px 25px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(37, 99, 235, 0.3);
}

.prev-btn i {
    margin-right: 10px;
}

.next-btn i {
    margin-left: 10px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    margin: 30px 0 20px;
    padding: 10px 20px;
    background: white;
    border: 1px solid #3b82f6;
    border-radius: 6px;
    text-decoration: none;
    color: #3b82f6;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-btn i {
    margin-right: 8px;
}

.back-btn:hover {
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.2);
}

.news-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #93c5fd 0%, #bfdbfe 100%);
    margin: 25px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e40af;
    border-radius: 8px;
    font-style: italic;
}