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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #303446;
  color: #c6d0f5;
  min-height: 100vh;
  display: flex;
  justify-content: left;
  align-items: left;
  padding: 2rem;
  line-height: 1.7;
}

.container {
  width: 75%;
  max-width: 1200px;
  margin: 0 auto;
  background: #414559;
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 3rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 1px rgba(140, 170, 238, 0.3);
  border: 1px solid #51576d;
  text-align: left;
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #8caaee;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(140, 170, 238, 0.3);
}

.semester {
  font-size: 1.2rem;
  color: #babbf1;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-title {
  text-align: left;
  font-size: 1.5rem;
  color: #ca9ee6;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 2px solid #51576d;
  padding-bottom: 0.5rem;
}

.description {
  text-align: justify;
  color: #c6d0f5;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.status {
  margin-top: 3rem;
  padding: 1.5rem;
  background: #292c3c;
  border-radius: 8px;
  border-left: 4px solid #81c8be;
  color: #a6d189;
  font-style: italic;
  font-size: 1.1rem;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #51576d, transparent);
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .container {
    padding: 2rem;
  }

  h1 {
    font-size: 2rem;
  }

  .semester {
    font-size: 1rem;
  }

  .description {
    text-align: left;
  }
}
