.elementor-21 .elementor-element.elementor-element-a3e7866{--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-f6b6ca0 *//* General Styles */
* {
    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 Section */
#intro {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px 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 Section */
#why-us {
    background-color: #ffffff;
    padding: 40px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#why-us h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

#why-us .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background-color: #ff6f61;
    color: white;
}

.feature-card i {
    font-size: 40px;
    color: #ff6f61;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Services Section */
#services {
    background-color: #ffffff;
    padding: 40px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#services h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.service {
    background-color: #f1f1f1;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
}

.service:hover {
    background-color: #ff6f61;
    color: white;
}

.service i {
    font-size: 40px;
    color: #ff6f61;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Call to Action Section */
#cta {
    background-color: #ff6f61;
    color: #fff;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border-radius: 8px;
}

.cta-button {
    background-color: #fff;
    color: #ff6f61;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s ease;
}

.cta-button:hover {
    background-color: #f8f9fa;
    color: #ff6f61;
}

/* Footer Section */
footer {
    background-color: #ff6f61;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer a {
    color: #fff;
    margin: 0 10px;
    font-size: 24px;
    text-decoration: none;
}

footer a:hover {
    color: #ffcc00;
}

/* Responsive Design */
@media (max-width: 768px) {
    #intro {
        flex-direction: column;
        text-align: center;
    }

    #intro img {
        width: 80%;
        max-width: 400px;
        margin-bottom: 20px;
    }

    #why-us h2, #services h2 {
        font-size: 28px;
    }

    .feature-card, .service {
        padding: 15px;
    }

    .feature-card i, .service i {
        font-size: 35px;
    }

    .feature-card h3, .service h3 {
        font-size: 20px;
    }

    .feature-card p, .service p {
        font-size: 14px;
    }

    .cta-button {
        font-size: 16px;
    }
}/* End custom CSS */