.elementor-13 .elementor-element.elementor-element-e614023{--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-9404bfc */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
}

#intro {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#intro .text {
    flex: 1;
}

#intro .image {
    flex: 1;
    text-align: center;
}

#intro img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

#why-us {
    background-color: #ffffff;
    padding: 40px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#why-us h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

#why-us .why-us-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.why-us-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.why-us-card i {
    font-size: 36px;
    color: #28a745;
    margin-bottom: 20px;
}

.why-us-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.why-us-card p {
    font-size: 16px;
    color: #555;
}

#services {
    background-color: #ffffff;
    padding: 40px;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#services h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 2.5em;
}

#services p {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #555;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-card i {
    font-size: 36px;
    color: #28a745;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #555;
}

@media screen and (max-width: 768px) {
    #services {
        padding: 25px;
    }

    .service-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .service-card {
        padding: 20px;
    }

    #why-us .why-us-cards {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .why-us-card {
        padding: 20px;
    }
}

#cta {
    background-color: #28a745;
    color: #fff;
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    border-radius: 8px;
}

.cta-button {/* End custom CSS */