@charset "utf-8";
/* CSS Document */


body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff6c9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #6a4fa3;
  color: white;
  text-align: center;
  padding: 30px 20px 20px 20px;
}

header h1 {
  margin: 0 0 10px 0;
}

header p {
  max-width: 800px;
  margin: 10px auto;
}

header img {
  width: 340px;
  height: auto;
  display: block;
  margin: 15px auto 0 auto;
}



.main-nav {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 0;
  height: 60px;
  border-bottom: 1px solid #ddd;
}

.main-nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 0 15px;
  height: 60px;
  display: flex;
  align-items: center;
}

.main-nav a:hover {
  color: #6a4fa3;
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  top: 60px;
  left: 0;
  border-radius: 6px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  height: auto;
}

.dropdown-content a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.content-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.page-title {
  text-align: center;
  margin-bottom: 30px;
}

.trend {
  margin-bottom: 20px;
  background-color: white;
  border-radius: 8px;
  padding: 15px 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.trend:hover {
  transform: translateY(-3px);
}

.trend summary {
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  padding: 5px 0;
}

.trend ul {
  padding-left: 20px;
}

.trend a {
  color: #6a4fa3;
  text-decoration: none;
}

.trend a:hover {
  text-decoration: underline;
}

.trend-image {
  text-align: center;
  margin-top: 30px;
}

.trend-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.site-footer {
  background-color: #6a4fa3;
  color: white;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-section {
  max-width: 1000px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {

  .main-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  header {
    padding: 30px 15px;
  }

  .content-wrapper {
    margin: 30px auto;
  }

  .site-footer {
    text-align: center;
  }
}
section img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}

