* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  background-color: #f5f7fa;
  color: #403e72;
  line-height: 1.7;
}

a {
  color: #5b5a82;
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: #403e72;
}

.hero-section {
  background-color: #403e72;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-section img {
  width: 200px;
  height: auto;
  margin-bottom: 25px;
}

.title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  color: #b0aab3;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.navigation {
  width: 100%;
  background-color: #403e72;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  margin: auto;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navigation a {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.navigation a img {
  width: 20px;
  height: auto;
  margin-left: 5px;
}

.navigation a span {
  color: #f2f01a;
}

.navigation a:hover {
  border-bottom: 2px solid #fbf6df;
}

.hero {
  width: 100%;
  height: auto;
  background: linear-gradient(135deg, #fbf6df 0%, #ffffff 100%);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #403e72;
  margin-bottom: 15px;
}

.hero p {
  text-align: center;
  width: 100%;
  font-size: 1.15rem;
  margin: 0 auto;
  color: #5b5a82;
}

.hero-img {
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
}

.hero-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.agenda {
  padding: 60px 20px;
  background-color: #ffffff;
}

.agenda-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.agenda h2 {
  text-align: center;
  color: #403e72;
  font-size: 2rem;
  margin-bottom: 50px;
  position: relative;
}

.agenda h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #403e72;
  margin: 12px auto 0;
  border-radius: 2px;
}

.agenda-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  width: 100%;
}

.agenda-category h3 {
  color: #403e72;
  font-size: 1.4rem;
  margin-bottom: 15px;
  padding-left: 12px;
  border-left: 4px solid #5b5a82;
}

.card {
  width: 60%;
  background: linear-gradient(135deg, #fbf6df 0%, #ffffff 100%);
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 18px;
  object-fit: cover;
}

.card h4 {
  color: #403e72;
  margin: 10px 0;
  font-size: 1.3rem;
}

.card p {
  font-size: 0.95rem;
  color: #5b5a82;
  margin-bottom: 12px;
}

.card ul {
  padding-left: 20px;
  margin-bottom: 10px;
  width: 100%;
}

.card ul li {
  margin-bottom: 6px;
  color: #5b5a82;
}

.card a {
  margin-top: 10px;
  background: #5b5a82;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.card a:hover {
  background-color: #403e72;
}

.partners {
  background: linear-gradient(135deg, #fbf6df 0%, #ffffff 100%);
  text-align: center;
  padding: 50px 20px;
}

.partners h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #403e72;
  position: relative;
}

.partners h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #403e72;
  margin: 12px auto 0;
  border-radius: 2px;
}

.partners p {
  font-size: 1rem;
  color: #5b5a82;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.partner-logos {
  border-radius: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  gap: 30px;
}

.partner-logos img {
  max-width: 80px;
  height: auto;
}

.partner-logos img:hover {
  filter: grayscale(0%);
}

.contact {
  background: linear-gradient(135deg, #fbf6df 0%, #ffffff 100%);
  text-align: center;
  padding: 50px 20px;
}

.contact h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #403e72;
}

.contact .contact-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-info h3 {
  color: #403e72;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #5b5a82;
  padding-bottom: 5px;
  text-align: center;
}

.location-map {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin-bottom: 20px;
  text-align: center;
}

.location-map p {
  margin-top: 10px;
  margin-bottom: 20px;
  color: #5b5a82;
}

.map-container {
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-details {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  margin-bottom: 20px;
  text-align: left;
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.contact-details ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #5b5a82;
  font-size: 1rem;
  gap: 5px;
}

.contact-details ul li i {
  color: #5b5a82;
  font-size: 1.2rem;
  margin-right: 10px;
  width: 25px;
  text-align: center;
  flex-shrink: 0;
  padding-top: 2px;
}

.footer {
  background-color: #403e72;
  text-align: center;
  padding: 25px 10px;
  font-size: 0.9rem;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .contact-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 20px 15px;
  }

  .hero-section img {
    width: 150px;
    margin-bottom: 20px;
  }

  .title {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1.3rem;
    margin-top: 10px;
  }

  .navigation {
    padding: 10px 15px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .navigation a {
    font-size: 0.9rem;
  }

  .agenda-container {
    width: 100%;
    padding: 0 15px;
  }

  .card {
    width: 100%;
    padding: 16px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .location-map,
  .contact-details {
    width: 100%;
    max-width: unset;
    min-width: unset;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .contact .map-container {
    height: 300px;
  }

  .contact-details ul {
    padding: 0;
  }

  .contact-details ul li {
    font-size: 0.9rem;
  }
}
