* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #fff;
}

.container {
   display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

.left-image {
 flex: 1 1 40%;
  background-color: #fff;
  background-image: url('sol.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  height: auto;
  min-height: 100vh;
}

.left-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.right-content {
  flex: 1 1 60%;
  background-color: #fff;
  padding: 2rem;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    height: auto;
  }

  .left-image, .right-content {
    flex: 1 1 100%;
    height: auto;
  }

  .left-image img {
    height: auto;
  }
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  margin-bottom: 0.25rem;
  padding: 0.10rem;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.6s ease forwards;
}

.bullet {
  color: #12b1eb;
  font-size: 1.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
  font-weight: bold;
}

.timeline-text h3 {
  color: #003366;
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.timeline-text p {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

@keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .timeline-item:nth-child(1) { animation-delay: 0.2s; }
    .timeline-item:nth-child(2) { animation-delay: 0.4s; }
    .timeline-item:nth-child(3) { animation-delay: 0.6s; }
    .timeline-item:nth-child(4) { animation-delay: 0.8s; }
    .timeline-item:nth-child(5) { animation-delay: 1s; }
    .timeline-item:nth-child(6) { animation-delay: 1.2s; }
    .timeline-item:nth-child(7) { animation-delay: 1.4s; }
    .timeline-item:nth-child(8) { animation-delay: 1.6s; }
    .timeline-item:nth-child(9) { animation-delay: 1.8s; }
    .timeline-item:nth-child(10) { animation-delay: 2s; }
    .timeline-item:nth-child(11) { animation-delay: 2.2s; }
    .timeline-item:nth-child(12) { animation-delay: 2.4s; }
    .timeline-item:nth-child(13) { animation-delay: 2.6s; }
    .timeline-item:nth-child(14) { animation-delay: 2.8s; }
