.intern-hero {
  background: linear-gradient(135deg, rgba(111, 4, 233, 0.05), rgba(0, 255, 255, 0.05));
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 50px;
  border: 1px solid rgba(0,0,0,0.05);
}

.intern-text {
  padding: 40px;
}

.intern-text h2 {
  color: var(--accent1);
  margin-top: 0;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.intern-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.intern-image {
  height: 100%;
  min-height: 400px;
  position: relative;
}

.intern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.benefits-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.intern-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.benefit-card {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent2);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  background: #eefcfd;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #008b8b;
}

.benefit-card h3 {
  margin: 0 0 10px;
  color: #333;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.5;
}

.cta-block {
  background: linear-gradient(90deg, var(--accent1), #9c53f0);
  border-radius: var(--radius);
  padding: 50px 30px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(111, 4, 233, 0.2);
}

.cta-block h2 {
  color: #fff;
  margin-top: 0;
}

.cta-block p {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-btn {
  background: #fff;
  color: var(--accent1);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .intern-hero {
    grid-template-columns: 1fr;
  }
  .intern-image {
    min-height: 300px;
    order: -1; 
  }
}
