 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #ffffff;
            color: #1e2a3e;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Header */
        .page-header {
            background: linear-gradient(135deg, #0a2b3e 0%, #1e4a6b 100%);
            color: white;
            padding: 80px 0 60px;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 16px;
        }

        .page-header p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Back Link */
        .back-link {
            display: inline-block;
            margin: 32px 0 24px;
            color: #c47b2e;
            text-decoration: none;
            font-weight: 500;
        }

        .back-link:hover {
            text-decoration: underline;
        }

        /* Blog Layout */
        .blog-layout {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin: 40px 0 80px;
        }

        /* Main Content */
        .blog-main {
            flex: 3;
            min-width: 280px;
        }

        /* Sidebar */
        .blog-sidebar {
            flex: 1;
            min-width: 260px;
        }

        /* Featured Post */
        .featured-post {
            background: linear-gradient(135deg, #fef9f0 0%, #fff6ea 100%);
            border-radius: 28px;
            padding: 40px;
            margin-bottom: 48px;
            border: 1px solid #f5e5cf;
        }

        .featured-badge {
            display: inline-block;
            background: #c47b2e;
            color: white;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .featured-post h2 {
            font-size: 2rem;
            margin-bottom: 16px;
        }

        .featured-post h2 a {
            color: #0a2b3e;
            text-decoration: none;
        }

        .featured-post h2 a:hover {
            color: #c47b2e;
        }

        .featured-post p {
            color: #4a5b6b;
            font-size: 1.05rem;
            margin: 16px 0;
            line-height: 1.6;
        }

        .featured-meta {
            display: flex;
            gap: 20px;
            margin: 20px 0;
            font-size: 0.85rem;
            color: #6c7a89;
        }

        .featured-meta i {
            color: #c47b2e;
            margin-right: 6px;
        }

        /* Blog Post Card - Grid Style */
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #eef2f8;
            transition: all 0.25s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }

        .blog-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.1);
            border-color: #c47b2e30;
        }

        .card-content {
            padding: 24px;
        }

        .post-category {
            display: inline-block;
            background: #fef3e2;
            color: #c47b2e;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .blog-card h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .blog-card h3 a {
            color: #0a2b3e;
            text-decoration: none;
        }

        .blog-card h3 a:hover {
            color: #c47b2e;
        }

        .card-meta {
            display: flex;
            gap: 16px;
            margin: 16px 0;
            font-size: 0.75rem;
            color: #6c7a89;
        }

        .card-meta i {
            color: #c47b2e;
            margin-right: 4px;
        }

        .card-excerpt {
            color: #4a5b6b;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 16px;
        }

        .read-more {
            color: #c47b2e;
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .read-more:hover {
            gap: 10px;
        }

        /* Sidebar Widgets */
        .sidebar-widget {
            background: white;
            border-radius: 24px;
            padding: 28px;
            margin-bottom: 32px;
            border: 1px solid #eef2f8;
        }

        .sidebar-widget h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid #c47b2e;
            display: inline-block;
        }

        /* Categories List - Pill Style */
        .category-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }

        .category-pill {
            background: #f8fafc;
            padding: 8px 18px;
            border-radius: 40px;
            text-decoration: none;
            color: #2c3e4e;
            font-size: 0.85rem;
            transition: all 0.2s;
            border: 1px solid #eef2f8;
        }

        .category-pill:hover {
            background: #c47b2e;
            color: white;
            border-color: #c47b2e;
        }

        /* Popular Posts */
        .popular-list {
            margin-top: 20px;
        }

        .popular-item {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
            padding-bottom: 16px;
            border-bottom: 1px solid #eef2f8;
        }

        .popular-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .popular-number {
            width: 32px;
            height: 32px;
            background: #fef3e2;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #c47b2e;
            font-weight: 700;
        }

        .popular-info h4 {
            font-size: 0.9rem;
            margin-bottom: 4px;
        }

        .popular-info h4 a {
            color: #0a2b3e;
            text-decoration: none;
        }

        .popular-info h4 a:hover {
            color: #c47b2e;
        }

        .popular-info p {
            font-size: 0.7rem;
            color: #6c7a89;
        }

        /* Newsletter */
        .newsletter-widget p {
            margin-bottom: 16px;
            font-size: 0.9rem;
        }

        .newsletter-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 40px;
            font-family: inherit;
            margin-bottom: 12px;
        }

        .subscribe-btn {
            width: 100%;
            background: #c47b2e;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 40px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 32px;
        }

        .page-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 1px solid #e2e8f0;
            color: #2c3e4e;
            text-decoration: none;
            transition: all 0.2s;
        }

        .page-link:hover, .page-link.active {
            background: #c47b2e;
            border-color: #c47b2e;
            color: white;
        }

        /* Footer */
        footer {
            background: #0a2b3e;
            color: #cddfea;
            padding: 48px 0 24px;
            margin-top: 40px;
        }

        .footer-content {
            text-align: center;
        }

        .footer-content a {
            color: #c47b2e;
            text-decoration: none;
        }

        .copyright {
            text-align: center;
            padding-top: 32px;
            margin-top: 32px;
            border-top: 1px solid #255f7a;
            font-size: 0.85rem;
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 24px;
            }
            .page-header {
                padding: 60px 0 40px;
            }
            .page-header h1 {
                font-size: 2rem;
            }
            .blog-layout {
                flex-direction: column;
            }
            .featured-post {
                padding: 24px;
            }
            .featured-post h2 {
                font-size: 1.5rem;
            }
        }