
  :root {
    --primary: #0033cc;
    --accent: #ffa500;
    --dark: #000;
    --light: #fff;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    scroll-behavior: smooth;
    line-height: 1.6;
  }
  
  header {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: var(--dark);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
  }
  
  header img {
    width: 150px;
    transition: transform 0.3s ease;
  }
  
  header img:hover {
    transform: scale(1.05);
  }
  
  nav ul {
    list-style: none;
    margin-top: 10px;
  }
  
  nav li {
    display: inline-block;
    margin: 0 15px;
  }
  
  nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  nav a:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  
  /* Hamburger Menu Styles */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin: 10px auto;
    width: max-content;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    display: block;
    border-radius: 2px;
  }
  
  /* Sections */
  section {
    padding: 50px 20px;
    margin: 40px auto;
    background-color: rgba(0, 0, 0, 0.85);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    max-width: 900px;
    text-align: center;
  }
  
  section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
  }
  
  p {
    margin-bottom: 20px;
  }

  .store-section {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  .store-section h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .time-slots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .slot-card {
    background-color: #111;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  }
  
  .slot-card h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .slot-card p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: #ccc;
  }
  
  .skill-dev-section .disclaimer {
    font-size: 0.9rem;
    margin-top: 25px;
    color: #aaa;
    font-style: italic;
  }
  
  
  
  #join-us {
    background: #111;
    padding: 60px 20px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    max-width: 900px;
    text-align: center;
  }
  
  .opportunities {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 30px 0;
  }
  
  .role-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: left;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .role-card h3 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .role-card ul {
    padding-left: 20px;
  }
  
  .role-card li {
    margin-bottom: 10px;
    line-height: 1.4;
  }
  
  /* CTA Banner */
  .cta-banner {
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: var(--dark);
    padding: 60px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }
  
  .cta-banner h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }
  
  .cta-button {
    background-color: var(--dark);
    color: var(--accent);
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .cta-button:hover {
    background-color: #222;
    color: white;
  }
  
  /* Tagline */
  .tagline {
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 20px;
  }
  
  /* Age Groups */
  .age-group {
    background: #111;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
    text-align: left;
  }
  
  .age-group h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
  }
  
  .age-group ul {
    padding-left: 20px;
  }
  
  .age-group li {
    margin-bottom: 10px;
    color: #ddd;
  }

  .sponsorship-section {
    background: #111;
    color: var(--light);
    padding: 60px 20px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1000px;
    text-align: center;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  }
  
  .sponsorship-section h2 {
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .sponsorship-section p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #ddd;
  }
  
  .sponsorship-tiers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .tier-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 0 8px rgba(255,255,255,0.05);
    text-align: left;
  }
  
  .tier-card h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 10px;
  }
  
  .tier-card .price {
    font-size: 1.4rem;
    color: var(--light);
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .tier-card ul {
    padding-left: 20px;
    list-style: disc;
  }
  
  .tier-card li {
    margin-bottom: 8px;
    color: #ccc;
  }
  
  
  /* Forms */
  form {
    display: flex;
    flex-direction: column;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .google-form-wrapper {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 900px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  }
  
  .google-form-wrapper iframe {
    border: none;
    width: 100%;
    min-height: 900px;
  }
  
  form input,
  form textarea {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #555;
    background: #111;
    color: var(--light);
    border-radius: 5px;
    transition: border-color 0.3s ease;
  }
  
  form input:focus,
  form textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 5px var(--accent);
  }
  
  form button {
    background-color: var(--accent);
    color: var(--dark);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
  }
  
  form button:hover {
    background-color: #cc8400;
  }
  
  /* Team */
  .team-photo {
    width: 180px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 20px;
  }
  
  .card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    text-align: center;
  }
  
  /* Gallery */
  #gallery {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    max-width: 1000px;
  }
  
  .faq-section {
    background-color: rgba(0, 0, 0, 0.8);
    margin: 40px auto;
    padding: 40px 20px;
    max-width: 800px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .faq-question {
    margin: 20px 0;
    text-align: left;
    width: 100%;
    background: var(--accent);
    color: var(--dark);
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s ease;
  }
  
  .faq-answer {
    display: none;
    padding: 15px 20px;
    background: #111;
    border-radius: 6px;
    margin-top: 8px;
    color: var(--light);
    line-height: 1.6;
  }
  
  .media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }
  
  .media-item {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  }
  
  /* Contact/Donation */
  .contact-btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 24px;
    background-color: var(--accent);
    color: var(--dark);
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .contact-btn:hover {
    background-color: #cc8400;
  }
  
  /* Footer */
  footer {
    background: linear-gradient(to right, var(--accent), var(--primary));
    text-align: center;
    padding: 20px 0;
    color: var(--dark);
  }
  
  .social-media {
    margin: 20px 0;
  }
  
  footer a {
    color: var(--dark);
    font-weight: bold;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* Mobile Responsive */
  @media (max-width: 600px) {
    header img {
      width: 100px;
    }
  
    nav li {
      display: block;
      margin: 10px 0;
    }
  
    .cta-banner h2 {
      font-size: 1.6rem;
    }
  
    section {
      padding: 30px 15px;
    }
  }
  
  /* Hamburger Nav Responsive Extension */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    nav ul {
      flex-direction: column;
      display: none;
      background: var(--light);
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      padding: 0;
      margin: 0;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
  
    nav ul.show {
      display: flex;
    }
  
    nav li {
      display: block;
      text-align: center;
      margin: 0;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
    }
  
    nav a {
      color: var(--dark);
      display: block;
    }
  }
  