<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  margin: 0;
  padding: 0;
}

/* Navigation Styles */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid #00ffcc;
  position: relative;
  z-index: 1000;
}

.site-nav .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00ffcc;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #00ffcc;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #00ffcc;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  z-index: 1010;
}

@media screen and (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    padding: 1rem;
    display: none;
    border-top: 1px solid #00ffcc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 1rem;
  }

  .nav-links li a {
    color: #ffffff;
    font-size: 1.1rem;
  }
}

/* Main Content Container */
.content {
  max-width: 960px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Headings and Text */
h1, h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
  margin-top: 2rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Highlight Box */
.highlight-box {
  background-color: rgba(0, 255, 204, 0.1);
  border-left: 4px solid #00ffcc;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* Newsletter */
.newsletter {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 2rem;
  border: 1px solid #00ffcc;
}

.newsletter h2 {
  color: #00ffcc;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.newsletter input[type="text"],
.newsletter input[type="email"] {
  padding: 0.75rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  width: 100%;
}

.newsletter button {
  padding: 0.75rem;
  background-color: #00ffcc;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter button:hover {
  background-color: #00ddb3;
}

/* Button Class (reusable) */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #00ffcc;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: #00ddb3;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-top: 1px solid #00ffcc;
  margin-top: 3rem;
}

footer p {
  color: #ffffff;
}

footer .social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

footer .social-links li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #00ffcc;
}

footer .social-links li a:hover {
  text-decoration: underline;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
}

.footer-links li a {
  font-size: 0.85rem;
  color: #00ffcc;
}

.footer-links li a:hover {
  text-decoration: underline;
  color: #ffffff;
}

/* Footer Notes */
.footer-note,
.footer-disclaimer {
  font-size: 0.75rem;
  color: #bbbbbb;
  margin-top: 0.5rem;
}

.footer-disclaimer {
  max-width: 700px;
  margin: 0.5rem auto 0;
  line-height: 1.4;
}

/* Contact Form */
.contact-container {
  max-width: 700px;
  margin: 4rem auto 0 auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.contact-container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  background-color: #00ffcc;
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #00ddb3;
}

.contact-message {
  margin-top: 1rem;
  text-align: center;
  font-weight: bold;
}

.contact-message.success {
  color: #00ffcc;
}

.contact-message.error {
  color: #ff4444;
}

/* Responsive */
@media (max-width: 700px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    width: 100%;
  }

  .contact-container {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }

  .contact-container h1 {
    font-size: 1.6rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .contact-form button {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.95rem;
  }

  button,
  .btn-primary {
    font-size: 0.95rem;
  }
}</pre></body></html>