/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  padding: 0;
  border-radius: 20px;
  position: relative;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* ---------- Header ---------- */
.header {
  text-align: center;
  margin-top: 0rem;
}

.header h1 {
  font-size: 2.2rem;
  color: #111827;
  margin: 0;
}

.overview p {
  color: #111111;
  line-height: 1.6;
  text-align: justify;
}

/* ---------- Details Section ---------- */
.image-box img {
  width: auto;
  max-width: 100%;
  border-radius: 12px;
  height: auto;
}

/* ---------- Heading ---------- */
.internship-title {
  text-align: center;
  margin-bottom: 1.2rem;
  color: #111827;
  font-size: 1.6rem;
}

/* ---------- Points ---------- */
.points {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 2rem auto;  
  text-align: left;
}

.points li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  list-style: none; 
  position: relative;
  padding-left: 28px; 
}

.points li::before {
  content: "★";
  color: #faa200;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* ---------- Logistics ---------- */
.logistics {
  text-align: center;
  margin-top: 2rem;
  line-height: 1.6;
}

.logistics p {
  margin: 12px 0;
  font-size: 1rem;
  color: #1f2937;
}

.logistics .highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: #059669;  
}

.logistics .italic {
  color: #000000;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .image-box img {
    width: 100%;
    height: 70%;
  }

  .points {
    max-width: 100%;
    padding: 0 1rem;
  }
}
