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 */
}


    .container {
      position: relative;
      z-index: 1;
      padding: 80px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .contact-box {
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(6px);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 0 10px rgba(0,0,0,0.5);
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
    }

    .contact-info, .contact-form {
      flex: 1 1 400px;
    }

    .contact-info h2, .contact-form h2 {
      color: #FFD6D6;
      margin-bottom: 20px;
    }

    .contact-info p {
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 15px;
    }

    .contact-form form {
      display: flex;
      flex-direction: column;
    }

    .contact-form input, 
    .contact-form textarea {
      padding: 12px;
      margin-bottom: 15px;
      border: none;
      border-radius: 8px;
      font-size: 16px;
    }

    .contact-form textarea {
      resize: vertical;
      height: 120px;
    }

    .contact-form button {
      background-color: #f00;
      color: white;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .contact-form button:hover {
      background-color: #cc0000;
    }

    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        align-items: flex-start;
      }

      nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
      }

      .contact-box {
        flex-direction: column;
      }
    }