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

/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #000000 0%, #001427 100%);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1 {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #ffffff;
}

h2 {
  color: #47a6ff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: #cccccc;
}

/* Header */
header {
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #47a6ff;
}

/* Footer */
footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.7;
}

.dot-separator {
  margin: 0 0.25rem;
}

/* Utilities */
.content-section {
  margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  header {
    padding: 1.5rem;
  }

  nav {
    gap: 1.5rem;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-left,
  .footer-right {
    gap: 1rem;
    flex-direction: column;
  }

  .dot-separator {
    display: none;
  }
}