    .hero{
      background:linear-gradient(rgba(0, 19, 40, 0.85),rgba(0, 104, 224, 0.85)); 
      color:#fff; 
      text-align:center; 
      padding:20px;
    }
    .hero h2{
      font-size:40px; 
      margin: 0;
      margin-bottom:15px; 
      font-weight:700;
    }
    .hero p{
      font-size:18px; 
      margin-bottom:25px;
    }
    .site-header .search{
      display: none;
    }
    .hero .search-box{
      display:flex; 
      max-width:700px; 
      margin:0 auto; 
      margin-bottom:20px;
      background:#fff; 
      border-radius:8px; 
      overflow:hidden; 
      box-shadow:0 4px 12px rgba(0,0,0,0.2);
    }
    .hero .search-box input{
      flex:1; 
      padding:15px; 
      border:none; 
      outline:none; 
      font-size:15px;
    }
    .hero .search-box button{
      padding:15px 30px; 
      border:none; 
      background: var(--accent); 
      color:#fff; 
      font-weight:600; 
      cursor:pointer; 
      transition:0.3s;
      user-select:none;
    }
    .hero .search-box button:hover{
      background:var(--accent-dark);
    }
    .section {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 15px;
      max-width: 1200px;
      margin: auto;
      padding: 10px;
    }
    .section h3{
      text-align:center; 
      font-size:32px; 
      color:#002855; 
      margin: 0;
      margin-bottom:30px; 
      position:relative;
      user-select:none;
    }
    .section h3::after{
        content:''; width:80px; height:3px; background:#ffcc00; display:block; margin:12px auto 0; border-radius:2px;
    }

    .section .categories{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
      gap:15px;
    }
    .section .category-card{
      background:#fff; 
      padding:0 20px; 
      border-radius:10px; 
      border:1px solid #e0e0e0; 
      transition:0.3s; 
      box-shadow:0 3px 6px rgba(0,0,0,0.05);
      user-select:none;
    }
    .section .category-card:hover{
      border-color:#ebebeb; 
      box-shadow:0 6px 16px rgba(0,0,0,0.1);
    }
    .section .category-card h4{
      margin-bottom:15px; 
      font-size:20px; 
      color:#002855; 
      border-left:4px solid #ffcc00; 
      padding-left:10px;
    }
    .section .category-card ul{
        list-style-type:"»";
        padding: 0 0 0 10px;
    }
    .section .category-card ul li{
       padding:8px 0;
      padding-left:6px;
      border-bottom:1px solid #00000023;
    }
    .category-card ul li:last-child{
      border-bottom:none;
      padding-bottom: 0;
    }
    .section .category-card ul li a{
      text-decoration:none; 
      color:#333; 
      font-size:15px; 
      font-weight: 600;
      transition:0.3s;
      padding: 2px 0;
    }
    .section .category-card ul li a:hover{
      color:#025c00;
    }


    .companies{display:flex; justify-content:center; gap:30px; flex-wrap:wrap;cursor:pointer;user-select:none;}
    .companies .company-logo{background:#fff; border:1px solid #ddd; padding:20px 40px; border-radius:8px; font-weight:700; color:#002855; transition:0.3s; box-shadow:0 2px 6px rgba(0,0,0,0.05);}
    .companies .company-logo:hover{border-color:#ffcc00; color:#ffcc00; transform:scale(1.05);}
    
    
    /* Right (Trending Section) */
    .trending-section{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap:15px;
      user-select:none;
    }
    .trending-section .trending {
      background: white;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 5px 12px rgba(0,0,0,0.1);
    }

    .trending-section .trending h3 {
      margin-bottom: 15px;
      font-size: 20px;
      color: #e63946;
      border-bottom: 2px solid #eee;
      padding-bottom: 8px;
    }

    .trending-section .active h3 {
      color: #06731c;
    }

    .trending-section .trending ul {
        list-style-type:"»";
        padding: 0 0 0 10px;
    }

    .trending-section .trending ul li {
      padding:8px 0;
      padding-left:6px;
      border-bottom:1px solid #00000023;
    }

    .trending ul li:last-child{
      border-bottom:none;
      padding-bottom: 0;
    }
    
    .trending-section .trending ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 15px;
      transition: 0.3s;
    }

    .trending-section .trending ul li a:hover {
      color: #e63946;
    }
    .trending-section .active ul li a:hover {
      color: #075f12;
    }

    @media (max-width:700px){
      .hero h2{
        font-size:30px;
      }
      .hero p{
        font-size:16px;
      }
    }
    /* Responsive */
    @media(max-width: 900px) {
      .section {
        grid-template-columns: 1fr;
      }
      .trending-section{
        order: -1;
      }
    }
    
    .section-categories,.section-companies {
      max-width: 1200px;
      margin: auto;
      padding: 10px;
    }
    .section-categories h3,.section-companies h3{
      text-align:center; 
      font-size:28px; 
      color:#002855; 
      margin: 0;
      margin-bottom:30px; 
      position:relative;}
    .section-categories h3::after,.section-companies h3::after{content:''; width:150px; height:3px; background:#ffcc00; display:block; margin:12px auto 0; border-radius:2px;}
