        .description{
            font-size: 18px;
            margin-bottom: 10px;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
        }
        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ff8364;
        }
        .comparison-table th {
            background-color: #ff8364;
        }
        .feature-sections {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ff8364;
            margin: 10px 0px;
        }
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .feature-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 30px;
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .how-it-works {
            background-color: var(--light);
            padding: 60px 0;
            margin: 50px 0;
        }
        .step {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            padding: 20px;
            background-color: rgba(166, 93, 232, 0.1);
        }
        .step-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary);
            margin-right: 20px;
            min-width: 60px;
        }
        .client-proof {
            background-color: var(--primary);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .resources {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .resource-card {
            border: 1px solid #eee;
            padding: 20px;
            border-radius: 8px;
        }
        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .step {
                flex-direction: column;
                text-align: center;
            }
            .step-number {
                margin-right: 0;
                margin-bottom: 10px;
            }
        }
