body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9fafb;
    }
    header {
      background: linear-gradient(135deg, #1e3c72, #2a5298);
      background-image: url("/images/brand_wide.jpg");
      background-repeat: no-repeat;
      background-position: center top;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }
    header h1 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }
    header p {
      font-size: 1.2rem;
      max-width: 800px;
      margin: 0 auto;
    }
    nav {
      background: #ffffff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      padding: 10px 20px;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      margin: 0;
      padding: 0;
    }
    nav ul li {
      margin: 0 15px;
    }
    nav ul li a {
      text-decoration: none;
      color: #1e3c72;
      font-weight: bold;
    }
    section {
      padding: 10px 20px;
      max-width: 1100px;
      margin: auto;
    }
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-title h2 {
      font-size: 1.5rem;
      color: #1e3c72;
    }
    .about-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .card {
      background: #ffffff;
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .card h3 {
      color: #2a5298;
      margin-bottom: 10px;
    }
    .registration-form {
      max-width: 500px;
      margin: 0 auto;
      background: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    }
    .registration-form label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }
    .registration-form input, .registration-form select {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    .registration-form button {
      width: 100%;
      background: #1e3c72;
      color: #fff;
      border: none;
      padding: 12px;
      font-size: 1rem;
      border-radius: 4px;
      cursor: pointer;
    }
    .registration-form button:hover {
      background: #2a5298;
    }
    footer {
      background: #1e3c72;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    footer ul {
      list-style: none;
      display: flex;
      justify-content: center;
      margin: 0;
      
    }

    footer ul li {
      margin: 0 15px;
    }
    footer ul li a {
      text-decoration: none;
      color: #fff;
      font-weight: bold;
    }

    #faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

#faq .section-title {
  text-align: center;
  margin-bottom: 40px;
}

#faq .section-title p {
  color: #666;
  font-size: 16px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  border-left: 4px solid #333;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

#life {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.life-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.life-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.life-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.life-card i {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}

.life-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.life-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.project-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.project-page h2, .content h3 {
  margin-top: 30px;
}


.roadmap-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.roadmap-table th,
.roadmap-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.roadmap-table th {
  background-color: #f4f6f8;
  font-weight: 600;
}

.roadmap-table tr:nth-child(even) {
  background-color: #fafafa;
}

.project-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d0d7de;
}

.project-table th,
.project-table td {
  border: 1px solid #d0d7de;
  padding: 10px 12px;
  vertical-align: top;
}

.project-table th {
  width: 25%;
  background-color: #f4f6f8;
  font-weight: 600;
  text-align: left;
}

.project-table tr:last-child th,
.project-table tr:last-child td {
  border-bottom: 1px solid #d0d7de;
}

.course-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.course-table th,
.course-table td {
  border: 1px solid #d0d7de;
  padding: 12px;
  vertical-align: top;
}

.course-table th {
  background-color: #f4f6f8;
  font-weight: 600;
  text-align: left;
}

.course-table tr:nth-child(even) {
  background-color: #fafafa;
}

.course-curriculum {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

.course {
  margin-bottom: 40px;
}

.course h3 {
  margin-bottom: 10px;
}

.course ul {
  padding-left: 20px;
}

.course li {
  margin-bottom: 8px;
}
