* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1e3c72 ;
  background: #fff;
  min-height: 100vh;
}

.container {
  max-width: 768px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Styles */
.header {
  text-align: center;
  margin-bottom: 30px;
}

.logo{
  margin-bottom: 20px;
}
.logo img{
	display: table; margin: 0 auto;
}


.school-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.school-info p {
  font-size: 14px;
  opacity: 0.9;
}

.main-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.subtitle {
  font-size: 16px;
  opacity: 0.9;
}

/* Definition Section */
.definition-section {
  margin-bottom: 30px;
}

.definition-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.definition-card {
  padding: 20px;
  border-radius: 15px;
  color: white;
}

.definition-card ul{ margin-left: 1em; }

.definition-card.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.definition-card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.definition-card p {
  font-size: 14px;
  line-height: 1.5;
}

/* Timeline Section */
.timeline-section {
  margin-bottom: 30px;
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 20px;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-circle {
  line-height: 50px;
  border-radius: 25px;
  display: table;
  margin: 0 auto;
  padding: 0 1em;
  font-weight: bold;
  font-size: 20px;
  color: white;
  margin-bottom: 15px;
}

.timeline-circle.orange {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.timeline-content {
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  color: white;
  width: 100%;
}

.timeline-content.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.timeline-content h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 12px;
  line-height: 1.4;
}

/* Measures Section */
.measures-section {
  margin-bottom: 30px;
}

.measures-header {
  padding: 15px;
  border-radius: 10px 10px 0 0;
  color: white;
  text-align: center;
}

.measures-header.orange {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.measures-header h2 {
  font-size: 18px;
}

.measures-content {
  padding: 20px;
  border-radius: 0 0 10px 10px;
  color: white;
}

.measures-content.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.measures-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Consequences Section */
.consequences-section {
  margin-bottom: 30px;
}

.consequences-header {
  padding: 15px;
  border-radius: 10px 10px 0 0;
  color: white;
  text-align: center;
}

.consequences-header.orange {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.consequences-header h2 {
  font-size: 18px;
}

.consequences-content {
  padding: 20px;
  border-radius: 0 0 10px 10px;
  color: white;
}

.consequences-content.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.consequences-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Actions Section */
.actions-section {
  margin-bottom: 30px;
}

.actions-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 20px;
}

.actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.action-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 15px;
  margin: 0 auto;
}

.action-circle.red {
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

.action-circle.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.action-circle.blue {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.action-circle.orange {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

/* Supervision Section */
.supervision-section {
  margin-bottom: 30px;
}

.supervision-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 18px;
}

.supervision-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.supervision-item {
  padding: 15px;
  border-radius: 25px;
  text-align: center;
  color: white;
  font-size: 14px;
}

.supervision-item.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

/* Collaboration Section */
.collaboration-section {
  margin-bottom: 30px;
}

.collaboration-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
}

.collaboration-content {
  padding: 20px;
  border-radius: 10px;
  color: white;
}

.collaboration-content.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.collaboration-content ul {
  list-style: none;
  font-size: 14px;
  line-height: 1.8;
}

/* Evaluation Section */
.evaluation-section {
  margin-bottom: 30px;
}

.evaluation-header {
  padding: 15px;
  border-radius: 10px 10px 0 0;
  color: white;
  text-align: center;
}

.evaluation-header.orange {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.evaluation-header h2 {
  font-size: 18px;
}

.evaluation-content {
  padding: 20px;
  border-radius: 0 0 10px 10px;
  color: white;
}

.evaluation-content.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.evaluation-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Reporting Section */
.reporting-section {
  margin-bottom: 30px;
}

.reporting-header {
  padding: 15px;
  border-radius: 10px 10px 0 0;
  color: white;
  text-align: center;
}

.reporting-header.orange {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.reporting-header h2 {
  font-size: 18px;
}

.reporting-content {
  padding: 20px;
  border-radius: 0 0 10px 10px;
  color: white;
}

.reporting-content.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.reporting-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  margin-bottom: 30px;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 20px;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  justify-content: center;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item p:first-child {
  font-weight: bold;
  font-size: 16px;
}

.contact-item p:last-child {
  font-size: 12px;
  opacity: 0.9;
}

.additional-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.additional-info p {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Process Section */
.process-section {
  margin-bottom: 30px;
}

.process-section h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 20px;
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.process-step {
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  color: white;
  min-width: 120px;
}

.process-step.purple {
  background: linear-gradient(135deg, #9C27B0 0%, #7B1FA2 100%);
}

.process-step.orange {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
}

.process-step.green {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.process-step.blue {
  background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

.process-step h4 {
  font-size: 14px;
  margin-bottom: 5px;
}

.process-step p {
  font-size: 12px;
}

.process-arrow {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.process-center {
  display: flex;
  justify-content: center;
}

.process-center-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .main-title {
    font-size: 24px;
  }

  .logo-section {
    flex-direction: column;
    gap: 10px;
  }

  .definition-cards {
    grid-template-columns: 1fr;
  }

  .timeline {
    flex-direction: column;
    gap: 15px;
  }

  .timeline-item {
    width: 100%;
  }

  .actions-grid {
    grid-template-columns: 1fr;
  }

  .action-circle {
    width: 100px;
    height: 100px;
    font-size: 11px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .process-flow {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .process-center-circle {
    width: 150px;
    height: 150px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 10px;
  }

  .main-title {
    font-size: 20px;
  }

  .definition-card h3 {
    font-size: 16px;
  }

  .definition-card p {
    font-size: 13px;
  }

  .timeline-content h4 {
    font-size: 14px;
  }

  .timeline-content p {
    font-size: 11px;
  }

  .action-circle {
    width: 80px;
    height: 80px;
    font-size: 10px;
  }

  .process-center-circle {
    width: 120px;
    height: 120px;
    font-size: 12px;
  }
}

/* Desktop Responsive */
@media (min-width: 769px) {
  .container {
    max-width: 1200px;
    padding: 40px;
  }

  .main-title {
    font-size: 32px;
  }

  .definition-cards {
    gap: 30px;
  }

  .timeline {
    gap: 30px;
  }

  .actions-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .action-circle {
    width: 140px;
    height: 140px;
    font-size: 13px;
  }

  .contact-info {
    gap: 30px;
  }

  .process-center-circle {
    width: 250px;
    height: 250px;
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1400px;
  }

  .definition-cards {
    gap: 40px;
  }

  .timeline {
    gap: 40px;
  }

  .actions-grid {
    gap: 40px;
  }

  .action-circle {
    width: 160px;
    height: 160px;
    font-size: 14px;
  }
}
