.title {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: var(--blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.subtitle {
  text-align: center;
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 2rem;
}

.top-button {
  background-color: var(--red);
  color: var(--blue);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  text-decoration: none;
  border-radius: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.top-button:hover {
  background-color: var(--dark-red);
  color: white;
}

.pitch {
  background-color: #e7e7e7;
  padding: 2rem;
  text-align: center;
  font-size: 1.25rem;
  color: #333;
  border-left: 5px solid var(--blue);
}

.intro {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0.5rem;
}

.intro-image {
  flex: 1;
  height: 30rem;
  margin-right: 2rem;
  border-radius: 1rem;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.intro-content {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
  text-align: center;
}

.intro-content h1 {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.intro-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.intro-content .button {
  background-color: var(--blue);
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.intro-content .button:hover {
  background-color: var(--dark-blue);
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 auto 5rem auto;
  padding: 0;
}

.highlight-box {
  background-color: #ffffff;
  border-left: 5px solid var(--contrast);
  padding: 1.1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  max-width: 80%;
  height: 100%;
  margin: auto;
}

.highlight-box h2 {
  color: var(--blue);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.highlight-box p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.button-small {
  background-color: var(--contrast);
  color: var(--very-dark-blue);
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.button-small:hover {
  background-color: var(--dark-contrast);
  color: #fff;
}

.events-section {
  padding: 3rem 1rem;
  background-color: var(--light-blue);
  color: #333;
  text-align: center;
  width: 80%;
}

.events-section h2 {
  font-size: 1.75rem;
  color: var(--blue);
  margin-bottom: 3rem;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  display: flex;
  background: white;
  border-left: 5px solid var(--contrast);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 1.25rem;
  border-radius: 6px;
  align-items: flex-start;
  text-align: left;
}

.event-date {
  min-width: 60px;
  text-align: center;
  margin-right: 1rem;
  background-color: var(--contrast);
  color: white;
  border-radius: 4px;
  padding: 0.5rem 0;
}

.event-date .month {
  display: block;
  font-size: 0.9rem;
  font-weight: bold;
}

.event-date .day {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.event-details h3 {
  color: var(--blue);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.event-details p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

.event-meta {
  font-size: 0.9rem;
  color: #666;
}

.cta-banner {
  background-color: var(--blue);
  color: white;
  text-align: center;
  padding: 3rem 1.5rem;
  margin-top: 3rem;
  width: 100%;
}

.cta-banner h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-banner .button {
  background-color: var(--contrast);
  color: var(--blue);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-banner .button:hover {
  background-color: var(--dark-contrast);
  color: #fff;
}

/* Responsive layout for smaller screens */
@media (max-width: 700px) {
  .title {
    font-size: 2rem;
    margin-top: 1.5rem;
  }

  .subtitle {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .pitch {
    font-size: 1rem;
    padding: 1.5rem 1rem;
    margin: 1.5rem 1rem 2rem 1rem;
  }

  .intro {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }

  .intro-image {
    width: 100%;
    height: auto;
    margin: 0;
    object-fit: cover;
  }

  .intro h1 {
    font-size: 1.5rem;
  }

  .intro-content {
    padding: 0;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .highlight-box {
    max-width: 95%;
    justify-content: center;
  }

  .events-section {
    width: 100%;
    padding: 2rem 1rem;
  }

  .cta-banner {
    padding: 2rem 1rem;
    justify-content: center;
  }

  .cta-banner h2 {
    font-size: 1.4rem;
  }

  .cta-banner p,
  .intro p {
    font-size: 1rem;
  }

  .button,
  .button-small {
    display: inline-block;
    width: 80%;
    max-width: 300px;
    text-align: center;
  }
}
