 .subjects-container {
     max-width: 900px;
     margin: 40px auto;
     padding: 0 20px;
     font-family: 'Inter', sans-serif;
     color: #e8f0fe;
 }

 .back-btn {
     display: inline-block;
     margin-bottom: 20px;
     text-decoration: none;
     color: #00c896;
     font-weight: 600;
     transition: color 0.3s ease;
 }

 .back-btn:hover {
     color: #33d9a6;
 }

 .card {
     background: #1a2535;
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 14px;
     box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
     padding: 25px;
     margin-bottom: 30px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
 }

 .section-title {
     font-size: 1.6rem;
     font-weight: 800;
     margin-bottom: 20px;
     border-bottom: 2px solid #00c896;
     padding-bottom: 8px;
     color: #e8f0fe;
     letter-spacing: -0.01em;
 }

 table.student-info-table,
 table.payment-info-table {
     width: 100%;
     border-collapse: collapse;
 }

 table.student-info-table td,
 table.payment-info-table td {
     padding: 10px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.07);
     color: #e8f0fe;
     font-size: 0.9rem;
 }

 .subject-group h3 {
     font-size: 1.15rem;
     font-weight: 700;
     margin-bottom: 12px;
     color: #e8f0fe;
 }

 .subject-group ul {
     list-style: none;
     padding-left: 0;
 }

 .subject-group li {
     background: rgba(255, 255, 255, 0.04);
     margin-bottom: 8px;
     padding: 12px 15px;
     border-radius: 10px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: background 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.07);
 }

 .subject-group li:hover {
     background: rgba(0, 200, 150, 0.06);
 }

 .subject-name {
     font-weight: 600;
     color: #e8f0fe;
 }

 .subject-code {
     font-size: 0.88rem;
     color: #8fa3be;
 }

 .subject-group.compulsory li {
     border-left: 4px solid #00c896;
 }

 .subject-group.elective li {
     border-left: 4px solid #6366f1;
 }

 .subject-group.optional li {
     border-left: 4px solid #f59e0b;
 }

 /* Fade-in Animation */
 @keyframes fadeInUp {
     0% {
         opacity: 0;
         transform: translateY(15px);
     }

     100% {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .fade-in {
     animation: fadeInUp 0.6s ease forwards;
 }

 .fade-in.delay-1 {
     animation-delay: 0.15s;
 }

 .fade-in.delay-2 {
     animation-delay: 0.3s;
 }

 /* Responsive */
 @media (max-width: 600px) {
     .subject-group li {
         flex-direction: column;
         align-items: flex-start;
     }

     .subject-code {
         margin-top: 4px;
     }

     table.student-info-table td,
     table.payment-info-table td {
         display: block;
         width: 100%;
     }
 }
