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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Century Gothic', 'Avant Garde', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #f4f4f4;
  background: #0a1628;
}

.slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  border-bottom: 1px solid #1a365d;
}

.slide-content {
  max-width: 900px;
  width: 100%;
}

.slide-hero {
  background: linear-gradient(135deg, #0a1628 0%, #1a365d 100%);
  border-bottom: 2px solid #c9a227;
}

.slide-resources {
  background: #1a365d;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  color: #c9a227;
  margin-bottom: 0;
}

h2 {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.3;
  color: #c9a227;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #c9a227;
}

p {
  margin-bottom: 1.5rem;
  text-align: left;
}

a {
  color: #c9a227;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

a:hover {
  border-bottom-color: #c9a227;
}

footer {
  background: #1a365d;
  padding: 40px 20px;
  text-align: center;
  border-top: 2px solid #c9a227;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

footer p {
  margin: 0;
  font-size: 14px;
  color: #f4f4f4;
  opacity: 0.7;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .slide {
    min-height: auto;
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .slide {
    padding: 30px 15px;
  }
}
