/* Base Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #DFFDFD; 
            color: #333;
            margin: 0;
            padding: 0px;
        }

        .article-main-content {
            padding: 40px;
        }

        .container {
            max-width: 1100px;
            margin: 30px auto 30px auto;
            width: 90%;
        }

        .container a {
            text-decoration: none;
            color: inherit;
        }

        /* Link Transitions */
        .news-grid a, .hero a {
            text-decoration: none;
            color: inherit;
            display: block;
            transition: transform 0.2s, opacity 0.2s;
        }

        .news-grid a:hover, .hero a:hover {
            transform: translateY(-5px);
            opacity: 0.8;
        }

        /* Top Hero Section */
        .hero {
            display: flex;
            align-items: center;
            gap: 40px;
            margin-bottom: 40px;
        }

        .hero-text { flex: 1; }
        .hero-text h1 {
            font-size: 2.8rem;
            margin: 0 0 20px 0;
            font-weight: bold;
        }

        .hero-text p {
            font-size: 1.8rem;
            line-height: 1.2;
            font-weight: 500;
        }

        .hero-image { flex: 1; }
        .hero-image img {
            width: 100%;
            border-radius: 4px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* Divider */
        hr {
            border: 0;
            border-top: 2px solid #aebfc2;
            margin: 40px 0;
        }

        h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            font-weight: bold;
        }

        /* News Grid Layout */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .news-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 15px;
        }

        .news-item h3 {
            font-size: 1.1rem;
            margin: 0;
            line-height: 1.4;
            font-weight: 600;
        }

        /* Button Styling */
        .btn {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 20px;
            background-color: #007bff;
            color: white;
            border-radius: 5px;
            font-weight: bold;
        }

        /* Mobile View Optimization */
        @media (max-width: 768px) {
            body { padding: 20px; }
            .hero { flex-direction: column; text-align: center; }
            .news-grid { grid-template-columns: 1fr; }
        }