.opportunity-badge {
    display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite;
  }

.volunteer-badge {
  background: #F59BA3;
}

.intern-badge {
  background: #3A5880;
}

/* Apply Button Styles */
.apply-btn {
  display: inline-block;
  background: linear-gradient(135deg, #3A5880, #112540);
  color: white;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  margin-left: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-align: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.apply-btn:hover {
  background: linear-gradient(135deg, #F59BA3, #FCD8DC);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

.apply-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.card-actions {
 display: flex;
  margin-top: 15px;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

/* Adjust the learn more link to work with the new layout */
.card-content .learn-more {
  margin-right: auto;
}
  
  /* Position badges at top of card content for visibility */
  .card-badges {
    display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  }

/* Premium Featured Section */
    .premium-featured-section {
      background: #FCD8DC;
      padding: 40px;
      color: #112540;
      position: relative;
      overflow: hidden;
    }

    .premium-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .premium-featured-section h2 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 16px;
      background: #112540;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .premium-featured-section p {
      font-size: 1.2rem;
      opacity: 0.9;
      margin-bottom: 32px;
      line-height: 1.6;
    }

    .premium-features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 24px;
      margin: 32px 0;
    }

    .feature-item {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 24px;
      text-align: left;
    }

    .feature-icon {
      font-size: 24px;
      margin-bottom: 12px;
      display: block;
    }

    .feature-item h4 {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .feature-item p {
      font-size: 0.95rem;
      opacity: 0.8;
      margin-bottom: 0;
    }

    .premium-cta {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      margin-top: 32px;
    }

    .get-featured-btn {
      background: #3A5880;
      color: white;
      padding: 16px 32px;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 20px #F59BA3;
    }

    .get-featured-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 20px #F59BA3;
      background: #3A5880;
    }

    .pricing-note {
      font-size: 0.9rem;
      opacity: 0.7;
      margin-top: 8px;
    }

    .scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-3);
  color: var(--color-6);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background-color: var(--color-2);
}

    /* Responsive Design */
    @media (max-width: 768px) {

      .premium-featured-section h2 {
        font-size: 2rem;
      }

      .premium-features {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .premium-cta {
        flex-direction: column;
      }

      .get-featured-btn {
        width: 65%;
        justify-content: center;
      }
    }