body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #f9f9f9;
      color: #333;
      line-height: 1.6;
    }
    .container {
      max-width: 1100px;
      margin: auto;
      padding: 20px;
    }
    .about-header {
      text-align: center;
      padding: 40px 20px;
      background: linear-gradient(135deg, #007bff, #00c6ff);
      color: #fff;
      border-radius: 10px;
    }
    .about-header h1 {
      margin-bottom: 10px;
      font-size: 32px;
    }
    .about-section {
      background: #fff;
      margin-top: 30px;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .about-section h2 {
      color: #007bff;
      margin-bottom: 15px;
    }
    .about-section ul {
      padding-left: 20px;
    }
    .about-section ul li {
      margin-bottom: 8px;
    }
    .cta {
      margin-top: 30px;
      text-align: center;
    }
    .cta a {
      display: inline-block;
      background: #007bff;
      color: #fff;
      padding: 12px 25px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: bold;
    }
    .cta a:hover {
      background: #0056b3;
    }
    footer {
      text-align: center;
      padding: 15px;
      margin-top: 40px;
      font-size: 14px;
      color: #777;
    }

    /* Mobile Friendly */
    @media (max-width: 600px) {
      .about-header h1 {
        font-size: 24px;
      }
      .about-section {
        padding: 20px;
      }
    }
    /* footer */
    .footer {
  background: radial-gradient(
      at top left,
      #ff6ec4,
      transparent 40%
    ),
    radial-gradient(at bottom right, #7873f5, transparent 40%),
    linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-box ul {
  list-style: none;
  padding: 0;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #ff6ec4;
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.4s;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}
