* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #b3e5fc;
  color: #333;
}

.title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 30px 0;
  color: #34495e;
}

.timeline-section {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.timeline-category {
  margin-bottom: 40px;
}

.timeline-category h2 {
  font-size: 1.4rem;
  color: #34495e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid #6a1b9a;
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background-color: #6a1b9a;
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: 4px;
}

.timeline-content {
  background: #e1f5fe;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-content h3 {
  font-size: 1.1rem;
  color: #1a237e;
  font-weight: 600;
}

.timeline-content p {
  font-size: 0.95rem;
  color: #555;
  margin: 5px 0;
}

.timeline-content .date {
  font-size: 0.9rem;
  color: #7b1fa2;
  display: block;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .timeline-section {
    padding: 10px;
  }
  .timeline-content {
    font-size: 0.9rem;
  }
}

/* Interests Section */
.interests-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 20px;
}

.interests-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.interests-image {
  flex: 1 1 40%;
  text-align: center;
}

.interests-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.interests-image img:hover {
  transform: scale(1.05);
}

.interests-content {
  flex: 1 1 55%;
}

.interests-content p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

.interest-list {
  list-style: none;
  padding: 0;
}

.interest-list li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.interest-list i {
  color: #6a1b9a;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .interests-container {
    flex-direction: column;
    text-align: center;
  }
  .interests-image img {
    max-width: 80%;
  }
  .interests-content {
    flex: 1 1 100%;
  }
}

.interests-section {
  padding: 80px 10%;
  background-color: #f8f9fa;
}

.interests-section .title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #333;
}

.interest-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.interest-item.reverse {
  flex-direction: row-reverse;
}

.interest-image img {
  width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.interest-text {
  flex: 1;
}

.interest-text h2 {
  font-size: 1.8rem;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.interest-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .interest-item,
  .interest-item.reverse {
    flex-direction: column;
    text-align: center;
  }

  .interest-image img {
    width: 100%;
    max-width: 350px;
  }
}


