Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-hover: #1d4ed8;
+ --background: #f8fafc;
+ --text: #1e293b;
+ --card-bg: #ffffff;
+ --shadow: 0 1px 3px rgba(0,0,0,0.1);
+ }
+
+ body {
+ font-family: 'Inter', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ margin: 0;
+ padding: 0;
+ }
+
+ .hero {
+ background: var(--primary);
+ color: white;
+ padding: 4rem 1rem;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ opacity: 0.9;
+ }
+
+ section {
+ padding: 2rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ h2 {
+ font-size: 2rem;
+ margin-bottom: 2rem;
+ text-align: center;
+ }
+
+ .cards {
+ display: grid;
+ gap: 1.5rem;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ }
+
+ .card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 0.5rem;
+ box-shadow: var(--shadow);
+ text-align: center;
+ }
+
+ .card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .price {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ margin: 1.5rem 0;
+ }
+
+ .card ul {
+ list-style: none;
+ padding: 0;
+ text-align: left;
+ }
+
+ .card li {
+ padding: 0.75rem 0;
+ border-bottom: 1px solid #e2e8f0;
+ }
+
+ .card li:last-child {
+ border-bottom: none;
+ }
+
+ .table-container {
+ overflow-x: auto;
+ }
+
+ table {
+ width: 100%;
+ border-collapse: collapse;
+ background: var(--card-bg);
+ box-shadow: var(--shadow);
+ border-radius: 0.5rem;
+ }
+
+ th, td {
+ padding: 1rem;
+ text-align: center;
+ }
+
+ th {
+ background: var(--primary);
+ color: white;
+ }
+
+ tr:nth-child(even) {
+ background: #f8fafc;
+ }
+
+ .bonus-cards {
+ display: grid;
+ gap: 1.5rem;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ }
+
+ .bonus-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 0.5rem;
+ box-shadow: var(--shadow);
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--primary);
+ color: white;
+ margin-top: 3rem;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ h2 {
+ font-size: 1.75rem;
+ }
+
+ .price {
+ font-size: 2rem;
+ }
+ }