body {
  background-color: #ffffff;
}

.internship-header {
  text-align: center;
  margin: 3rem 0;
}

.internship-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.internship-title span {
  color: #2563eb; /* Blue color for "Program" text */
}

.internship-description {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #4b5563;
}

.quote-section {
  background-color: #f3f4f6;
  padding: 2rem;
  margin: 3rem auto;
  max-width: 1000px;
  border-radius: 8px;
}

.quote-text {
  font-style: italic;
  text-align: center;
  color: #374151;
  font-size: 1.1rem;
  line-height: 1.6;
}

.key-areas {
  text-align: center;
  margin: 4rem 0;
}

.key-areas-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.key-areas-title span {
  color: #2563eb; /* Blue color for "Internship" text */
}

.key-areas-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
}

.internship-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.internship-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.internship-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: #f0f9ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon.research { background: #e0f2fe; }
.card-icon.shows { background: #f3e8ff; }
.card-icon.teaching { background: #dcfce7; }
.card-icon.resource { background: #fff7ed; }
.card-icon.database { background: #ecfeff; }
.card-icon.event { background: #ffe4e6; }

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.card-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #374151;
}

.card-list li::before {
  content: "✓";
  color: #22c55e;
  margin-right: 0.5rem;
  font-weight: bold;
}

.why-choose {
  max-width: 1200px;
  margin: 6rem auto 4rem;
  padding: 0 2rem;
}

.why-choose-title {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 2rem;
}

.why-choose-title span {
  color: #059669;
}

.why-choose-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 800px;
}

.ready-to-apply {
  background-color: #f0f9ff;
  padding: 3rem 2rem;
  margin: 4rem 0;
  text-align: center;
}

.ready-to-apply-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ready-to-apply-title {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.ready-to-apply-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #4b5563;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.apply-button {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.apply-button:hover {
  background-color: #1d4ed8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 2rem auto;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item i {
  color: #22c55e;
  font-size: 1.2rem;
}

.benefit-text {
  color: #4b5563;
  font-size: 1.1rem;
}

.start-journey {
  background: linear-gradient(90deg, #4F46E5 0%, #06B6D4 50%, #10B981 100%);
  padding: 6rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.start-journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
}

.start-journey-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.start-journey-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.start-journey-description {
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.journey-button {
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apply-now {
  background-color: white;
  color: #4F46E5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.apply-now:hover {
  background-color: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.explore-vol {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: white;
}

.explore-vol:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  border-color: white;
}