body {
  font-family: 'Open Sans', sans-serif;
  background-color: white;
  color: #111;
  margin: 0;
  padding: 0;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  background-color: white;
  border-bottom: 1px solid #eee;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

h1 {
  color: #C5A100;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
  line-height: 1;
}

/* Main container */
.container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
  text-align: center;
}

.container h2 {
  color: #C5A100;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.container p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

/* Stats section */
.highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-box {
  flex: 1 1 200px;
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.stat-box h3 {
  font-size: 2rem;
  color: #C5A100;
  margin: 0;
}

.stat-box p {
  font-size: 1rem;
  color: #555;
  margin-top: 0.5rem;
}

/* Chart image */
.chart-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}

/* Animation */
.fade-in {
  opacity: 0;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.2s;
}

@keyframes fadeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  body {
    color: #111;
    background-color: white;
  }

  .site-header {
    background-color: white;
  }

  .container h2, .stat-box h3 {
    color: #C5A100;
  }

  .container p, .stat-box p {
    color: #444;
  }

  .highlights {
    flex-direction: column; /* Stack the stat boxes vertically */
    gap: 1.5rem;
  }

  .stat-box {
    flex: 1 1 100%;  /* Allow the stat boxes to take full width */
  }
}
