.elementor-4980 .elementor-element.elementor-element-f5d5f59{--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;}.elementor-4980 .elementor-element.elementor-element-20ae89d{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-4980 .elementor-element.elementor-element-e556776{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:150px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-9ba2fa4 *//* --- Custom Variables for Color --- */
:root {
    --primary-color: #0381A8; /* CTA background, subheadings, links */
    --black-text: #000000;
    --white-text: #ffffff;  /* CTA text */
    --light-bg: #f7f7f7; /* For subtle section backgrounds */
}

/* --- Base Styling and Typography --- */
.custom-page-container h1,
.custom-page-container h2,
.custom-page-container h3,
.custom-page-container h4,
.custom-page-container p,
.custom-page-container ul,
.custom-page-container li {
    font-family: Arial, sans-serif; 
    line-height: 1.6;
}

/* Main Heading Style (h2) - Centered and Black */
.custom-page-container h2 {
    color: var(--black-text);
    font-size: 2.5em; 
    margin-bottom: 0.5em;
    font-weight: bold;
    text-align: center; 
}

/* Subheading Style (h3) - Centered and Primary Color */
.custom-page-container h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 0.5em;
    margin-bottom: 0.25em;
    text-align: center; 
}

/* Smaller Headings (h4) - Centered and Black */
.custom-page-container h4 {
    color: var(--black-text);
    font-size: 1.3em;
    margin-top: 1.5em;
    margin-bottom: 0.2em;
    text-align: center; 
}

/* CTA Button Styling */
.custom-cta-button {
    display: inline-block;
    background-color: #0381A8; /* Main color as requested */
    color: #ffffff !important; /* White text as requested */
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    border: none;
    margin-top: 20px;
    cursor: pointer;
}

.custom-cta-button:hover {
    background-color: #02607a; 
    color: #ffffff !important;
}

/* --- Section Layouts & Responsiveness --- */
.custom-section {
    padding: 40px 0;
    margin-bottom: 20px;
}

.section-bg-light {
    background-color: var(--light-bg);
}

/* Centers content within the hero/intro section */
.hero-section {
    text-align: center;
}

/* Flex Container for Multi-Column Layouts (e.g., features, courses) */
.flex-container {
    display: flex;
    flex-wrap: wrap; 
    gap: 30px; 
    margin-top: 20px;
}

/* Course Categories - 3 Columns on desktop */
.flex-item-33 {
    flex: 1 1 calc(33.333% - 20px); 
    box-sizing: border-box;
    min-width: 300px; 
    text-align: left; /* Content within course columns aligns left */
}

/* Delivery Options & Commitment - 2 Columns on desktop */
.flex-item-50 {
    flex: 1 1 calc(50% - 15px);
    box-sizing: border-box;
    min-width: 300px;
}

/* Features/Why Choose Us - List Styling */
.feature-list {
    list-style: none; 
    padding: 0;
    max-width: 900px; /* Constrain list width for readability */
    margin: 20px auto 0 auto;
    text-align: left;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓'; 
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0;
}

/* Course Details List Styling */
.course-list {
    list-style: none;
    padding: 0;
}

.course-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.course-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Final CTA Section (Already centered) */
.final-cta-section {
    text-align: center;
    padding: 60px 20px;
}

.final-cta-section .contact-info p {
    margin: 5px 0;
    font-size: 1.1em;
}

/* --- New Style for Audience Cards --- */
.audience-card-container {
    padding: 20px 0; /* Add padding above/below the grid */
}

.audience-card {
    background-color: var(--white-text); /* White background for the card */
    border: 1px solid #e0e0e0; /* Subtle border */
    border-radius: 8px; /* Rounded corners */
    padding: 25px;
    height: 100%; /* Ensures all cards stretch to the same height in a row */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); /* Light shadow for depth */
    text-align: left !important; /* Force text alignment left inside the card for readability */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px); /* Lift card slightly on hover */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.audience-card h4 {
    /* Reset h4 style inside the card to align left and use primary color */
    text-align: left !important;
    color: var(--primary-color) !important;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.audience-card p {
    text-align: left !important; /* Ensure paragraph text is aligned left */
}

/* --- Media Queries for Mobile Responsiveness --- */
@media (max-width: 992px) {
    /* Tablet & Smaller Desktop */
    .custom-page-container h2 {
        font-size: 2em;
    }
    .flex-item-33, .flex-item-50 {
        flex: 1 1 calc(50% - 15px); /* 2 items per row */
        min-width: unset;
    }
}

@media (max-width: 576px) {
    /* Mobile Devices */
    .custom-page-container h2 {
        font-size: 1.7em;
    }
    .custom-page-container h3, .custom-page-container h4 {
        font-size: 1.3em;
    }
    .flex-item-33, .flex-item-50 {
        flex: 1 1 100%; /* Stack all items */
        min-width: unset;
    }
    .custom-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .custom-section {
        padding: 30px 15px;
    }
}/* End custom CSS */