.elementor-518 .elementor-element.elementor-element-bd331b7{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-f94d93e *//* General Section Styling */
.home-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 30px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero-container {
    background-color: #28a745; /* Green */
    color: #ffffff;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}

.hero-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-container p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ffffff;
    color: #28a745; /* Green */
    padding: 12px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f1f1f1;
}

/* Services Section (Card Layout) */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 20px;
    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 h3 {
    color: #28a745; /* Green */
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #333;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Testimonial Section */
.testimonial-section {
    padding: 40px;
    text-align: center;
    margin-top: 40px;
}

.testimonial-section h3 {
    color: #28a745; /* Green */
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card p {
    font-size: 16px;
    color: #333;
    font-style: italic;
}

.testimonial-card strong {
    display: block;
    margin-top: 10px;
    color: #28a745; /* Green */
}



/* Tips Section */
.tips-section {
    background-color: #f1f1f1;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tips-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #28a745; /* Green */
}

.tips-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding-top: 20px;
}

.tips-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tips-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.tips-card h4 {
    color: #28a745; /* Green */
    font-size: 20px;
    margin-bottom: 10px;
}

.tips-card p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.tips-icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: #28a745; /* Green */
}


/* Call to Action Section */
.cta-section {
    background-color: #f1f1f1;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

.cta-section h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #28a745; /* Green */
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-section {
        padding: 20px;
    }

    .hero-container {
        padding: 30px;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 30px;
    }
}/* End custom CSS */