@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap'); body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; scroll-behavior: smooth; display: flex; flex-direction: column; min-height: 100vh; margin: 0; color: #333; line-height: 1.6; } main { flex: 1; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } section { padding: 80px 0; } .gradient-text { background: linear-gradient(90deg, #3B82F6 0%, #10B981 100%); -webkit-background-clip: text; background-clip: text; color: transparent; } .hover-scale { transition: transform 0.3s ease; } .hover-scale:hover { transform: scale(1.03); } .plan-card:hover { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }