* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  /* Responsive Design for Navbar */
  .navbar {
    background-color: #333;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .branding {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .branding img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .club-name {
    font-size: 1.2em;
    font-weight: bold;
  }
  
  .menu-toggle {
    font-size: 1.5em;
    background: none;
    border: none;
    color: white;
    display: none;
    cursor: pointer;
    margin-left: auto;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-left: auto;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    transition: background 0.3s, color 0.3s;
  }
  
  .nav-links li a:hover {
    background-color: #555;
    border-radius: 5px;
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #444;
      position: absolute;
      top: 60px;
      right: 0;
      width: 100%;
      padding: 10px 0;
      gap: 15px;
    }
  
    .nav-links.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }

  /*For the resources part*/
  .resources-section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: auto;
    text-align: center;
  }
  
  .resources-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #222;
  }
  
  .category {
    margin-bottom: 3rem;
    text-align: left;
  }
  
  .category h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #005599;
    text-align: center;
  }
  
  .resources-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .resource-card {
    display: block;
    background-color: #f7f9fc;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
  
  .resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
  }
  
  .resource-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #0066cc;
  }
  

   /* Responsive Design for Footer */
  
.footer {
    background-color: #111;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    margin-top: auto;
  }
  
  .footer h3 {
    margin: 20px 0 10px;
    font-size: 1.2em;
    color: white;
  }
  
  .footer ul {
    list-style-type: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
  }
  
  .footer li {
    margin: 8px 0;
    color: white;
  }
  
  .footer a {
    text-decoration: none;
    color: orange;
    font-weight: bold;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    margin-top: 20px;
  }
  
  .social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: orange;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .footer {
      font-size: 0.9em;
      padding: 15px;
    }
  
    .footer ul {
      padding: 0 10px;
    }
  
    .footer li {
      text-align: left;
    }
  
    .social-icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .social-icons a {
      font-size: 1.3em;
    }
  }