.news-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-detail-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-detail-header {
    margin-bottom: 40px;
}

.news-detail-title {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-detail-date {
    font-size: 16px;
    color: #999;
    margin-bottom: 20px;
}

.news-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.image {
    width: 100%;
}

.news-detail-content {
    line-height: 1.8;
    color: #333;
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 20px;
    color: #333;
}

.news-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.news-detail-content li {
    margin-bottom: 10px;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #004080;
}

@media (max-width: 768px) {
    .hero {
        display: none;
    }

    .news-detail-section {
        padding: 40px 0;
    }

    .news-detail-title {
        font-size: 24px;
    }

    .news-detail-image {
        height: 250px;
    }
}