<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.content {
  padding: 50px
}

body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #09101A;
  margin: 0;
  color: #fff;
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Container to center and constrain content */
.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 50px;
  /* Adds 50px space on both left and right */
  box-sizing: border-box;
}

/* Header styling */
header {
  background-color: #25BF76;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  box-sizing: border-box;
}

/* Logo in header */
.logo {
  font-size: 24px;
  font-weight: bold;
}

/* Navigation in header */
nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  width: 100%;
  padding: 30px 50px;
  margin-top: 30px;
  background-color: #0F1724;
  border-radius: 8px;
  box-sizing: border-box;
  text-align: left;
}

/* Headings and text */
h1,
h2,
h3 {
  margin-bottom: 16px;
  color: #25BF76;
}

p {
  margin-bottom: 50px;
}

/* List styling */
.dalist {
  display: flex;
  justify-content: center;
}

ul {
  list-style-type: disc;

  /* Indent from left */
  margin-bottom: 20px;
  text-align: left;
  margin-bottom: 50px;
}

li {
  color: #ffffff;
  /* Text remains white */
  margin-bottom: 8px;
  position: relative;
}

li::marker {
  color: #25BF76;
}

.Banner1 img {
  width: max-content;
  height: 200px;
  background-color: #111;
}

.Banner2 img {
  width: max-content;
  height: 200px;
  background-color: #111;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    color: #09101A;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 30px;
    background-color: #2f855a;
    width: 200px;
    display: none;
    padding: 20px;
    box-shadow: 0 4px 8px #09101A;
    border-radius: 10px;
  }

  #menu-toggle:checked+.hamburger+nav .nav-links {
    display: flex;
  }

  .form-box {
    padding: 20px 10px;
  }

  footer a:nth-child(2),
  /* Twitter/X */
  footer a:nth-child(4),
  /* YouTube */
  footer a:nth-child(5),
  /* TikTok */
  footer a:nth-child(6)

  /* Pinterest */
    {
    display: none;
  }

}</pre></body></html>