﻿/* Footer Styles */
.footer {
  background: var(--indigo-purple); /* Blue Gradient */
  color: var(--white);
  text-align: center;
  padding: 20px 0;
}

.footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.footer .footer-content .footer-left {
  text-align: left;
}

.footer .footer-content .footer-left .footer-left img {
  max-width: 150px;
  display: block;
  margin: 5px auto;
}

.footer .footer-content .footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.footer .footer-content .footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s ease-in-out;
}

.footer .footer-content .footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer .footer-content .footer-left {
    text-align: left;
    flex: 2;
  }
  .footer .footer-content .footer-links {
    text-align: left;
    flex: 1;
  }
}
.footer .footer-divider {
  width: 90%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  margin: 15px auto;
}

.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  opacity: 0.8;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.footer .footer-bottom .term-cnd img {
  display: none;
}

.footer .footer-bottom a {
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.footer .footer-bottom a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: 0;
  }
  .footer .footer-bottom {
    flex-direction: column-reverse;
    text-align: center;
    margin-top: 20px;
  }
  .footer .footer-bottom div {
    margin-top: 10px;
  }
  .footer .footer-bottom .term-cnd {
    display: flex;
    justify-content: space-between;
    align-items: self-start;
    margin-top: 0;
    font-size: 9px;
  }
  .footer .footer-bottom .term-cnd img {
    display: block;
  }
  .footer .footer-bottom p {
    padding: 10px;
    font-size: 10px;
  }
  .footer .footer-divider {
    margin: 5px auto;
  }
  .footer-content {
    /* flex-direction: column; */
    justify-content: space-between;
    text-align: center;
  }
  .footer-content .footer-left {
    text-align: center;
    margin-bottom: 10px;
    flex: 3;
    display: none;
  }
  .footer-content .footer-links {
    flex-direction: row;
    gap: 15px !important;
    justify-content: space-between !important;
    margin-top: 10px;
    flex: 2;
  }
  .footer-content .footer-links a {
    font-size: 12px !important;
  }
}
