        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        :root {
            --primary: #ff5722;
            --secondary: #00a0dc;
            --dark: #121212;
            --light: #f8f9fa;
            --gray: #6c757d;
            --border: #e1e1e1;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: white;
            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 20px;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
        }

        .logo span {
            color: var(--secondary);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        nav a {
            font-weight: 600;
            font-size: 16px;
            position: relative;
        }

        nav a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

        nav a:hover:after {
            width: 100%;
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .search-btn,
        .menu-toggle {
            background: none;
            display: none;
            border: none;
            font-size: 20px;
            cursor: pointer;
            color: var(--dark);
        }

        .subscribe-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .subscribe-btn:hover {
            background-color: #e64a19;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            padding: 40px 0;
            border-bottom: 1px solid var(--border);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }

        .featured-article {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            animation: fadeIn 1s ease;
            min-height: 400px;
            /* Ensure minimum height */
        }

        .featured-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .featured-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
            color: white;
        }

        .category-tag {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .featured-content h2 {
            font-size: 28px;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 14px;
        }

        .author-img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Side Articles */
        .side-articles {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .side-article {
            display: flex;
            gap: 15px;
            padding: 15px;
            border-radius: 8px;
            background-color: white;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .side-article:hover {
            transform: translateY(-5px);
        }

        .side-article-img {
            width: 100px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
        }

        .side-article-content h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        /* Main Content */
        .main-content {
            padding: 40px 0;
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }

        .article-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            animation: slideUp 0.5s ease;
        }

        .article-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .article-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .article-content {
            padding: 20px;
        }

        .article-content h3 {
            font-size: 18px;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .article-content p {
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 15px;
        }

        .read-more {
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .read-more:hover {
            gap: 10px;
        }

        /* Startups/Business Section */
        .startups-section {
            background-color: white;
            padding: 60px 0;
            margin: 40px 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .startups-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .view-all {
            color: var(--primary);
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .view-all:hover {
            gap: 10px;
        }

        .startups-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .startup-card {
            background-color: var(--light);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .startup-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .startup-img {
            height: 180px;
            width: 100%;
            object-fit: cover;
        }

        .startup-content {
            padding: 20px;
        }

        .startup-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .startup-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 14px;
        }

        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 60px 0;
            color: white;
            text-align: center;
            margin: 40px 0;
        }

        .newsletter h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .newsletter p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 18px;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 16px;
        }

        .newsletter-btn {
            background-color: var(--dark);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 4px 4px 0;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .newsletter-btn:hover {
            background-color: #000;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
        }

        .footer-links a:hover {
            color: white;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #999;
            font-size: 14px;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animated {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .in-view {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }

            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .startups-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .subscribe-btn {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }

            nav {
                position: absolute;
                top: 75px;
                left: -350px;
                min-height: 100vh;
                padding: 5px 15px;
                background-color: var(--light);
                width: 45%;
                transition: 0.3s ease-in all;
            }

            nav.active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 10px;
            }

            .menu-toggle {
                display: block;
            }

            .articles-grid {
                grid-template-columns: 1fr;
            }

            .startups-grid {
                grid-template-columns: 1fr;
            }

            .newsletter-form {
                flex-direction: column;
                gap: 10px;
            }

            .newsletter-input,
            .newsletter-btn {
                border-radius: 4px;
                width: 100%;
            }

            /* Mobile hero section adjustments */
            .featured-article {
                min-height: 300px;
            }

            .featured-content {
                padding: 20px;
            }

            .featured-content h2 {
                font-size: 22px;
            }

            .subscribe-btn {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .side-article {
                flex-direction: column;
            }

            .side-article-img {
                width: 100%;
                height: 150px;
            }

            /* Additional mobile adjustments */
            .featured-article {
                min-height: 250px;
            }

            .featured-content h2 {
                font-size: 20px;
            }

            .subscribe-btn {
                display: none;
            }
        }

        .header .nav-buttons {
            display: none;
        }

        @media screen and (min-width: 800px) {
            .header .nav-buttons {
                display: block;
            }
        }