/* ===== GENERAL STYLES ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #1a3a8f;
  font-size: 2rem;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ffc107;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ===== ORGANIZATION SECTION ===== */
.section-organization {
  background-color: #fff;
}

.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.org-level {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  width: 100%;
}

.org-position {
  display: flex;
  justify-content: center;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 300px;
}

.position-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 100%;
}

.position-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.position-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #1a3a8f;
}

.position-card h3 {
  margin: 1rem 0 0.5rem;
  color: #1a3a8f;
  font-size: 1.2rem;
}

.position-card p {
  margin: 0.3rem 0;
  color: #666;
  font-size: 0.9rem;
}

/* ===== VISION SECTION ===== */
.section-vision {
  background-color: #f5f7ff;
}

.vision-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.vision-card, .mission-card {
  flex: 1 1 400px;
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-5px);
}

.vision-icon, .mission-icon {
  width: 70px;
  height: 70px;
  background: #1a3a8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.8rem;
}

.vision-card h3, .mission-card h3 {
  color: #1a3a8f;
  text-align: center;
  margin-bottom: 1.5rem;
}

.vision-card p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  color: #444;
  font-style: italic;
}

.mission-card ul {
  padding-left: 0;
  list-style: none;
}

.mission-card li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.mission-card li i {
  color: #ffc107;
  margin-right: 10px;
  font-size: 1.2rem;
  margin-top: 3px;
}

/* ===== PROGRAMS SECTION ===== */
.section-programs {
  background-color: #fff;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.program-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border-top: 4px solid #1a3a8f;
  padding: 1.5rem;
}

.program-card:hover {
  transform: translateY(-10px);
}

.program-icon {
  width: 60px;
  height: 60px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3a8f;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.program-card h3 {
  color: #1a3a8f;
  margin-bottom: 1.2rem;
}

.program-card ul {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
}

.program-card li {
  margin-bottom: 0.7rem;
}

.program-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
}

.status {
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
}

.status.in-progress {
  background: #fff8e1;
  color: #ff8f00;
}

.status.completed {
  background: #e8f5e9;
  color: #2e7d32;
}

.status.planning {
  background: #e3f2fd;
  color: #1565c0;
}

/* ===== ACHIEVEMENTS SECTION ===== */
.section-achievements {
  background-color: #f5f7ff;
}

.achievement-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.achievement-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: #1a3a8f;
}

.timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
  display: flex;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 100px;
  height: 100px;
  background: #1a3a8f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  z-index: 1;
  flex-shrink: 0;
  margin: 0 20px;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: white;
  transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -10px;
  border-right: 1px solid #eee;
  border-top: 1px solid #eee;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -10px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.timeline-content h3 {
  color: #1a3a8f;
  margin-top: 0;
}

.timeline-content p {
  color: #666;
  margin-bottom: 0;
}

/* ===== REGULATIONS SECTION ===== */
.section-regulations {
  background-color: #fff;
}

.regulation-list {
  max-width: 800px;
  margin: 0 auto;
}

.regulation-item {
  display: flex;
  align-items: flex-start;
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-left: 4px solid #1a3a8f;
  transition: transform 0.3s ease;
}

.regulation-item:hover {
  transform: translateX(5px);
}

.regulation-icon {
  width: 50px;
  height: 50px;
  background: #f0f4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a3a8f;
  font-size: 1.2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.regulation-info {
  flex: 1;
}

.regulation-info h3 {
  margin-top: 0;
  color: #1a3a8f;
  font-size: 1.1rem;
}

.regulation-info p {
  color: #666;
  margin: 0.5rem 0 1rem;
}

.btn-download {
  display: inline-block;
  background: #1a3a8f;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-download:hover {
  background: #0d2a6e;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 900px) {
  .achievement-timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    padding-left: 60px;
  }
  
  .timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
    right: auto;
    border-right: none;
    border-top: none;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 1.5rem;
  }
  
  .org-level {
    flex-direction: column;
    align-items: center;
  }
  
  .vision-card, .mission-card {
    flex-basis: 100%;
  }
  
  .program-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section h2 {
    font-size: 1.7rem;
  }
  
  .regulation-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .regulation-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}