    .step {
            background: #fff;
            border: 2px solid #a3d8e7;
            padding: 35px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }

        .step:hover {
            border-color: #00aec3;
            box-shadow: 0 5px 20px rgba(0, 174, 195, 0.15);
        }

        .step-number {
            display: inline-block;
            background: #00aec3;
            color: white;
            width: 50px;
            height: 50px;
            text-align: center;
            line-height: 50px;
            font-family: 'Encode Sans', sans-serif;
            font-weight: 800;
            font-size: 1.5em;
            margin-bottom: 20px;
        }

        .step h2 {
            font-family: 'Encode Sans', sans-serif;
            font-weight: 600;
            color: #000000;
            font-size: 1.8em;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .step p, .step li {
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            font-size: 1.1em;
            color: #000000;
        }

        @media (max-width: 768px) {
            
            .pricing-container {
                grid-template-columns: 1fr;
            }
            

            .step {
                padding: 25px 20px;
            }
            
        }
