 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: #f9f9fc;
            text-align: center;
            padding: 80px 0;
        }

        .hero-title {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .cta-button {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #2980b9;
        }

        .features {
            display: flex;
            justify-content: space-between;
            padding: 80px 0;
            background-color: #ffffff;
        }

        .feature {
            flex: 1;
            text-align: center;
            padding: 0 20px;
        }

        .feature-icon {
            font-size: 3rem;
            color: #3498db;
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .feature-description {
            color: #7f8c8d;
        }

        .how-it-works {
            background-color: #f9f9fc;
            padding: 80px 0;
            text-align: center;
        }

        .works-steps {
            display: flex;
            justify-content: space-around;
            margin-top: 50px;
        }

        .step {
            flex: 1;
            padding: 20px;
            max-width: 250px;
        }

        .step-number {
            background-color: #3498db;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .features, .works-steps {
                flex-direction: column;
            }

            .feature, .step {
                margin-bottom: 30px;
            }

            .hero-title {
                font-size: 2rem;
            }
        }