        .blog-hero { background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%); padding: 100px 0 80px; }
        .blog-hero h1 { color: white; font-size: 2.5rem; font-weight: 800; text-align: center; margin-bottom: 1rem; }
        .blog-hero .breadcrumb { display: flex; justify-content: center; gap: 0.5rem; color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }
        .blog-hero .breadcrumb a { color: rgba(255, 255, 255, 0.8); text-decoration: none; }
        .articles-section { padding: 80px 0; background: #FFFFFF; }
        .section-header { text-align: center; margin-bottom: 3rem; }
        .section-header h2 { font-size: 2rem; font-weight: 800; color: #111827; }
        .articles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .article-card { background: white; border-radius: 16px; overflow: hidden; border: 1px solid #E5E7EB; transition: all 0.3s ease; text-decoration: none; color: inherit; }
        .article-card:hover { border-color: #1ABC9C; transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26, 188, 156, 0.15); }
        .article-card img { width: 100%; height: 180px; object-fit: cover; }
        .article-card-content { padding: 1.5rem; }
        .article-card .tag { display: inline-block; background: #F0FDF9; color: #1ABC9C; padding: 0.25rem 0.6rem; border-radius: 6px; font-size: 0.75rem; font-weight: 600; margin-bottom: 0.8rem; }
        .article-card h3 { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
        .article-card p { color: #6B7280; font-size: 0.9rem; margin-bottom: 1rem; }
        .article-card .read-more { display: inline-flex; align-items: center; gap: 0.3rem; color: #1ABC9C; font-weight: 600; }
        .pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
        .pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 12px; border-radius: 8px; font-weight: 600; text-decoration: none; }
        .pagination a { background: white; color: #374151; border: 1px solid #E5E7EB; }
        .pagination a:hover { background: #1ABC9C; color: white; }
        .pagination .current { background: #1ABC9C; color: white; }
        .pagination .dots { color: #9CA3AF; }
        .pagination .next-page { background: linear-gradient(135deg, #1ABC9C, #16A085); color: white; border: none; padding: 0 20px; }
        .newsletter-section { padding: 80px 0; background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%); }
        .newsletter-container { max-width: 600px; margin: 0 auto; text-align: center; padding: 0 20px; }
        .newsletter-container h2 { color: white; font-size: 2rem; font-weight: 800; margin-bottom: 1rem; }
        .newsletter-container p { color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
        .newsletter-form { display: flex; gap: 1rem; max-width: 450px; margin: 0 auto; }
        .newsletter-form input { flex: 1; padding: 1rem; border: none; border-radius: 12px; }
        .newsletter-form button { background: #F9D423; color: #111827; padding: 1rem 2rem; border: none; border-radius: 12px; font-weight: 700; cursor: pointer; }
