.section-header.professional {
  background-color: #f7f9fc;
  border-left: 6px solid #003366;
  padding: 24px 32px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}

.section-header.professional:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.section-header.professional h1 {
  color: #003366;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #d4dbe2;
  padding-bottom: 6px;
}

.section-header.professional p {
  font-size: 17px;
  color: #444;
  margin: 0;
  line-height: 1.6;
}


@keyframes fadeInHeader {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


.data-supply-container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  font-family: "Segoe UI", sans-serif;
}

h1, h2, h3 {
  color: #003366;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.styled-table th, .styled-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: center;
}

.styled-table thead {
  background-color: #f0f8ff;
}

.styled-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.aau-section {
  margin: 20px 0;
  text-align: center;
}

#aau-access-btn {
  background-color: #ad0e03;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#aau-access-btn:hover {
  /* background-color: #0055aa; */
  background-color: #8a0f06;

}

.aau-form-card {
  background-color: #f5faff;
  border: 2px solid #004488;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
  animation: fadeIn 0.4s ease-in-out;
}

.download-link {
  display: inline-block;
  margin-bottom: 16px;
  color: #0066cc;
  font-weight: bold;
}

.aau-form-card form {
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

input[type="file"] {
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.submit-btn {
  background-color: #006600;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}
.submit-btn:hover {
  background-color: #009900;
}

.faq-section {
  margin-top: 30px;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 12px;
  background: #e0e0e0;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

.accordion-content {
  padding: 10px;
  display: none;
  background: #f7f7f7;
  border-left: 2px solid #ccc;
  border-right: 2px solid #ccc;
  border-bottom: 2px solid #ccc;
}

.accordion-toggle.active {
  background-color: #ccc;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}
