/* 
  First style block
*/
footer {
  background: #333; /* Example background color */
  color: #fff; /* Example text color */
  text-decoration: none;
}

footer a {
  color: #fff; /* Link color */
  text-decoration: none; /* Remove underline */
}

footer a:hover {
  text-decoration: underline; /* Optional hover effect */
}

/* =============================================================================================== */

/* 
  Second Style block
*/

/* Modal Styles */
.more-features-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease-in-out;
}

.more-features-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  width: 80%;
  max-width: 900px;
  position: relative;
  animation: slideIn 0.4s ease-out;
}

.close-modal {
  color: #888;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #333;
}

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.feature-column {
  flex: 1;
  min-width: 250px;
  padding: 0 15px;
  margin-bottom: 20px;
}

.feature-column h3 {
  margin-bottom: 15px;
  color: #333;
  font-size: 18px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.feature-column ul {
  padding-left: 20px;
}

.feature-column ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 5px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media screen and (max-width: 768px) {
  .more-features-content {
    width: 95%;
    margin: 10% auto;
  }

  .features-container {
    flex-direction: column;
  }

  .feature-column {
    padding: 0;
  }
}
