@import url("/assets/css/app.css");

body {
  position: relative;
  padding-top: 5%;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.6;
}

.logo {
  width: 100px;
  height: 50px;
  position: fixed;
  left: 25px;
  top: 10px;
}

.cp {
  width: 60%;
  color: var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

h1 {
  color: var(--color-black);
  border-bottom: 2px solid var(--light-dark-color);
  padding-bottom: 10px;
  align-self: center;
}
h2 {
  color: var(--color-black);
  margin-top: 25px;
}
.last-updated {
  color: var(--color-black-opacity);
  font-style: italic;
  margin-bottom: 30px;
  align-self: center;
}
.section {
  margin-bottom: 25px;
}
.contact-info {
  background-color: #f8f9fa;
  padding: 15px;
  border-left: 4px solid var(--main-color);
  margin: 20px 0;
}
ul, ol {
  padding-left: 20px;
}
li {
  margin-bottom: 8px;
}
.footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--light-dark-color);
  font-size: 0.9em;
  color: var(--color-black-opacity);
  align-self: center;
  width: 100%;
  height: 505px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
  .cp {
    width: 75%;
  }
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .logo {
    width: 80px;
    height: 40px;
    left: 15px;
    top: 15px;
  }

  .cp {
    width: 85%;
  }

  .contact-info {
    padding: 12px;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo {
    width: 60px;
    height: 30px;
    left: 10px;
    top: 10px;
  }

  .cp {
    width: 100%;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
    margin-top: 20px;
  }

  ul, ol {
    padding-left: 15px;
  }

  li {
    font-size: 0.9rem;
  }

  .contact-info {
    padding: 10px;
    margin: 15px 0;
  }

  .contact-info p {
    font-size: 0.9rem;
  }

  .footer {
    margin-top: 30px;
    font-size: 0.8rem;
  }
}