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

body {
  background: #f4f8fc;
  color: #1f2937;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.8;
}

.hero {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 58, 144, .35);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero h1 {
    color: #edff00;
    font-family: 'Peralta', serif;
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: bold;
    text-align: center;
    text-shadow: 0 2px 10px rgb(9 9 9 / 35%);
}

main {
  max-width: 1100px;
  margin: auto;
  padding: 60px 30px;
}

.intro,
.comments {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.intro {
  margin-bottom: 50px;
}

.intro-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
}

.intro h2 {
    color: #083A90;
    font-family: 'Peralta', serif;
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 24px;

    text-shadow:
        1px 1px 3px rgba(0,0,0,.1);
}

.intro p {
  font-size: 1.08rem;
  margin-bottom: 22px;
}

.intro ul {
  padding: 24px 0 24px 38px;
  margin: 0 0 22px 0;
}

.intro li {
  padding-left: 8px;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.intro-gif-column {
  width: 100%;
}

.intro-gif-column img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(8, 58, 144, .18);
  background: #e5eef8;
}

.side-note {
  position: relative;
  margin-top: 40px;
  padding: 20px 24px;
  background: #edf4ff;
  border-left: 5px solid #083A90;
  border-radius: 12px;
  color: #4b5563;
  font-size: .95rem;
  font-style: italic;
  line-height: 1.7;
}

.side-note::before {
  content: "*** ";
  color: #083A90;
  font-weight: 700;
  letter-spacing: 2px;
}

.side-note::after {
  content: " 😂";
  font-style: normal;
}

.comments h2 {
  margin-bottom: 30px;
  color: #083A90;
  font-size: 2rem;
}

footer {
  margin-top: 80px;
  text-align: center;
  padding: 30px;
  color: #6b7280;
}

@media (max-width: 900px) {
  .intro-content {
    grid-template-columns: 1fr;
  }

  .intro-gif-column img {
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 450px;
  }

  .hero h1 {
    font-size: 3rem;
    padding: 0 20px;
  }

  .intro,
  .comments {
    padding: 35px;
  }

  .intro ul {
    padding-left: 30px;
  }
}