
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--secondary-color);
            color: #fff;
            border: none;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 14px;
        }
        
        .btn:hover {
            background-color: #e09a05;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Header Styles */
        .top-bar {
            background-color: #111;
            color: #fff;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .contact-info {
            display: flex;
            gap: 20px;
        }
        
        .contact-info p {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: #fff;
            font-size: 16px;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            color: var(--secondary-color);
            transform: translateY(-3px);
        }
        
        /* Main Header */
        .main-header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo img {
            width: 55px;
            height: auto;
        }
        
        .logo-text h1 {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .logo-text p {
            font-size: 12px;
            color: var(--light-text);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Navigation */
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        
        .main-nav a {
            font-weight: 500;
            text-transform: uppercase;
            font-size: 15px;
            letter-spacing: 1px;
            position: relative;
            padding: 5px 0;
        }
        
        .main-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: var(--transition);
        }
        
        .main-nav a:hover:after,
        .main-nav a.active:after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-color);
        }
        
        /* Hero Banner */
        .blog-hero {
            position: relative;
            height: 300px;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('<?= BASE_URL ?>/public/images/blog-banner.jpg') no-repeat center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            margin-bottom: 50px;
        }
        
        .blog-hero-content h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
        }
        
        .breadcrumb a {
            color: var(--secondary-color);
        }
        
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        
        /* Blog Content */
        .blog-container {
            display: flex;
            gap: 30px;
            margin-bottom: 60px;
            margin-top: 70px;
        }
        
        .blog-main {
            width: 70%;
        }
        
        .blog-sidebar {
            width: 30%;
        }
        
        /* Blog Posts */
        .blog-posts {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .blog-post {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .blog-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .post-image {
            height: 200px;
            overflow: hidden;
        }
        
        .post-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .blog-post:hover .post-image img {
            transform: scale(1.05);
        }
        
        .post-content {
            padding: 20px;
        }
        
        .post-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--light-text);
        }
        
        .post-meta i {
            margin-right: 5px;
            color: var(--primary-color);
        }
        
        .post-title {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .post-title a:hover {
            color: var(--primary-color);
        }
        
        .post-excerpt {
            margin-bottom: 15px;
            color: var(--light-text);
        }
        
        .read-more {
            color: var(--primary-color);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }
        
        .read-more:hover {
            gap: 10px;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }
        
        .page-numbers {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--bg-light);
            color: var(--text-color);
            transition: var(--transition);
        }
        
        .page-numbers.current,
        .page-numbers:hover {
            background-color: var(--primary-color);
            color: #fff;
        }
        
        /* Sidebar */
        .sidebar-widget {
            background: #fff;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .widget-title {
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .popular-posts {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .popular-post {
            display: flex;
            gap: 15px;
        }
        
        .popular-post img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 4px;
        }
        
        .popular-post-title {
            font-size: 15px;
            margin-bottom: 5px;
        }
        
        .popular-post-title a:hover {
            color: var(--primary-color);
        }
        
        .popular-post-date {
            font-size: 13px;
            color: var(--light-text);
        }
        
        .categories-list {
            list-style: none;
        }
        
        .categories-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        
        .categories-list a {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .categories-list a:hover {
            color: var(--primary-color);
        }
        
        .categories-list span {
            background-color: var(--bg-light);
            padding: 3px 8px;
            border-radius: 20px;
            font-size: 12px;
        }
        
        
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .blog-container {
                flex-direction: column;
            }
            .blog-main{
                width: 100%;
            }
            .blog-sidebar{
                width: 100%;
            }
            .blog-hero h1 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: #fff;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: var(--transition);
                z-index: 1001;
                padding: 30px;
            }
            
            .main-nav.active {
                right: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                gap: 20px;
            }
            
            .close-menu {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 24px;
                cursor: pointer;
            }
            
            .top-bar .container {
                justify-content: center;
            }
            
            .contact-info {
                display: none;
            }
            
            .blog-hero h1 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .blog-hero {
                height: 250px;
            }
            
            .blog-posts {
                grid-template-columns: 1fr;
            }
        }
    