
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #f4f4f4; color: #333; line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    nav { background: #00457c; color: #fff; padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; }
    nav .logo { font-size: 1.8rem; font-weight: bold; margin-top: 15px; margin-bottom: 15px; }
    nav .menu { display: flex; }
    nav .menu a { color: #fff; margin: 0 5px; border: 2px solid green; border-radius: 7px; background-color: black; padding: 7px 10px; transition: color 0.3s ease; }
    nav .menu a:hover { border-color: yellow; color: #a0d2eb; }
    .hero { background: url('https://picsum.photos/1500/500?random=10') no-repeat center center/cover; height: 500px; display: flex; align-items: center; justify-content: center; color: #fff; }
    .hero-content { background: rgba(0, 0, 0, 0.5); padding: 20px; border-radius: 10px; text-align: center; }
    .grid-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 20px; justify-items: center; }
    
    
    .hero button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    background: #ff6f61;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease; }
    
    .grid-item { background: #fff; padding: 20px; border-radius: 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); cursor: pointer; text-align: center; }
    .grid-item:hover { transform: translateY(-5px); }
    footer { background: #00457c; color: #fff; text-align: center; padding: 10px; }
    .search-container { display: flex; justify-content: center; margin: 20px 0; }
    .search-box-wrapper { border-radius: 12px; background: #fff; box-shadow: 0 4px 8px rgba(0,0,0,0.1); padding: 5px; }
    
    .search-box { width: 100%; max-width: 600px; padding: 10px; border-radius: 8px; border: none; outline: none; font-size: 1rem; }
    
    .menu-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; }
    @media (max-width: 1024px) {
      .menu { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; background: #00457c; width: 100%; }
      .menu a { margin: 5px 0; text-align: center; }
      .menu-toggle { display: block; }
      .menu .mobile-hide { display: none; }
    }
    
    
    @media (max-width: 1024px) {
       nav .logo { font-size: 2rem; font-weight: bold; margin-top:15px;}
      .menu logo {font-size: 44px; }
      
      .menu { font-size: 22px; display: none; flex-direction: column; position: absolute; top: 120px; left: 0; background: #00457c; width: 100%; }
      .menu a { font-size: 22px; margin: 5px 0; text-align: center; }
      .menu-toggle { display: block; }
      .menu .mobile-hide { display: none; }
    
    
    
    
/* Responsive tweaks */
@media (max-width: 768px) {
    
    
  nav { top: 140px; font-size: 44px; background: #00457c; color: #fff; padding: 10px 20px; display: flex; align-items: center; justify-content: space-between; }  
    
    
  h1 {
    top: 200px;
    font-size: 28px;
  }
  .hero-content h2 {
    font-size: 26px;
  }
  .mid-card h3 {
    font-size: 24px;
  }
  .mid-card .meta {
    font-size: 20px;
  }
  .mid-card .excerpt {
    font-size: 20px;
  }
  .strip-card h4 {
    font-size: 22px;
  }
  .strip-card .meta {
    font-size: 18px;
  }
  .mid-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .mid-card img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 15px;
  }
  h1 {
    font-size: 24px;
  }
  .hero-card img {
    min-height: 250px;
    max-height: 250px;
  }
  .mid-card img {
    min-height: 250px;
    max-height: 250px;
  }
  .strip-card img {
    min-height: 250px;
    max-height: 250px;
  }
  .hero-content h2 {
    font-size: 24px;
  }
  .mid-card h3 {
    font-size: 22px;
  }
  .mid-card .meta {
    font-size: 18px;
  }
  .mid-card .excerpt {
    font-size: 18px;
  }
  .strip-card h4 {
    font-size: 20px;
  }
  .strip-card .meta {
    font-size: 16px;
  }
  .mid-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}