.elementor-11 .elementor-element.elementor-element-255ba75{--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-3b991b8 *//* About Us Section */
.about-us-section {
    padding: 60px 20px;
    background-color: #f4f4f4; /* Light Gray background */
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    color: #333; /* Dark Gray text */
}
.about-us-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #00796b; /* Dark Teal */
    font-weight: bold;
    letter-spacing: 1px;
}
.about-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
    font-size: 1.15em;
}
.about-content p {
    margin-bottom: 25px;
    color: #555;
}
.about-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.about-content ul li {
    font-size: 1.2em;
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}
.about-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3em;
    color: #FF7043; /* Coral */
}
.about-content h3 {
    font-size: 2.3em;
    margin-top: 40px;
    color: #333;
    font-weight: 600;
    margin-bottom: 20px;
}
.about-img {
    width: 100%;
    max-width: 650px;
    margin: 40px auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.about-img:hover {
    transform: scale(1.05);
}

/* Academy Section */
.academy-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}
.academy-section h2 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #00796b; /* Dark Teal */
    font-weight: bold;
}
.academy-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.8;
    font-size: 1.15em;
}
.academy-content p {
    margin-bottom: 25px;
    color: #555;
}
.academy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}
.academy-content ul li {
    font-size: 1.2em;
    line-height: 1.8;
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
}
.academy-content ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.3em;
    color: #FF7043; /* Coral */
}
.academy-img {
    width: 100%;
    max-width: 650px;
    margin: 40px auto;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.academy-img:hover {
    transform: scale(1.05);
}

/* Section Title Styling */
h2 {
    color: #00796b; /* Dark Teal */
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .about-us-section, .academy-section {
        padding: 40px 20px;
    }
    .about-us-section h2, .academy-section h2 {
        font-size: 2.2em;
    }
    .about-content h3, .academy-content h3 {
        font-size: 2em;
    }
    .about-content p, .academy-content p {
        font-size: 1em;
    }
    .about-img, .academy-img {
        width: 90%;
        max-width: 100%;
    }
    .about-content ul li, .academy-content ul li {
        font-size: 1em;
        padding-left: 20px;
    }
}

/* Button Styling (If you plan to add CTAs like "Learn More") */
button, .cta-btn {
    background-color: #FF7043; /* Coral */
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1.2em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
}
button:hover, .cta-btn:hover {
    background-color: #d45f39; /* Darker Coral */
}

/* Add Smooth Scrolling for Mobile */
html {
    scroll-behavior: smooth;
}/* End custom CSS */