.footer {
  background-color: #000307; 
  color: #ffffff;
  padding: 25px 0; /* Increased padding for uniform space */
}

.footer-content {
  display: flex;
  justify-content: space-between; /* Use space-between for more balance */
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  padding: 20px;
}

.footer-content div {
  flex: 1;
  margin: 20px; /* Increased margin for equal spacing */
  min-width: 220px; /* Smaller min-width for better responsiveness */
}

.footer-h3 {
  font-size: 1.4rem; /* Slightly reduced font size for uniformity */
  margin-bottom: 15px;
  color: rgb(255, 221, 0);
}

.fp, .footer-list > li {
  font-size: 1rem;
  line-height: 1.7; /* Increased line spacing for readability */
}

.fp>a:hover{
  color: rgb(255, 221, 0);
}
.features {
  text-align: center; /* Center align "Features" */
}

.features ul {
  list-style-type: none;
  padding: 0;
}

.features li {
  margin: 8px 0; /* Slightly increased margin for better spacing */
}

.features a {
  color: #ffffff;
  text-decoration: none;
}

.features a:hover {
  text-decoration: underline;
  color: rgb(255, 221, 0);
}

/* Social Media Icons */
.social-media {
  margin: 0 auto; /* Center align the social media icons */
  padding: 0;
  text-align: center; /* Align icons in the center */
}

.social-media a {
  color: white;
  font-size: 24px;
  text-decoration: none;
  margin: 10px; /* Increased margin for better spacing between icons */
}

.social-media a:hover {
  color: rgb(255, 221, 0);
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center; /* Ensure everything is centered on mobile */
  }

  .footer-content div {
    margin: 15px 0;
    text-align: center; /* Center-align each section on mobile */
  }
}

@media (max-width: 850px) {
  .features {
    text-align: center; /* Keep text centered on smaller screens */
  }
}
