.elementor-1513 .elementor-element.elementor-element-5147963{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-1513 .elementor-element.elementor-element-cb0c231{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-1513 .elementor-element.elementor-element-5147963{--content-width:1400px;}.elementor-1513 .elementor-element.elementor-element-cb0c231{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-94f6631 */<style>
        /* General Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        /* Header Section */
        .header-section {
            text-align: center;
            padding: 50px 20px;
            background-color: #ffffff;
        }

        .header-section h1 {
            font-size: 36px;
            margin-bottom: 10px;
            color: #2c3e50;
            font-weight: bold;
        }

        .header-section p {
            font-size: 18px;
            color: #666;
            margin-bottom: 20px;
        }

        .header-section a {
            display: inline-block;
            margin-top: 10px;
            text-decoration: none;
            color: #5A43EF; /* WhatsApp green */
            font-weight: bold;
            font-size: 20px;
        }

        .header-section a i {
            margin-right: 10px;
        }

        /* Cards Section */
        .cards-section {
            padding: 40px 20px;
            background-color: #f9f9f9;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        /* Individual Card */
        .card {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
        }

        .card i {
            font-size: 40px;
            color: #5A43EF;
            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .card p {
            font-size: 16px;
            color: #666;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-section h1 {
                font-size: 30px;
            }

            .header-section p {
                font-size: 16px;
            }
        }
    </style>/* End custom CSS */