.edu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .edu-heading {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  
  .edu-heading__icon {
    color: #ff6b4a;
    font-size: 24px;
    margin-right: 8px;
  }
  
  .edu-heading__title {
    font-size: 45px;
    font-weight: 600;
    color: #ff6b4a;
  }
  
  .resource-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
  }
  
  .resource-item {
    width: 340px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .resource-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .resource-item__image-wrapper {
    height: 200px;
    width: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .resource-item__image-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
    z-index: 1;
  }
  
  .resource-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  
  /* Image zoom effect on hover */
  .resource-item:hover .resource-item__image {
    transform: scale(1.1);
  }
  
  .resource-item__content {
    padding: 25px;
  }
  
  .resource-item__title {
    color: #1a2b47;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
  }
  
  .resource-item__title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    border-radius: 3px;
  }
  
  .resource-item:nth-child(1) .resource-item__title::after {
    background-color: #4361ee;
  }
  
  .resource-item:nth-child(2) .resource-item__title::after {
    background-color: #ff7d3b;
  }
  
  .resource-item:nth-child(3) .resource-item__title::after {
    background-color: #3a86ff;
  }
  
  .resource-item__description {
    color: #6b7c93;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
  
  .resource-item__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .resource-item__btn {
    display: flex;
    align-items: center;
    color: #1a2b47;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .resource-item:nth-child(1) .resource-item__btn:hover {
    color: #4361ee;
  }
  
  .resource-item:nth-child(2) .resource-item__btn:hover {
    color: #ff7d3b;
  }
  
  .resource-item:nth-child(3) .resource-item__btn:hover {
    color: #3a86ff;
  }
  
  .resource-item__btn-arrow {
    margin-left: 6px;
    transition: transform 0.2s ease;
  }
  
  .resource-item__btn:hover .resource-item__btn-arrow {
    transform: translateX(4px);
  }
  
  .resource-item__icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  .resource-item:nth-child(1) .resource-item__icon-wrapper {
    background-color: rgba(67, 97, 238, 0.1);
    color: #4361ee;
  }
  
  .resource-item:nth-child(2) .resource-item__icon-wrapper {
    background-color: rgba(255, 125, 59, 0.1);
    color: #ff7d3b;
  }
  
  .resource-item:nth-child(3) .resource-item__icon-wrapper {
    background-color: rgba(58, 134, 255, 0.1);
    color: #3a86ff;
  }
  
  .resource-item__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: white;
    color: #1a2b47;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
  }
  
  @media (max-width: 768px) {
    .resource-grid {
      flex-direction: column;
      align-items: center;
    }
    
    .resource-item {
      width: 100%;
      max-width: 340px;
    }
  }