body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fa;
    color: #222;
}

.news-container {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    margin-top:160px;
}

/* Image Section */
.news-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Content Section */
.news-content {
    padding: 30px 40px;
}

.news-content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.news-date {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
}

.news-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.news-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 22px;
}

.news-content ul {
    padding-left: 20px;
}

.news-content ul li {
    font-size: 16px;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .news-image img {
        height: 250px;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h1 {
        font-size: 24px;
    }
}
@media (max-width: 576px) {
    .news-container{
        margin-top: 120px;
    }
}
