* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: #2c5aa0;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }

        .logo svg {
            margin-right: 12px;
        }

        .header-nav {
            display: flex;
            gap: 30px;
        }

        .header-nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            padding: 8px 16px;
            border-radius: 5px;
            transition: background 0.3s;
        }

        .header-nav a:hover,
        .header-nav a.active {
            background: rgba(255,255,255,0.2);
        }

        .subscribe-btn {
            background: #ff6b35;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            text-decoration: none;
            transition: background 0.3s;
        }

        .subscribe-btn:hover {
            background: #e55a2b;
        }

        /* Main Layout */
        .main-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
            padding: 30px 0;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Sidebar */
        .sidebar {
            background: white;
            padding: 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            height: fit-content;
            position: sticky;
            top: 100px;
        }

        .sidebar h3 {
            background: #2c5aa0;
            color: white;
            padding: 15px 20px;
            margin: 0;
            border-radius: 8px 8px 0 0;
            font-size: 18px;
            font-weight: 600;
        }

        .sidebar-content {
            padding: 0;
        }

        .sidebar-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            text-decoration: none;
            color: #333;
            transition: background 0.3s;
        }

        .sidebar-item:hover {
            background: #f8f9fa;
        }

        .sidebar-item:last-child {
            border-bottom: none;
            border-radius: 0 0 8px 8px;
        }

        .sidebar-item img {
            width: 60px;
            height: 60px;
            border-radius: 8px;
            margin-right: 15px;
            object-fit: cover;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .sidebar-item-content h4 {
            font-size: 14px;
            margin-bottom: 5px;
            color: #2c5aa0;
            font-weight: 600;
        }

        .sidebar-item-content p {
            font-size: 12px;
            color: #666;
            line-height: 1.4;
        }

        /* Main Content */
        .main-content {
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        /* Hero Article */
        .hero-article {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(44, 90, 160, 0.7), rgba(44, 90, 160, 0.7)), url('./assets/hero1.png');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            color: white;
        }

        .hero-content {
            padding: 40px;
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 25px;
            opacity: 0.95;
        }

        .hero-content .cta-btn {
            background: #ff6b35;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background 0.3s;
        }

        .hero-content .cta-btn:hover {
            background: #e55a2b;
        }

        /* Articles Grid */
        .articles-section {
            padding: 40px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
        }

        .section-title {
            font-size: 24px;
            color: #2c5aa0;
            font-weight: 600;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }

        .article-card {
            display: flex;
            background: white;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
            height: 140px;
        }

        .article-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .article-image {
            width: 120px;
            height: 140px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .article-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .article-content h3 {
            font-size: 16px;
            color: #2c5aa0;
            margin-bottom: 8px;
            font-weight: 600;
            line-height: 1.3;
        }

        .article-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        .article-meta {
            font-size: 12px;
            color: #999;
            display: flex;
            gap: 15px;
        }

        /* Business Section */
        .business-section {
            background: #f8f9fa;
            padding: 40px;
            border-top: 1px solid #eee;
        }

        .business-header {
            margin-bottom: 30px;
        }

        .business-title {
            font-size: 20px;
            color: #666;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .featured-business {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 30px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }

        .featured-image {
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-content {
            padding: 30px;
        }

        .featured-content h3 {
            font-size: 22px;
            color: #2c5aa0;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .featured-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .read-more-btn {
            background: #2c5aa0;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s;
            display: inline-block;
        }

        .read-more-btn:hover {
            background: #1e3d6f;
        }

        .business-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .business-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .business-card:hover {
            transform: translateY(-3px);
        }

        .business-card-image {
            height: 150px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .business-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .business-card-content {
            padding: 20px;
        }

        .business-card-content h4 {
            font-size: 16px;
            color: #2c5aa0;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .business-card-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
        }

        /* Newsletter */
        .newsletter-sidebar {
            background: #2c5aa0;
            color: white;
            padding: 30px 20px;
            text-align: center;
            margin-top: 30px;
            border-radius: 8px;
        }

        .newsletter-sidebar h4 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .newsletter-sidebar p {
            font-size: 14px;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .newsletter-form input {
            width: 100%;
            padding: 10px;
            border: none;
            border-radius: 5px;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .newsletter-form button {
            width: 100%;
            background: #ff6b35;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }

        .newsletter-form button:hover {
            background: #e55a2b;
        }

        /* Latest in Business Section */
        .latest-business {
            background: white;
            padding: 40px;
            border-top: 1px solid #eee;
        }

        .latest-business-header {
            margin-bottom: 30px;
        }

        .latest-business-title {
            font-size: 20px;
            color: #333;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .latest-business-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .latest-business-card {
            display: flex;
            flex-direction: column;
            background: white;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .latest-business-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transform: translateY(-3px);
        }

        .latest-business-image {
            height: 180px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            overflow: hidden;
        }

        .latest-business-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .latest-business-content {
            padding: 20px;
            flex: 1;
        }

        .latest-business-content h4 {
            font-size: 16px;
            color: #2c5aa0;
            margin-bottom: 10px;
            font-weight: 600;
            line-height: 1.3;
        }

        .latest-business-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        /* Opinion Section */
        .opinion-section {
            background: #f8f9fa;
            padding: 40px;
            border-top: 1px solid #eee;
        }

        .opinion-header {
            margin-bottom: 30px;
        }

        .opinion-title {
            font-size: 20px;
            color: #666;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .opinion-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .opinion-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .opinion-card:hover {
            transform: translateY(-3px);
        }

        .opinion-card-content {
            padding: 20px;
        }

        .opinion-card-content h4 {
            font-size: 16px;
            color: #2c5aa0;
            margin-bottom: 10px;
            font-weight: 600;
            line-height: 1.3;
        }

        .opinion-card-content p {
            font-size: 14px;
            color: #666;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            color: #ff6b35;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
            font-size: 14px;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #ff6b35;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            text-align: center;
            color: #999;
            font-size: 14px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 968px) {
            .main-layout {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .sidebar {
                position: static;
                order: 2;
            }

            .main-content {
                order: 1;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .articles-grid {
                grid-template-columns: 1fr;
            }

            .featured-business {
                grid-template-columns: 1fr;
            }

            .business-grid {
                grid-template-columns: 1fr;
            }

            .latest-business-grid {
                grid-template-columns: 1fr;
            }

            .opinion-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .header-nav {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .article-card {
                flex-direction: column;
                height: auto;
            }

            .article-image {
                width: 100%;
                height: 120px;
            }

            .hero-content {
                padding: 20px;
            }

            .articles-section {
                padding: 20px;
            }

            .business-section {
                padding: 20px;
            }

            .latest-business {
                padding: 20px;
            }

            .opinion-section {
                padding: 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }