.elementor-28 .elementor-element.elementor-element-ec7cb25{--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;}/* Start custom CSS for html, class: .elementor-element-a1151df *//* General Style */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f7fc;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header & Footer (Already present in your theme) */

/* Section 1 - Intro */
#intro {
    background-color: #1E3A8A; /* Blue */
    color: white;
    padding: 50px 0;
}

#intro .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

#intro .text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#intro .text p {
    font-size: 18px;
    line-height: 1.6;
}

#intro .image img {
    max-width: 100%;
    border-radius: 10px;
    width: 100%;
    height: auto;
}

/* Section 2 - Why Us */
#why-us {
    background-color: #fff;
    padding: 50px 0;
}

#why-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

#why-us h2 {
    font-size: 32px;
    color: #1E3A8A;
    text-align: center;
    margin-bottom: 30px;
}

#why-us .feature {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

#why-us .feature i {
    font-size: 40px;
    color: #FF8C00; /* Orange */
    margin-right: 20px;
}

#why-us .feature h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

#why-us .feature p {
    font-size: 18px;
    color: #555;
}

/* Section 3 - Services */
#services {
    background-color: #FF8C00; /* Orange */
    color: white;
    padding: 50px 0;
}

#services .container {
    max-width: 1200px;
    margin: 0 auto;
}

#services h2 {
    font-size: 32px;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

#services .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#services .service {
    background-color: #1E3A8A; /* Blue */
    color: white;
    padding: 30px;
    border-radius: 10px;
    width: 250px;
    margin: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

#services .service:hover {
    transform: translateY(-10px);
}

#services .service i {
    font-size: 40px;
    color: #FF8C00;
    margin-bottom: 15px;
}

#services .service h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

#services .service p {
    font-size: 16px;
}

/* Section 4 - Call to Action */
#cta {
    background-color: #1E3A8A; /* Blue */
    color: white;
    padding: 50px 0;
    text-align: center;
}

#cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

#cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

#cta .cta-button {
    background-color: #FF8C00; /* Orange */
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

#cta .cta-button:hover {
    background-color: #cc7a00; /* Darker Orange */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    #intro .container {
        flex-direction: column;
        align-items: center;
    }

    #intro .text {
        text-align: center;
        margin-bottom: 20px;
    }

    #why-us .feature {
        flex-direction: column;
        align-items: center;
    }

    #services .service-list {
        justify-content: center;
    }

    #services .service {
        width: 100%;
        margin-bottom: 20px;
    }

    #cta h2 {
        font-size: 28px;
    }

    #cta p {
        font-size: 16px;
    }

    #cta .cta-button {
        font-size: 16px;
        padding: 12px 25px;
    }
}

@media screen and (max-width: 480px) {
    #intro .text h2 {
        font-size: 28px;
    }

    #intro .text p {
        font-size: 16px;
    }

    #why-us h2 {
        font-size: 28px;
    }

    #why-us .feature i {
        font-size: 30px;
    }

    #why-us .feature h3 {
        font-size: 20px;
    }

    #services h2 {
        font-size: 28px;
    }

    #cta h2 {
        font-size: 24px;
    }

    #cta p {
        font-size: 14px;
    }

    #cta .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }
}/* End custom CSS */