body {
            background-color: #f8f9fa;
            font-family: Arial, sans-serif;
        }
        .article-container {
            background: white;
            border-radius: 8px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }
        .article-image {
            position: relative;
            width: 100%;
            max-height: 45vh;
            object-fit: cover;
            border-radius: 5px;
        }
        .overlay-text {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 10px 15px;
            font-weight: bold;
            font-size: 1.2rem;
            border-radius: 5px;
        }
        .article-meta {
            font-size: 0.9rem;
            color: gray;
        }
        .article-meta a {
            color: #007bff;
            text-decoration: none;
            font-weight: bold;
        }
        .article-meta a:hover {
            text-decoration: underline;
        }
        h4 {
            font-weight: bold;
            margin-top: 20px;
        }
        p {
            text-align: justify;
        }

@media (max-width: 576px) {
    footer p {
        text-align: center !important;
    }
}