/* Global Styles */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f2f2ff;
  color: #212334;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header Section */
header {
  position: relative;
  background: url("background.jpg")
    center/cover no-repeat;
  color: #f2f2ff;
  text-align: center;
  padding: 6rem 1rem;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(33, 35, 52, 0.5);
  z-index: 0;
}

header .content {
  position: relative;
  z-index: 1;
}

header img {
  height: 30px;
  margin-bottom: 1rem;
}

header h1 {
  margin: 0;
  font-size: 2.8rem;
  color: #ff0000;
  font-weight: 700;
}

header p {
  font-size: 2rem;
  max-width: 650px;
  margin: 1rem auto 0;
  font-weight: 300;
}

/* Content Sections */
section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

h2 {
  color: #0277aa;
  border-left: 4px solid #ff0000;
  padding-left: 0.6rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li::before {
  content: "• ";
  color: #ff0000;
  font-weight: bold;
}

/* Buttons */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-block;
  background-color: #0277aa;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.button:hover {
  background-color: #ff0000;
  transform: translateY(-2px);
}

.button.secondary {
  background-color: #ff0000;
}

.button.secondary:hover {
  background-color: #0277aa;
}

/* Footer */
footer {
  text-align: center;
  background-color: #212334;
  color: #f2f2ff;
  padding: 1.5rem 0;
  font-size: 0.95rem;
  font-weight: 300;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
  header h1 {
    font-size: 2.2rem;
  }
  header p {
    font-size: 1rem;
  }
  .actions {
    flex-direction: column;
    align-items: center;
  }
}
