/* Apply styles only to this specific page */ .course-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; padding: 20px; justify-content: center; } .course-card { background: #f8f8f8; border-radius: 10px; padding: 20px; text-align: center; transition: 0.3s ease-in-out; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); } /* Hover effect */ .course-card:hover { transform: translateY(-5px); box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); } /* Responsive: Adjust layout on small screens */ @media (max-width: 600px) { .course-grid { grid-template-columns: 1fr; /* Stacks cards on small screens */ } }