 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #5633d8 0%, #5633d8 20%, #fcf8ff 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
  }

  .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
  }

  header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo {
    font-weight: 900;
    font-size: 1.8rem;
    color: white;
    letter-spacing: -1px;
  }

  .hero {
    padding: 100px 0 150px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before,
  .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
  }

  .hero::before {
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
  }

  .hero::after {
    bottom: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
  }

  .hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
  }

  .main-content {
    padding: 0 0 100px;
    position: relative;
  }

  .content-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 40px;
  }

  .policy-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(86, 51, 216, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 90%;
  }

  .policy-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(86, 51, 216, 0.05) 0%, rgba(124, 108, 232, 0.05) 100%);
    border-radius: 50%;
    transform: rotate(45deg);
  }

  .policy-content > * {
    position: relative;
    z-index: 2;
  }

  .policy-content h2,
  .policy-content h3 {
    color: #5633d8;
  }

  .policy-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    margin-top: 50px;
    letter-spacing: -1px;
  }

  .policy-content h2:first-child {
    margin-top: 0;
  }

  .policy-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
  }

  .policy-content p,
  .policy-content li {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
  }

  .policy-content ul {
    margin: 24px 0;
    padding-left: 24px;
  }

  @media (max-width: 768px) {
    .hero h1 {
      font-size: 3rem;
    }

    .policy-content {
      padding: 40px 30px;
      max-width: 100%;
    }

    .content-wrapper {
      padding: 20px 0;
    }
  }

  @media (max-width: 480px) {
    .container {
      padding: 0 20px;
    }

    .hero h1 {
      font-size: 2.5rem;
    }

    .policy-content {
      padding: 30px 20px;
      border-radius: 24px;
    }
  }

    .enhanced-footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #5633D8 100%);
  color: #FCF8FF;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.footer-top {
  padding: 60px 40px 40px;
  position: relative;
  background-color: rgba(86, 51, 216, 0.92);
}

.footer-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 1px;
  background-color: rgba(252, 248, 255, 0.3);
}

.footer-heading {
  font-family: "Poppins", serif;
  font-weight: 700;
  color: #FCF8FF;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block; 
  margin-top: 0;
  height: 36px; 
  line-height: 36px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%; 
  height: 3px;
  background-color: #FCF8FF;
}

.footer-desc {
  font-family: "Poppins", serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.store-button {
  display: inline-block;
  transition: transform 0.3s ease;
}

.store-button:hover {
  transform: translateY(-5px);
}

.playstore-button {
  height: auto;
  max-width: 140px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #FCF8FF;
  text-decoration: none;
  font-family: "Poppins", serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0.9;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 20px;
}

.footer-links a:hover::before {
  transform: translateX(5px);
}

.contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.contact-item p {
  font-family: "Poppins", serif;
  font-size: 0.95rem;
  margin: 0;
  opacity: 0.9;
}

.social-text {
  font-family: "Poppins", serif;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(252, 248, 255, 0.1);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
  background-color: rgba(252, 248, 255, 0.2);
}

.social-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  padding: 25px 40px;
  font-family: "Poppins", serif;
  background-color: #5633D8;
}

.copyright p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: #FCF8FF;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}


.footer-columns-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.footer-column {
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-columns-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.footer-column {
  padding: 0 15px;
  margin-bottom: 30px;
}

.footer-column:first-child,
.footer-column:nth-child(2),
.footer-column:nth-child(3),
.footer-column:nth-child(4) {
  padding-top: 0;
}

@media (max-width: 991px) {
  .footer-top {
    padding: 60px 30px 30px;
  }
  
  .footer-heading {
    font-size: 1.3rem;
    margin-bottom: 15px;
    height: 32px;
    line-height: 32px;
  }
}


@media (max-width: 767px) {
  .footer-top {
    padding: 40px 20px 20px;
  }
  
  .footer-bottom {
    padding: 20px;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 15px;
  }
  
  .copyright p {
    margin-bottom: 10px;
    text-align: center;
  }
  
  .footer-column {
    width: 100%;
    padding: 0 10px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(252, 248, 255, 0.3);
    margin-bottom: 0;
  }
  
  .footer-column:last-child {
    border-bottom: none;
  }
  
  .footer-heading {
    height: auto;
    line-height: normal;
    margin: 0 auto 15px;
    padding-top: 30px;
    display: inline-block;
  }
  

  .footer-about .footer-heading {
    padding-top: 0;
  }
  

  .contact-item {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
  

  .footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links li {
    width: 25%;
    text-align: center;
    margin: 0 5px 15px;
  }
  
  .footer-links a {
    padding-left: 0;
  }
  
  .footer-links a::before {
    content: "";
    position: static;
  }
  
  .footer-links a:hover {
    padding-left: 0;
  }
}

@media (max-width: 575px) {
  .download-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }
  
  .footer-heading {
    font-size: 1.2rem;
  }
  
  .footer-desc, .social-text {
    font-size: 0.9rem;
  }
  
  .footer-legal {
    gap: 15px;
  }
  
  .footer-legal a {
    font-size: 0.8rem;
  }
}

@media (min-width: 992px) {
    .footer-links {
        padding-left: 5%;
    }
}
@media (max-width: 767px) {
 
  .footer-contact .footer-heading,
  .footer-social .footer-heading,
  .footer-social .social-text {
    display: none;
  }

  .footer-column.footer-contact,
  .footer-column.footer-social {
    border-bottom: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  

  .footer-column.footer-contact,
  .footer-column.footer-social {
    width: 100%;
    padding-top:20px;
    text-align: center;
  }
  

  .footer-column.footer-contact {
    padding-bottom: 5px;
    margin-bottom: 0;
  }
  
  .footer-column.footer-social {
    padding-top: 5px;
  }
  

  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  .contact-item {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .social-links {
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
  }
  

  .footer-columns-wrapper .footer-column:nth-child(3)::after {
    display: none;
  }
}