
    body {
     margin: 0;
     font-family: 'Segoe UI', sans-serif;
     background-color: #000;
     color: white;
    }

    nav {
     background-color: #751111;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 50px;
    }

  .logo {
  font-weight: bold;
  font-size: 24px;
  color: white;
  text-decoration: none; /* Remove underline */
}


    nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    }

    nav ul li {
    display: inline;
    }

    nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    }

    .join-btn {
  background-color: #f00;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* make link text look like button */
}


    .hero {
     background: url('assets/images/about.png') no-repeat center;
     background-size: cover;
     height: 90vh;
     display: flex;
     align-items: center;
     justify-content: flex-start;
     padding-left: 60px;
     position: relative;
    }

    .container {
      position: relative;
      z-index: 1;
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(6px);
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.2);
      padding: 40px;
      margin-bottom: 40px;
      box-shadow: 0 0 10px rgba(0,0,0,0.4);
    }

    .section h2 {
      color: #FFD6D6;
      font-size: 28px;
      margin-bottom: 20px;
      border-left: 5px solid #f00;
      padding-left: 15px;
    }

    .section p, .section li {
      font-size: 17px;
      line-height: 1.7;
      color: #f1f1f1;
      margin-bottom: 15px;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .feature-box {
      background-color: rgba(255,255,255,0.1);
      padding: 20px;
      border-radius: 12px;
      transition: transform 0.3s ease;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .feature-box:hover {
      transform: translateY(-5px);
      background-color: rgba(255,255,255,0.15);
    }

    .feature-box h3 {
      color: #FF9999;
      margin-bottom: 10px;
      font-size: 20px;
    }

    .testimonials blockquote {
      font-style: italic;
      border-left: 4px solid #f00;
      padding-left: 15px;
      margin-bottom: 20px;
      color: #e0e0e0;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        align-items: flex-start;
      }

      nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
      }

      .section {
        padding: 20px;
      }
    }