/* General Styles */
    body {
      font-family: 'Arial', sans-serif;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      background-color: #f4f4f4;
    }

    .footer {
      background-color: #333;
      color: #fff;
      padding: 40px 20px;
      margin-top: 40px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-section {
      margin-bottom: 20px;
    }

    .footer-section h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: #fff;
    }

    .footer-section p {
      font-size: 1rem;
      line-height: 1.6;
      color: #ccc;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section ul li {
      margin-bottom: 10px;
    }

    .footer-section ul li a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-section ul li a:hover {
      color: #007BFF;
    }

    .footer-section ul li i {
      margin-right: 10px;
      color: #007BFF;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      color: #fff;
      font-size: 1.2rem;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #007BFF;
    }

    .newsletter-form {
      display: flex;
      gap: 10px;
    }

    .newsletter-form input {
      flex: 1;
      padding: 10px;
      border: none;
      border-radius: 5px;
      outline: none;
    }

    .newsletter-form button {
      padding: 10px 20px;
      background-color: #007BFF;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .newsletter-form button:hover {
      background-color: #0056b3;
    }

    .footer-bottom {
      text-align: center;
      padding: 20px 0;
      border-top: 1px solid #444;
      margin-top: 20px;
    }

    .footer-bottom p {
      margin: 0;
      font-size: 0.9rem;
      color: #ccc;
    }

    /* Community Section Styles */
.community {
  text-align: center;
}

.community h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.community p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.progress-bar {
  background-color: #444;
  border-radius: 10px;
  height: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.progress-bar .progress {
  background-color: #007BFF;
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
}

.progress-bar span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  color: #fff;
}


.join-button{
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.join-button:hover {
  background-color: #0056b3;
}

.community-note {
  font-size: 0.8rem;
  color: #999;
}

.community-note a {
  color: #007BFF;
  text-decoration: none;
}

.community-note a:hover {
  text-decoration: underline;
}

    /* Responsive Design */
    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr;
      }

      .newsletter-form {
        flex-direction: column;
      }

      .newsletter-form button {
        width: 100%;
      }
    }