
  /* Hero Section */

  .hero {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #367BCA;
    color: white;
    padding: 60px 20px;
    text-align: center;
    max-width: 1110px;
    margin-top: 45px;
    left: 155px;
  }

  .hero h1 {
    font-size: 55px;
    margin-bottom: 15px;
    font-weight: bold;
  }

  .hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
  }

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

  .content-section {
    padding: 35px;
    margin-bottom: 25px;
    border-radius: 5px;
  }

  .content-section h2 {
    color: #1D356D;
    font-size: 45px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 5px solid #367BCA;
    padding-bottom: 8px;
    text-align: center;
  }

  .content-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: black;
    line-height: 1.7;
  }

  .content-section ul {
    margin: 15px 0 15px 25px;
  }

  .content-section li {
    font-size: 16px;
    color: black;
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .question-box {
    background-color: #e7f3ff;
    border-left: 4px solid #367BCA;
    padding: 20px;
    margin: 20px 0;
  }

  .question-box p {
    color: #1D356D;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 25px 0;
  }

  .stat-box {
    background-color: #355C96;
    color: white;
    padding: 25px;
    text-align: center;
    border-radius: 4px;
  }

  .stat-box h3 {
    font-size: 40px;
    margin-bottom: 8px;
  }

  .stat-box p {
    font-size: 16px;
    color: white;
    margin: 0;
  }

  .goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
  }

  .goal-item {
    background: #e7f3ff;
    padding: 25px;
    border-radius: 4px;
    border: 2px solid #367BCA;
  }

  .goal-item h3 {
    color: #1D356D;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .goal-item p {
    font-size: 15px;
    color: black;
    margin: 0;
  }

  .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
  }

  .tag {
    background-color: #367BCA;
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 14px;
  }

  .timeline {
    margin-top: 25px;
  }

  .timeline-item {
    margin-bottom: 25px;
    padding-left: 25px;
    border-left: 3px solid #367BCA;
    position: relative;
  }

  .timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 13px;
    height: 13px;
    background: #367BCA;
    border-radius: 50%;
    border: 3px solid white;
  }

  .timeline-item .date {
    color: black;
    font-size: 14px;
    margin-bottom: 5px;
    font-style: italic;
  }

  .timeline-item h3 {
    color: #1D356D;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .timeline-item p {
    color: black;
    font-size: 15px;
    margin: 0;
  }

  .footer-cta {
    background-color: #355C96;
    color: white;
    padding: 50px 20px;
    text-align: center;
    margin-top: 30px;
  }

  .footer-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: normal;
  }

  .footer-cta p {
    color: white;
    margin-bottom: 25px;
  }

  .btn {
    display: inline-block;
    background: white;
    color: #1D356D;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin: 5px 8px;
    transition: background-color 0.3s;
  }

  .btn:hover {
    background-color: #ffd966;
  }