        *{
            margin: 0 auto;
        }
        /* Reset and base styles */
        .articles-page * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }
        
        .articles-page body {
            line-height: 1.6;
            color: #333;
        }
        
        .articles-page a {
            text-decoration: none;
            color: inherit;
        }
        
        .articles-page img {
            max-width: 100%;
            height: auto;
        }
        
        .articles-page .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        .articles-page .articles-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../img/Group\ 2.png') no-repeat center center/cover;
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .articles-page .articles-header h1 {
            color: #09f;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .articles-page .articles-header p {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        /* Search form */
        .articles-page .search-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
        }
        
        .articles-page .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 1rem;
        }
        
        .articles-page .search-form button {
            padding: 12px 20px;
            background: #0066cc;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-size: 1rem;
        }
        
        /* Main content layout */
        .articles-page .main-content {
            display: flex;
            flex-wrap: wrap;
            padding: 40px 0;
        }
        
        .articles-page .article-list {
            flex: 0 0 100%;
            padding: 0 15px;
        }
        
        @media (min-width: 992px) {
            .articles-page .article-list {
                flex: 0 0 75%;
            }
        }
        
        /* Filters */
        .articles-page .article-filters {
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px;
        }
        
        .articles-page .filter-btn {
            border: none;
            padding: 6px 12px;
            background: #f0f0f0;
            border-radius: 4px;
            font-size: 0.9rem;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .articles-page .filter-btn:hover,
        .articles-page .filter-btn.active {
            background: #0066cc;
            color: white;
        }
        
        /* Article grid */
        .articles-page .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        /* Article card */
        .articles-page .article-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .articles-page .article-card:hover {
            transform: translateY(-5px);
        }
        
        .articles-page .article-image {
            height: 200px;
            overflow: hidden;
        }
        
        .articles-page .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .articles-page .article-card:hover .article-image img {
            transform: scale(1.05);
        }
        
        .articles-page .article-content {
            padding: 20px;
        }
        
        .articles-page .article-category {
            display: inline-block;
            background: #0066cc;
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }
        
        .articles-page .article-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        
        .articles-page .article-excerpt {
            color: #666;
            margin-bottom: 15px;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .articles-page .article-meta {
            display: flex;
            justify-content: space-between;
            color: #888;
            font-size: 0.85rem;
        }
        
        /* Pagination */
        .articles-page .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0;
            flex-wrap: wrap;
            gap: 5px;
        }
        
        .articles-page .pagination a {
            display: inline-block;
            padding: 8px 15px;
            border-radius: 4px;
            background: #f0f0f0;
            color: #333;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .articles-page .pagination a.active,
        .articles-page .pagination a:hover {
            background: #0066cc;
            color: white;
        }
        
        /* Sidebar */
        .articles-page .sidebar {
            flex: 0 0 100%;
            padding: 0 15px;
        }
        
        @media (min-width: 992px) {
            .articles-page .sidebar {
                flex: 0 0 25%;
                padding-left: 30px;
            }
        }
        
        .articles-page .widget {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .articles-page .widget-title {
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .articles-page .category-list {
            list-style: none;
        }
        
        .articles-page .category-list li {
            margin-bottom: 8px;
        }
        
        .articles-page .category-list a {
            display: flex;
            justify-content: space-between;
            color: #333;
            transition: color 0.3s;
            padding: 5px 0;
        }
        
        .articles-page .category-list a:hover {
            color: #0066cc;
        }
        
        .articles-page .category-list span {
            background: #f5f5f5;
            padding: 2px 8px;
            border-radius: 10px;
            font-size: 0.8rem;
        }
        
        .articles-page .popular-article {
            display: flex;
            margin-bottom: 15px;
        }
        
        .articles-page .popular-article img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
            margin-right: 15px;
        }
        
        .articles-page .popular-article h4 {
            font-size: 0.95rem;
            line-height: 1.4;
        }
        
        /* Newsletter widget */
        .articles-page .newsletter-widget input {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .articles-page .newsletter-widget button {
            width: 100%;
            padding: 10px;
            background: #0066cc;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        
        /* Featured section */
        .articles-page .featured-section {
            padding: 60px 0;
            background: #f9f9f9;
        }
        
        .articles-page .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .articles-page .section-title h2 {
            display: inline-block;
            position: relative;
            padding-bottom: 10px;
        }
        
        .articles-page .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: #0066cc;
        }
        
        .articles-page .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        /* Footer newsletter */
        .articles-page .footer-newsletter {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../img/Group\ 2.png') no-repeat center center/cover;
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .articles-page .footer-newsletter h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }
        
        .articles-page .footer-newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .articles-page .footer-newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
        }
        
        .articles-page .footer-newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .articles-page .footer-newsletter-form button {
            padding: 12px 20px;
            background: #0066cc;
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        /* No results message */
        .articles-page .no-results {
            grid-column: 1 / -1;
            text-align: center;
            padding: 40px 0;
            font-size: 1.2rem;
            color: #666;
        }
