  .student-life-gallery {
      background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
      padding: 60px 0;
      min-height: 100vh;
    }
    .section-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      color: #ffffff;
      background: #007bff;
      padding: 5px 12px;
      border-radius: 12px;
      margin-bottom: 15px;
    }
    .content-wrapper h2 {
      font-size: 2.25rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 20px;
    }
    .content-wrapper .description {
      font-size: 1rem;
      color: #4a4a4a;
      line-height: 1.6;
      margin-bottom: 25px;
    }
    .stats-row {
      display: flex;
      gap: 30px;
      margin-top: 25px;
    }
    .stat-item {
      text-align: center;
    }
    .stat-number {
      display: block;
      font-size: 1.75rem;
      font-weight: 700;
      color: #007bff;
    }
    .stat-label {
      font-size: 0.875rem;
      color: #6c757d;
      font-weight: 500;
    }
    .primary-link {
      color: #007bff;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.3s ease;
    }
    .primary-link:hover {
      color: #0056b3;
      text-decoration: underline;
    }
    .action-links .btn {
      padding: 10px 20px;
      font-weight: 600;
      border-radius: 8px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .action-links .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
    .gallery-item {
      position: relative;
      border-radius: 12px;
      background: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .gallery-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      transition: transform 0.3s ease;
    }
    .gallery-item:hover .gallery-image {
      transform: scale(1.1);
    }
    .uploader-info {
      padding: 8px;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
      color: #ffffff;
      text-align: center;
      font-size: 0.75rem;
      font-style: italic;
      font-weight: 400;
    }
    .image-description {
      font-size: 0.95rem;
      color: #4a4a4a;
      line-height: 1.5;
      padding: 10px 15px;
      text-align: center;
      margin: 0;
    }
    .no-images {
      font-size: 1rem;
      color: #6c757d;
      text-align: center;
      padding: 20px;
    }
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }
      .gallery-image {
        height: 180px;
      }
      .content-wrapper h2 {
        font-size: 1.75rem;
      }
    }