@font-face {
  font-family: 'Poppins';
  src: url('./Fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Poppins';
  src: url('./Fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('./Fonts/UbuntuSansMono-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Ubuntu';
  src: url('./Fonts/UbuntuSansMono-Medium.ttf') format('truetype');
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F6F6F6;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
nav {
  background-color: #000;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

nav .logo {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

nav .logo img {
  height: 48px;
  width: 48px;
}

/* Main Content */
main {
  flex: 1;
}

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 256px 2rem;
}

.hero-illustration {
  width: 512px;
  height: 512px;
  object-fit: contain;
}

.content-wrapper {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 2rem;
}

.content-wrapper h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
}

.content-wrapper .last-updated {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666;
  margin-bottom: 48px;
}

.content-wrapper h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ff6b35;
  margin-top: 48px;
  margin-bottom: 24px;
}

.content-wrapper p {
  font-family: 'Ubuntu', monospace;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-wrapper ul {
  font-family: 'Ubuntu', monospace;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-wrapper ul li {
  margin-bottom: 8px;
}

.content-wrapper hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 48px 0;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 128px 2rem;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

footer .logo img {
  height: 48px;
  width: 48px;
}

footer .divider {
  width: 100%;
  height: 1px;
  background-color: #323232;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

footer ul li a {
  color: #717171;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #ff6b35;
}

footer .copyright {
  text-align: right;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #717171;
}

footer .copyright p {
  margin: 0;
}

@media (max-width: 768px) {
  nav .container {
    flex-direction: column;
    gap: 1rem;
  }

  footer {
    padding: 64px 1rem;
  }

  footer .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  footer ul {
    justify-content: flex-start;
    gap: 1rem;
  }

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