    /* Root Variables */
    :root {
      --primary: #f65c5c;
      --primary-light: #ff7875;
      --dark-bg: #0a0a23;
      --dark-secondary: #1b1f3b;
      --light-text: #ffffff;
      --light-gray: #f5f5f7;
      --card-bg: rgba(255, 255, 255, 0.05);
      --nav-gradient-start: #ffffff;
      --nav-gradient-end: #1e90ff;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--dark-bg);
      color: var(--light-text);
      line-height: 1.6;
      padding-top: 70px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Header Styles */
    .navbar {
      background: linear-gradient(70deg, var(--nav-gradient-start) 10%, #0a0a23 100%);
      padding: 12px 15px;
      width: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .nav-left img {
      height: 35px;
      width: auto;
    }

    .nav-right {
      display: none;
    }

    .nav-right a {
      text-decoration: none;
      color: white;
      font-weight: 600;
      font-size: 16px;
      padding: 8px 0;
      position: relative;
      white-space: nowrap;
    }

    .nav-right a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: white;
      transition: width 0.3s ease;
    }

    .nav-right a:hover::after {
      width: 100%;
    }

    .nav-right .ai-btn {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.5);
      padding: 8px 16px;
      border-radius: 6px;
      color: white;
      font-weight: 600;
    }

    .nav-right .cta-btn {
      background: var(--primary);
      padding: 10px 20px;
      border-radius: 6px;
      text-decoration: none;
      color: white;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(246, 92, 92, 0.4);
    }

    .mobile-nav-controls {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .mobile-menu-btn,
    .mobile-close-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      color: white;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 10, 35, 0.98);
      z-index: 100;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      backdrop-filter: blur(5px);
    }

    .mobile-menu.active {
      display: flex;
    }

    .mobile-menu a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      margin: 10px 0;
      padding: 10px 15px;
      border-radius: 6px;
      text-align: center;
      width: 100%;
      max-width: 200px;
    }

    .mobile-menu .ai-btn {
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .mobile-menu .cta-btn {
      background: var(--primary);
      box-shadow: 0 4px 15px rgba(246, 92, 92, 0.4);
    }

    .close-menu {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
    }

    /* Main Content Styles */
    .main-content {
      flex: 1;
      padding: 40px 0;
      width: 95%;
      margin: 0 auto;
    }

    .container {
      width: 95%;
      margin: 0 auto;
      padding: 0 15px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
      background: linear-gradient(90deg, #f65c5c, #e44545, #d9130f);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .section-header .divider {
      height: 4px;
      width: 80px;
      background: #f65c5c;
      margin: 0 auto;
      border-radius: 2px;
    }

    /* Search and Filter */
    .search-filter {
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px;
      flex-wrap: wrap;
      gap: 15px;
    }

    .search-box {
      flex: 1;
      min-width: 250px;
      position: relative;
    }

    .search-box input {
      width: 100%;
      padding: 12px 20px 12px 45px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 6px;
      color: white;
      font-size: 1rem;
      outline: none;
      transition: all 0.3s;
    }

    .search-box input:focus {
      border-color: #f65c5c;
      box-shadow: 0 0 0 2px rgba(246, 92, 92, 0.2);
    }

    .search-box i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: rgba(255, 255, 255, 0.7);
    }

    .filter-options {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .filter-btn {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 0.9rem;
    }

    .filter-btn:hover, .filter-btn.active {
      background: #f65c5c;
      border-color: #f65c5c;
    }

    /* Startups List - Single Card per Row */
    .startups-list {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-bottom: 50px;
    }

    .startup-card {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(22, 22, 46, 0.08));
      border-radius: 12px;
      padding: 30px;
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      transition: all 0.3s ease;
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .startup-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(246, 92, 92, 0.2);
      border-color: rgba(246, 92, 92, 0.5);
    }

    .startup-logo {
      flex: 0 0 250px;
      height: 250px;
      background: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow: hidden;
    }

    .startup-logo img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .startup-content {
      flex: 1;
    }

    .startup-name {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: white;
    }

    .startup-sector {
      display: inline-block;
      background: rgba(246, 92, 92, 0.2);
      color: #f65c5c;
      padding: 6px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .startup-desc {
      color: rgba(255, 255, 255, 0.8);
      font-size: 1.05rem;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .startup-details {
      display: flex;
      gap: 20px;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }

    .detail-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .detail-item i {
      color: #f65c5c;
    }

    .learn-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #f65c5c;
      font-weight: 600;
      text-decoration: none;
      margin-top: 15px;
      transition: all 0.3s;
    }

    .learn-more:hover {
      transform: translateX(5px);
    }

    .view-more {
      text-align: center;
      margin-top: 40px;
    }

    .view-more-btn {
      background: var(--primary);
      color: white;
      padding: 12px 30px;
      border-radius: 6px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .view-more-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(246, 92, 92, 0.5);
    }

    /* Footer Styles */
    .footer {
      background: #0a0a23;
      color: white;
      padding: 50px 0 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      width: 100%;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      width: 95%;
    }

    .footer-column h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 40px;
      height: 3px;
      background: #f65c5c;
    }

    .footer-links {
      list-style: none;
      padding: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s;
      display: inline-block;
      padding: 2px 0;
    }

    .footer-links a:hover {
      color: #f65c5c;
      transform: translateX(5px);
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.95rem;
    }

    .footer-contact-item svg {
      margin-right: 10px;
      color: #f65c5c;
      flex-shrink: 0;
    }

    .newsletter-form {
      display: flex;
      margin-top: 20px;
    }

    .newsletter-input {
      flex: 1;
      padding: 12px 15px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 6px;
      color: white;
      font-size: 0.9rem;
      outline: none;
    }

    .newsletter-input:focus {
      border-color: #f65c5c;
    }

    .newsletter-btn {
      background: #f65c5c;
      color: white;
      border: none;
      padding: 0 20px;
      border-radius: 6px;
      margin-left: 10px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .newsletter-btn:hover {
      opacity: 0.9;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    .social-link:hover {
      background: rgba(246, 92, 92, 0.2);
      transform: translateY(-3px);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 50px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-bottom a {
      color: #f65c5c;
      text-decoration: none;
    }

    /* Responsive Styles */
    @media (min-width: 768px) {
      body {
        padding-top: 80px;
      }

      .navbar {
        padding: 15px 30px;
      }

      .nav-left img {
        height: 40px;
      }

      .nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
      }

      .mobile-nav-controls {
        display: none;
      }

      .section-header h2 {
        font-size: 3rem;
      }
    }

    @media (max-width: 992px) {
      .startup-card {
        flex-direction: column;
      }

      .startup-logo {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1/1;
      }
    }

    @media (max-width: 767px) {
      .mobile-menu-btn {
        display: block;
      }

      .section-header h2 {
        font-size: 2rem;
      }

      .search-filter {
        flex-direction: column;
      }

      .search-box, .filter-options {
        width: 100%;
      }

      .startup-logo {
        width: 100%;
        max-width: 250px;
      }

      .startup-name {
        font-size: 1.5rem;
      }
    }
