/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #f7f9fc;
  color: #333;
}

/* Classic Header Style */
.header {
  background: #343a40; /* Dark background */
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: linear-gradient(120deg, #1d1f22, #343a40); /* Gradient effect */
  text-align: center;
  color: white;
}

.header .header-logo {
  width: 150px;
  margin-bottom: 20px;
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

/* Report Cards Section */
.report-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.report-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.report-card:hover {
  transform: translateY(-10px);
}

.report-card:hover img {
  transform: scale(1.1);
}

/* Title and Text */
.report-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.report-card .year {
  color: #1b1204;
  font-weight: bold;
  margin-bottom: 10px;
}

.report-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Download Button */
.report-card a {
  text-decoration: none;
  background: #5f553d;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.report-card a:hover {
  background: #745a30;
}

/* Load More Button */
#loadMoreBtn {
  background: #7e6c47;
  border: none;
  color: white;
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#loadMoreBtn:hover {
  background-color: #90815a;
}
