
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles - UPDATED to iPhone 14 Pro Max Style */
        header {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }
        
        .logo {
            font-size: 26px;
            font-weight: 800;
            color: white;
            z-index: 1002;
            display: flex;
            align-items: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        .logo-img {
            height: 42px;
            margin-right: 12px;
            filter: drop-shadow(1px 1px 2px rgba(0,0,0,0.3));
        }
        
        .logo span {
            color: #FFD700;
        }
        
        /* UPDATED: Desktop navigation with dropdown - iPhone 14 Pro Max Style */
        .desktop-nav ul {
            display: flex;
            flex-direction: row;
            align-items: center;
        }
        
        .desktop-nav li {
            position: relative;
            margin: 0 12px;
        }
        
        .desktop-nav a {
            padding: 10px 0;
            position: relative;
            font-weight: 600;
            display: flex;
            align-items: center;
            color: white;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }
        
        .desktop-nav a:hover {
            color: #FFD700;
            transform: translateY(-2px);
        }
        
        .desktop-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #FFD700;
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        
        .desktop-nav a:hover:after {
            width: 100%;
        }
        
        /* Dropdown Menu Styles - iPhone 14 Pro Max Style */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            min-width: 220px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 10;
            overflow: hidden;
        }
        
        .dropdown li {
            margin: 0;
            width: 100%;
        }
        
        .dropdown a {
            padding: 12px 20px;
            display: block;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            color: #333;
            text-shadow: none;
        }
        
        .dropdown a:last-child {
            border-bottom: none;
        }
        
        .dropdown a:hover {
            background: linear-gradient(to right, #3498db, #2980b9);
            color: white;
            transform: none;
        }
        
        .desktop-nav li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .desktop-nav a i {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s;
        }
        
        .desktop-nav li:hover a i {
            transform: rotate(180deg);
        }
        
        .search-bar {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            padding: 5px;
            backdrop-filter: blur(5px);
        }
        
        .search-bar input {
            padding: 10px 15px;
            border: none;
            border-radius: 30px 0 0 30px;
            width: 220px;
            background: transparent;
            color: white;
            outline: none;
        }
        
        .search-bar input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .search-bar button {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 0 30px 30px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .search-bar button:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1002;
            color: white;
        }
        
        /* Mobile Menu (Drawer) - iPhone 14 Pro Max Style */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f);
            color: white;
            z-index: 1001;
            transition: right 0.3s ease;
            padding: 70px 20px 20px;
            overflow-y: auto;
        }
        
        .mobile-menu.open {
            right: 0;
        }
        
        .close-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
        }
        
        .mobile-nav li {
            margin: 20px 0;
            font-size: 18px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 10px;
        }
        
        .mobile-dropdown-content {
            display: none;
            padding-left: 15px;
            margin-top: 10px;
        }
        
        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }
        
        .mobile-dropdown-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }
        
        .mobile-dropdown-trigger i {
            transition: transform 0.3s;
        }
        
        .mobile-dropdown.active .mobile-dropdown-trigger i {
            transform: rotate(180deg);
        }
        
        .mobile-search {
            margin: 20px 0;
            display: flex;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 30px;
            overflow: hidden;
        }
        
        .mobile-search input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            background: transparent;
            color: white;
            outline: none;
        }
        
        .mobile-search input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .mobile-search button {
            background: rgba(255, 255, 255, 0.3);
            color: white;
            border: none;
            padding: 12px 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .mobile-search button:hover {
            background: rgba(255, 255, 255, 0.4);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: none;
        }
        
        /* Blog Hero Section */
        .blog-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1511707171634-5f897ff02aa9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .blog-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .blog-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Blog Content Layout */
        .blog-container {
            display: flex;
            gap: 30px;
            margin: 40px 0;
        }
        
        .blog-main {
            flex: 2;
        }
        
        .blog-sidebar {
            flex: 1;
        }
        
        /* Featured Post */
        .featured-post {
            margin-bottom: 40px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .featured-image {
            height: 400px;
            background-size: cover;
            background-position: center;
        }
        
        .featured-content {
            padding: 30px;
        }
        
        .post-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .post-meta span {
            margin-right: 15px;
        }
        
        .featured-content h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .featured-content p {
            margin-bottom: 20px;
        }
        
        .read-more {
            display: inline-block;
            color: #3498db;
            font-weight: 600;
        }
        
        /* Blog Posts Grid */
        .section-title {
            font-size: 24px;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
            display: inline-block;
        }
        
        .posts-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .post-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.2s;
        }
        
        .post-card:hover {
            transform: translateY(-5px);
        }
        
        .post-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .post-content {
            padding: 20px;
        }
        
        .post-content h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .post-excerpt {
            color: #7f8c8d;
            margin-bottom: 15px;
        }
        
        /* Sidebar Styles */
        .sidebar-widget {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .sidebar-widget h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .categories-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .categories-list li:last-child {
            border-bottom: none;
        }
        
        .categories-list a {
            display: flex;
            justify-content: space-between;
        }
        
        .category-count {
            background: #3498db;
            color: white;
            padding: 2px 8px;
            border-radius: 20px;
            font-size: 0.8rem;
        }
        
        .popular-posts li {
            display: flex;
            margin-bottom: 15px;
        }
        
        .popular-thumb {
            width: 80px;
            height: 60px;
            background-size: cover;
            background-position: center;
            border-radius: 4px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .popular-content {
            flex-grow: 1;
        }
        
        .popular-content h4 {
            font-size: 0.9rem;
            margin-bottom: 5px;
        }
        
        .popular-date {
            font-size: 0.8rem;
            color: #7f8c8d;
        }
        
        .tags-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .tag {
            background: #f1f2f6;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        
        .tag:hover {
            background: #3498db;
            color: white;
        }
        
        /* Newsletter Form */
        .newsletter-form input {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .newsletter-form button {
            width: 100%;
            background: #3498db;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 4px;
            cursor: pointer;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }
        
        .page-numbers {
            display: flex;
            gap: 10px;
        }
        
        .page-numbers a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .page-numbers a.active {
            background: #3498db;
            color: white;
        }
        
        /* Footer Styles */
        footer {
            background: #2c3e50;
            color: white;
            padding: 50px 0 20px;
            margin-top: auto;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        @media (min-width: 768px) {
            .footer-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid #4a6580;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a:hover {
            color: #3498db;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: #4a6580;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            transition: background 0.3s ease;
        }
        
        .social-links a:hover {
            background: #3498db;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #4a6580;
            color: #95a5a6;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-container {
                flex-direction: column;
            }
            
            .posts-grid {
                grid-template-columns: 1fr;
            }
            
            .search-bar input {
                width: 150px;
            }
        }
        
        @media (max-width: 868px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .header-container {
                padding: 12px 0;
            }
        }
        
        @media (max-width: 768px) {
            .search-bar {
                display: none;
            }
            
            .blog-hero {
                padding: 60px 0;
            }
            
            .blog-hero h1 {
                font-size: 2rem;
            }
            
            .featured-image {
                height: 300px;
            }
            
            .logo {
                font-size: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .posts-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-image {
                height: 250px;
            }
            
            .featured-content {
                padding: 20px;
            }
            
            .featured-content h2 {
                font-size: 1.5rem;
            }
        }