* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: #1a1a1a;
            color: white;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
        }
        
        .main-nav ul {
            display: flex;
            list-style: none;
        }
        
        .main-nav li {
            margin-left: 25px;
        }
        
        .main-nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .main-nav a:hover {
            color: #d4af37;
        }
        
        .contact-btn {
            background-color: #d4af37;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s;
        }
        
        .contact-btn:hover {
            background-color: #b8941f;
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://honestguideiran.com/assets/img/hero/tehran.jpg');
            background-size: cover;
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            margin-top: 70px;
            color: white;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 25px;
        }
        
        .meta-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            font-size: 0.9rem;
        }
        
        /* Main Content Layout */
        .content-wrapper {
            display: flex;
            margin: 40px 0;
            gap: 30px;
        }
        
        .main-content {
            flex: 1;
            background: white;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .sidebar {
            width: 300px;
            position: sticky;
            top: 90px;
            align-self: flex-start;
            max-height: calc(100vh - 100px);
            overflow-y: auto;
        }
        
        /* Blog Content Styles */
        .blog-section {
            margin-bottom: 40px;
        }
        
        .blog-section h2 {
            color: #1a1a1a;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4af37;
        }
        
        .blog-section h3 {
            color: #333;
            margin: 20px 0 10px;
        }
        
        .blog-section p {
            margin-bottom: 15px;
        }
        
        .blog-section ul, .blog-section ol {
            margin-left: 20px;
            margin-bottom: 15px;
        }
        
        .blog-section li {
            margin-bottom: 8px;
        }
        
        .highlight-box {
            background-color: #f5f5f5;
            border-left: 4px solid #d4af37;
            padding: 15px;
            margin: 20px 0;
        }
        
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 5px;
            font-size: 0.9rem;
        }
        
        /* Sidebar Styles */
        .toc-widget {
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        
        .toc-widget h3 {
            color: #1a1a1a;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4af37;
        }
        
        .toc-list {
            list-style: none;
        }
        
        .toc-list li {
            margin-bottom: 10px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .toc-list a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
        }
        
        .toc-list a:hover {
            color: #d4af37;
        }
        
        .about-widget, .popular-widget, .contact-widget {
            background: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        
        .about-widget h4, .popular-widget h4, .contact-widget h4 {
            color: #1a1a1a;
            margin-bottom: 15px;
        }
        
        .popular-posts li {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
            list-style: none;
        }
        
        .popular-posts a {
            font-weight: bold;
            color: #333;
            text-decoration: none;
        }
        
        .popular-posts a:hover {
            color: #d4af37;
        }
        
        .popular-posts p {
            font-size: 0.9rem;
            color: #666;
            margin-top: 5px;
        }
        
        .contact-widget {
            background: #d4af37;
            color: white;
        }
        
        .contact-widget h4, .contact-widget p {
            color: white;
        }
        
        .btn {
            display: inline-block;
            background: #d4af37;
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            text-align: center;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn-white {
            background: white;
            color: #d4af37;
        }
        
        .btn:hover {
            background: #b8941f;
        }
        
        .btn-white:hover {
            background: #f5f5f5;
        }
        
        /* Footer Styles */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-links {
            display: flex;
            gap: 30px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
        }
        
        .footer-links a:hover {
            color: #d4af37;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
        }
        
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: #d4af37;
        }
        
        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #333;
            font-size: 0.9rem;
            color: #999;
        }
        
        /* Mobile Menu Styles */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: #1a1a1a;
            z-index: 999;
            padding: 20px;
            box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        }
        
        .mobile-nav.active {
            display: block;
        }
        
        .mobile-nav ul {
            list-style: none;
        }
        
        .mobile-nav li {
            margin-bottom: 15px;
        }
        
        .mobile-nav a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .content-wrapper {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                position: static;
                margin-top: 30px;
            }
            
            .main-nav ul {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .contact-btn {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .meta-info {
                flex-direction: column;
                gap: 10px;
            }
            
            .main-content {
                padding: 20px;
            }
            
            .footer-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }
            
            .hero {
                height: 50vh;
                margin-top: 60px;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .main-content {
                padding: 15px;
            }
            
            .blog-section h2 {
                font-size: 1.5rem;
            }
            
            .blog-section h3 {
                font-size: 1.2rem;
            }
        }