/* Annual Report Grid Layout */
.financial-section {
  padding: 80px 5%;
  background-color: #080808; /* Deep dark background */
  color: #ffffff;
  min-height: 80vh;
}

.financial-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 50px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.page-subtitle {
  color: #a0a0a0;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.pdf-card {
  background-color: #121212;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pdf-card:hover {
  transform: translateY(-5px);
  border-color: #444;
}

.pdf-icon {
  color: #ffffff;
  margin-bottom: 20px;
}

.pdf-info h3 {
  font-size: 1.25rem;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.pdf-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.pdf-actions {
  display: flex;
  gap: 15px;
  margin-top: auto; /* Pushes buttons to the bottom of the card */
}

.btn {
  flex: 1;
  padding: 10px 15px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-view {
  background-color: transparent;
  color: #fff;
  border: 1px solid #444;
}

.btn-view:hover {
  background-color: #2a2a2a;
  border-color: #666;
}

.btn-download {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
}

.btn-download:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}