:root {
    --primary: #4CAF50;
    --dark: #2c3e50;
    --light: #f9f9f9;
}

body { font-family: 'Inter', sans-serif; margin: 0; color: var(--dark); line-height: 1.6; }

nav { padding: 20px; display: flex; justify-content: space-between; background: white; border-bottom: 1px solid #eee; }

.hero { padding: 80px 20px; text-align: center; background: #f0f4f8; }

.cta-button { background: var(--primary); color: white; padding: 15px 30px; text-decoration: none; border-radius: 5px; font-weight: bold; }

.pricing-container { display: flex; justify-content: center; gap: 20px; padding: 50px; flex-wrap: wrap; }

.card { border: 1px solid #ddd; border-radius: 12px; padding: 30px; width: 300px; text-align: center; background: white; }

.featured { border: 2px solid var(--primary); transform: scale(1.05); position: relative; }

.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; }

.cta { background: var(--primary); color: white; border: none; padding: 12px 24px; border-radius: 6px; cursor: pointer; font-weight: bold; width: 100%; transition: opacity 0.2s; }

.cta:hover { opacity: 0.9; }

.main-footer { background-color: #f8f9fa; padding: 40px 20px; border-top: 1px solid #eee; margin-top: 50px; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; max-width: 1100px; margin: 0 auto; }

.footer-column ul { list-style: none; padding: 0; }

.footer-column a { text-decoration: none; color: #666; }
