/* style.css */ @import url('/css2?family=Roboto:wght@400;700&display=swap'); body { margin: 0; font-family: 'Roboto', sans-serif; } .container { max-width: 800px; margin: auto; padding: 20px; } h2 { color: #333; } .pricing-plan { background-color: #f5f5f5; border-radius: 8px; padding: 15px; margin-bottom: 20px; } .plan-name { font-size: 24px; font-weight: 700; margin-bottom: 10px; } .plan-price { font-size: 36px; color: #2c3e50; font-weight: 600; } .plan-description { color: #666; margin-bottom: 15px; } .features { display: flex; gap: 15px; flex-wrap: wrap; justify-content: space-between; } .feature { flex: 1 1 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; background-color: #fff; text-align: center; } .feature h3 { margin-top: 0; font-size: 16px; color: #444; } .feature p { color: #999; font-size: 14px; } .button { padding: 12px 20px; font-size: 16px; color: #fff; background-color: #2c3e50; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s ease; } .button:hover { background-color: #34495a; }