 /* Header Styles */
    header {
      background: linear-gradient(135deg, var(--monaco-blue), #0056b3);
      color: white;
      text-align: center;
      padding: 10px 20px;
      position: relative;
      overflow: hidden;
    }

    header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    header h1 {
      font-size: 3rem;
      margin-bottom: 5px;
      position: relative;
      z-index: 2;
    }

    header p {
      font-size: 1.2rem;
      opacity: 0.9;
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Internship Section Styles */
    .internship-section {
      padding: 10px 20px;
      background: white;
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .highlight-blue {
      color: var(--monaco-blue);
      position: relative;
    }

    .highlight-blue::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--monaco-blue), var(--monaco-orange));
      border-radius: 2px;
    }

    .section-intro {
      font-size: 1.1rem;
      color: var(--text-gray);
      max-width: 1200px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* Program Cards */
    .program-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-top: 20px;
    }

    .program-card {
      background: white;
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--shadow-light);
      transition: all 0.3s ease;
      position: relative;
    }

    .program-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }

    .program-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .program-card h3 {
      color: var(--monaco-blue);
      font-size: 1.5rem;
      margin-bottom: 10px;
      padding: 20px 20px 0;
    }

    .program-card p {
      color: var(--text-gray);
      line-height: 1.6;
      padding: 0 20px;
      margin-bottom: 15px;
    }

    .program-details {
      padding: 0 20px;
      margin-bottom: 20px;
    }

    .detail-item {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .detail-item i {
      color: var(--monaco-blue);
      margin-right: 10px;
      font-size: 1.2rem;
    }

    .program-card .view-more-btn,
    .program-card .apply-btn {
      display: inline-block;
      padding: 12px 25px;
      margin: 0 20px 20px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 500;
      transition: all 0.3s ease;
      text-align: center;
    }

    .view-more-btn {
      background: transparent;
      color: var(--monaco-blue);
      border: 2px solid var(--monaco-blue);
    }

    .view-more-btn:hover {
      background: var(--monaco-blue);
      color: white;
    }

    .program-card .apply-btn {
      background: var(--monaco-orange);
      color: white;
      border: 2px solid var(--monaco-orange);
    }

    .program-card .apply-btn:hover {
      background: #e67c00;
      border-color: #e67c00;
      transform: translateY(-2px);
    }

    /* Benefits Section */
    .benefits-section {
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      padding: 10px 20px;
      text-align: center;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 40px auto 0;
    }

    .benefit-card {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: var(--shadow-light);
      transition: all 0.3s ease;
      text-align: left;
    }

    .benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-medium);
    }

    .benefit-card i {
      font-size: 2.5rem;
      color: var(--monaco-blue);
      margin-bottom: 20px;
      display: inline-block;
    }

    .benefit-card h3 {
      color: var(--monaco-blue);
      margin-bottom: 15px;
      font-size: 1.3rem;
    }

    /* How It Works Section */
    .process-section {
      padding: 40px 20px;
      background: white;
    }

    .process-steps {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1000px;
      margin: 10px auto 0;
      position: relative;
    }

    .process-steps::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 50px;
      right: 50px;
      height: 4px;
      background: linear-gradient(90deg, var(--monaco-blue), var(--monaco-orange));
      z-index: 1;
    }

    .process-step {
      flex: 1 1 200px;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .step-number {
      width: 60px;
      height: 60px;
      background: var(--monaco-blue);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
      margin: 0 auto 20px;
      box-shadow: 0 4px 15px rgba(0, 75, 155, 0.2);
    }

    .process-step h3 {
      color: var(--monaco-blue);
      margin-bottom: 15px;
      font-size: 1.2rem;
    }

    /* Partner Companies */
    .partners-section {
      padding: 60px 20px;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    }

    .partner-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 40px;
      margin-top: 20px;
    }

    .partner-logo {
      max-width: 150px;
      max-height: 80px;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .partner-logo:hover {
      filter: grayscale(0%);
      opacity: 1;
      transform: scale(1.1);
    }

    /* Testimonials Section */
    .testimonials-section {
      padding: 40px 20px;
      background: white;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .testimonial-card {
      background: white;
      padding: 10px;
      border-radius: 12px;
      box-shadow: var(--shadow-light);
      position: relative;
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: rgba(0, 75, 155, 0.1);
      font-family: serif;
      line-height: 1;
    }

    .testimonial-content {
      position: relative;
      z-index: 2;
      font-style: italic;
      margin-bottom: 10px;
      line-height: 1.8;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .author-info h4 {
      color: var(--monaco-blue);
      margin-bottom: 5px;
    }

    .author-info p {
      color: var(--text-gray);
      font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
      padding: 0 10px;
      background: linear-gradient(135deg, var(--monaco-blue), #0056b3);
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      animation: shimmer 8s linear infinite;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .cta-content p {
      font-size: 1.2rem;
      opacity: 0.9;
      margin-bottom: 10px;
      line-height: 1.8;
      color: #f8f9fa;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-btn {
      padding: 8px 15px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .cta-btn.primary {
      background: var(--monaco-orange);
      color: white;
      border: 2px solid var(--monaco-orange);
    }

    .cta-btn.primary:hover {
      background: #e67c00;
      border-color: #e67c00;
      transform: translateY(-3px);
    }

    .cta-btn.secondary {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,0.5);
    }

    .cta-btn.secondary:hover {
      background: rgba(255,255,255,0.1);
      border-color: white;
      transform: translateY(-3px);
    }

    @keyframes shimmer {
      0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
      100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

/* =============================================
   RESPONSIVE / MOBILE — TABLET  (≤ 768px)
   ============================================= */

@media (max-width: 768px) {

  /* ── Header ── */
  header {
    padding: 20px 16px;
  }

  header h1 {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  header p {
    font-size: 0.9rem;
  }

  /* ── General section spacing ── */
  .internship-section,
  .benefits-section,
  .process-section,
  .partners-section,
  .testimonials-section {
    padding: 20px 12px;
  }

  .section-header {
    margin-bottom: 18px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section-intro {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* ── Program cards — 2 per row ── */
  .program-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .program-image {
    height: 120px;
  }

  .program-card h3 {
    font-size: 0.88rem;
    padding: 10px 10px 0;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .program-card p {
    padding: 0 10px;
    font-size: 0.78rem;
    line-height: 1.5;
    margin-bottom: 8px;
  }

  .program-details {
    padding: 0 10px;
    margin-bottom: 10px;
  }

  .detail-item {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }

  .detail-item i {
    font-size: 0.9rem;
    margin-right: 5px;
  }

  .program-card .view-more-btn,
  .program-card .apply-btn {
    display: block;
    padding: 7px 10px;
    margin: 0 10px 8px;
    font-size: 0.75rem;
    text-align: center;
    border-radius: 20px;
  }

  /* ── Benefits — 2 per row ── */
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .benefit-card {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .benefit-card i {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }

  .benefit-card h3 {
    font-size: 0.88rem;
    margin-bottom: 6px;
  }

  .benefit-card p {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  /* ── Process steps — 2 per row ── */
  .process-section {
    padding: 20px 12px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  /* Hide the horizontal connector line — doesn't work in grid */
  .process-steps::before {
    display: none;
  }

  .process-step {
    flex: none;
    width: 100%;
    background: #f8faff;
    border: 1px solid #e2eaf6;
    border-radius: 12px;
    padding: 14px 10px;
    text-align: center;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin: 0 auto 8px;
  }

  .process-step h3 {
    font-size: 0.88rem;
    margin-bottom: 4px;
  }

  .process-step p {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #555;
  }

  /* ── Partners ── */
  .partners-section {
    padding: 20px 12px;
  }

  .partner-logos {
    gap: 16px;
    margin-top: 14px;
  }

  .partner-logo {
    max-width: 80px;
    max-height: 44px;
  }

  /* ── Testimonials — 1 col (cards have a lot of text) ── */
  .testimonials-section {
    padding: 20px 12px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .testimonial-card {
    padding: 14px;
  }

  .testimonial-content {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .author-avatar {
    width: 38px;
    height: 38px;
    margin-right: 10px;
  }

  .author-info h4 {
    font-size: 0.88rem;
  }

  .author-info p {
    font-size: 0.78rem;
  }

  /* ── CTA section ── */
  .cta-section {
    padding: 22px 14px;
  }

  .cta-content h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .cta-content p {
    font-size: 0.88rem;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .cta-buttons {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }

  .cta-btn {
    justify-content: center;
    padding: 9px 14px;
    font-size: 0.82rem;
    border-radius: 22px;
  }

  /* ── FAQ ── */
  #faq {
    padding: 20px 12px !important;
  }

  #faq h2 {
    font-size: 1.5rem !important;
    margin-bottom: 18px !important;
  }

  #faq .container > div {
    border-radius: 10px !important;
    padding: 18px !important;
  }

  #faq h3 {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  #faq p {
    font-size: 0.82rem !important;
    line-height: 1.6 !important;
  }
}

/* =============================================
   SMALL MOBILE  (≤ 400px) — tighten further
   ============================================= */

@media (max-width: 400px) {

  header h1 { font-size: 1.4rem; }
  header p  { font-size: 0.82rem; }

  .section-header h2 { font-size: 1.3rem; }

  /* Program cards — keep 2 col but smaller */
  .program-image { height: 95px; }

  .program-card h3 { font-size: 0.78rem; padding: 8px 8px 0; }
  .program-card p  { font-size: 0.72rem; padding: 0 8px; }

  .program-card .view-more-btn,
  .program-card .apply-btn {
    font-size: 0.7rem;
    padding: 6px 8px;
    margin: 0 8px 6px;
  }

  /* Hide program details on tiny screens — too much text */
  .program-details { display: none; }

  .benefit-card { padding: 10px 8px; }
  .benefit-card i { font-size: 1.25rem; }
  .benefit-card h3 { font-size: 0.8rem; }
  .benefit-card p  { font-size: 0.72rem; }

  .step-number { width: 34px; height: 34px; font-size: 0.85rem; }
  .process-step h3 { font-size: 0.8rem; }
  .process-step p  { font-size: 0.7rem; }

  .cta-content h2 { font-size: 1.2rem; }
  .cta-btn { font-size: 0.75rem; padding: 8px 10px; }

  /* ── Internship modal — bottom sheet ── */
  #internModal {
    padding: 0 !important;
    align-items: flex-end !important;
  }

  #internModalBox {
    border-radius: 20px 20px 0 0 !important;
    max-height: 92vh !important;
    width: 100% !important;
  }

  #internModalBox img { height: 130px !important; }

  #internModalBox #internModalBanner > div {
    padding: 16px 14px !important;
  }

  #internModalBox h2 { font-size: 15px !important; }

  #internModalMeta { gap: 5px !important; font-size: 10px !important; }

  #internModalBox [style*="display:flex"][style*="gap:8px"] {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .itn-tab-btn {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 11px !important;
    padding: 5px 10px !important;
  }

  #internModalOverview {
    font-size: 12px !important;
    padding: 10px 12px !important;
  }

  #internModalBox > div > div:last-child {
    flex-direction: column !important;
  }

  #internModalBox > div > div:last-child a {
    min-width: unset !important;
    text-align: center !important;
  }
}
