   .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .card {
            position: relative;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .image-container {
            padding: 40px 30px 30px;
            background: #f8f9fa;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 280px;
            position: relative;
            overflow: hidden;
        }
        
        .card-image {
            max-width: 100%;
            max-height: 200px;
            object-fit: contain;
            transition: transform 0.4s ease;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        }
        
        .card:hover .card-image {
            transform: scale(1.08);
        }
        
        .card-category {
            position: absolute;
            top: 20px;
            left: 20px;
            background: #3bafc0;
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
        }
        
        .card-content {
            padding: 25px;
            text-align: center;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .card-title {
            font-size: 1.7rem;
            color: #2c3e50;
            margin-bottom: 25px;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .card:hover .card-title {
            color: #3bafc0;
        }
        
        .button-container {
            margin-top: 10px;
        }
        
        .view-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #3bafc0;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: 2px solid #3bafc0;
            width: 100%;
            max-width: 200px;
            margin: 0 auto;
        }
        
        .view-button:hover {
            background: transparent;
            color: #3bafc0;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(59, 175, 192, 0.3);
        }
        
        .view-button i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }
        
        .view-button:hover i {
            transform: translateX(3px);
        }