body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #222;
    color: #fff;
}

.hero-section {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: normal;
}

.articles-section {
    background-color: #222;
    padding: 50px 20px;
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.article-card {
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.article-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ffc107;
    color: #333;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.article-content {
    padding: 20px;
}

.article-title {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.article-excerpt {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-size: 12px;
    color: #888;
}

.article-date, .article-comments {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .articles-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-container {
        grid-template-columns: 1fr;
    }
}
a{
    text-decoration: none !important;
    color: #fff;
}