
        :root {
            --primary-color: #30A0FF;
            --secondary-color: #FF6B35;
            --white: #ffffff;
            --text-gray: #333333;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Arial, sans-serif; }
        body { color: var(--text-gray); line-height: 1.6; overflow-x: hidden; padding: 20px 0; /* Added padding for standalone viewing */ }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .features { padding: 60px 0; /* Adjusted padding from 80px for standalone */ }
        .section-title { text-align: center; margin-bottom: 60px; position: relative; }
        .section-title h2 { font-size: 2.5rem; color: var(--text-gray); margin-bottom: 20px; }
        .section-title p { margin-bottom:20px; font-size: 1.1rem; color: #555;}
        .section-title:after { content: ''; display: block; width: 80px; height: 4px; background-color: var(--primary-color); margin: 20px auto 0; }
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
        .feature-box { text-align: center; padding: 30px; border-radius: 10px; box-shadow: var(--box-shadow); transition: all 0.3s; background-color: var(--white); }
        .feature-box:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); }
        .feature-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }
        .feature-box h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .feature-box p { font-size: 0.95rem; }
         @media (max-width: 768px) {
            .section-title h2 { font-size: 2rem; }
        }
        @media (max-width: 576px) {
            .section-title h2 { font-size: 1.8rem; }
            .features-grid { gap: 20px; }
        }
    