/* General Styles */  section {
            padding: 20px;
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        article, .image-box {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            text-align: justify;
        }
        article h2 {
            color: #e67e22;
        }
        article p {
            margin: 0;
        }
        a {
            color: #3498db;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .image-box img {
            width: 100%;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            section {
                grid-template-columns: 1fr;
            }
        }

/* Header */
.site-header {
    background-color: #8B0000; /* Dark red */
    color: #fff; /* White */
    padding: 20px;
    text-align: center;
}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
.site-header, nav, .main-article, .recent-news, .sub-news, .sports-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
/* Navigation Menu */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333; /* Dark gray */
    padding: 10px 20px;
}

.menu-left {
    font-size: 1.1em;
    color: #fff; /* White */
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: #fff; /* White */
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #ff4757; /* Red */
}

/* Main Article */
.main-article {
    flex: 2;
    margin-right: 20px;
}

.main-article h1 {
    font-size: 2.5em;
    color: #8B0000; /* Dark red */
}

.main-article .article-img img {
    width: 100%;
    border-radius: 10px;
}

.main-article p {
    text-align: justify;
}

.quote {
    font-style: italic;
    color: #555;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 4px solid #8B0000; /* Dark red */
}

.video-container {
    margin: 20px 0;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 10px;
}

/* Recent News Box */
.recent-news {
    flex: 1;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.recent-news h2 {
    color: #8B0000; /* Dark red */
    margin-bottom: 15px;
}

.recent-news .news-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.recent-news .news-item:last-child {
    border-bottom: none;
}

.recent-news .news-item h3 {
    color: #333;
}

.recent-news .news-item a {
    color: #8B0000; /* Dark red */
    text-decoration: none;
    font-weight: bold;
}

.recent-news .news-item a:hover {
    text-decoration: underline;
}

/* Sub-News Section */
.sub-news {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}

.sub-news-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    transition: transform 0.3s ease;
}

.sub-news-item:hover {
    transform: translateY(-10px);
}

.sub-news-item img {
    width: 100%;
    border-radius: 10px;
}

.sub-news-item h3 {
    color: #8B0000; /* Dark red */
    margin-top: 10px;
}

.sub-news-item p {
    text-align: justify;
}

.sub-news-item a {
    color: #8B0000; /* Dark red */
    text-decoration: none;
    font-weight: bold;
}

.sub-news-item a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.site-footer a:hover {
    text-decoration: underline;
}
/* Sports Section */
.sports-section {
    margin: 20px 0;
}

.sports-section h2 {
    color: #8B0000; /* Dark red */
    margin-bottom: 15px;
}

.sports-item {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.sports-item img {
    width: 100%;
    border-radius: 10px;
}

.sports-item h3 {
    color: #8B0000; /* Dark red */
    margin-top: 10px;
}

.sports-item p {
    text-align: justify;
}

.sports-item a {
    color: #8B0000; /* Dark red */
    text-decoration: none;
    font-weight: bold;
}

.sports-item a:hover {
    text-decoration: underline;
}