RegElite™ Enterprise
/* Pricing card styles */ .pricing-card { background-color: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; height: 100%; width: 100%; } .pricing-card:hover { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); } /* Card header */ .card-header { padding: 20px; color: white; text-align: center; } .silver-header { background-color: #c0c0c0; /* Silver color */ } .card-header h3 { font-size: 1.8rem; margin-bottom: 8px; } .card-header p { font-size: 1rem; opacity: 0.9; } /* Card content */ .card-content { padding: 24px; background-color: #f9fafb; flex-grow: 1; } .price-tag { font-size: 2rem; font-weight: bold; margin-bottom: 16px; color: #1a1a1a; } .price-period { font-size: 1rem; fo