body {
  font-family: Arial, sans-serif;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 96.9vh;
  margin: 0;
  background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
  flex-direction: column;
}

  
main {
  flex: 1;
}

.card {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 800px;
  overflow: hidden;
  text-align: center;
  margin: 20px auto;
}
h2 {
  color: #00796b;
  text-align: center;
  margin-bottom: 20px;
  font-size: 2.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-family: "Playfair Display", serif;
}
p {
  margin-bottom: 10px;
  text-align: center;
  font-size: 1.2em;
  color: #263238;
}
ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
li {
  margin: 5px;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #009688;
}
li:hover {
  transform: translateY(-3px);
  background-color: #e0f2f1;
}
@media (max-width: 768px) {
  body {
    padding: 10px;
    min-height: 97.9vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  h2 {
    font-size: 20px;
  }
  .card {
    padding: 15px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc(100% - 40px);
    max-width: none;
  }
}

.copy-btn {
  width: 100%;
  padding: 12px;
  margin: 15px 0;
  background: #009688;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.copy-btn:hover {
  background: #00796b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 150, 136, 0.3);
}

.copy-btn.success {
  background: #4caf50 !important;
}

.material-icons {
  font-family: "Material Icons";
  font-size: 18px;
}

.m-maintenance-footer-wrapper {
  padding: 1.5rem 0;
  background: transparent;
  margin-top: auto;
}



.copyright {
  text-align: center;
  color: #616161;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.policy-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.policy-info a {
  padding: 0 1rem;
  position: relative;
}

.policy-info a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -3px;
  color: #00796b;
  top: 50%;
  transform: translateY(-50%);
}

.policy-info a {
  color: #00796b;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.policy-info a:hover {
  color: #004d40;
  transform: translateY(-1px);
}

.policy-info img {
  height: 16px;
  filter: brightness(0.8);
}

@media (max-width: 768px) {
  .m-maintenance-footer-wrapper {
    padding: 1rem 15px;
  }

  .policy-info {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .policy-info a::after {
    display: none;
  }

  .copyright {
    text-align: center;
  }
}

.footer-content {
  display: grid;
  gap: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, auto);
  }
  .copyright-block {
    grid-column: 1 / -1;
  }
}
