/* Secretary Page Styles */
.secretary-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
}

.page-title {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.secretary-info {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.secretary-info p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 30px;
}

.location-btn {
  background: var(--blue);
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.location-btn a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-btn a:hover {
  text-decoration: none;
}

/* Documents Section */
.documents {
  padding: 80px 0;
}

.document-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-left: 5px solid;
}

.document-card.blue-border {
  border-left-color: var(--blue);
}

.document-card.orange-border {
  border-left-color: var(--orange);
}

.document-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.document-card p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 25px;
}

.other-documents {
  margin-top: 50px;
}

.other-documents h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.document-list {
  border-left: 4px solid #e2e8f0;
  padding-left: 30px;
  list-style: none;
}

.document-list li {
  margin-bottom: 15px;
}

.document-list a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.document-list a:hover {
  text-decoration: underline;
}

/* Notices Section */
.notices {
  background: linear-gradient(135deg, #fef3c7, #dbeafe);
  padding: 80px 0;
}

.warning-icon {
  font-size: 2rem;
  margin-right: 10px;
}

.notices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.notice-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.notice-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.notice-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.notice-dot.orange {
  background: var(--orange);
}

.notice-dot.blue {
  background: var(--blue);
}

.notice-card p {
  color: var(--gray);
  line-height: 1.6;
}

