.elementor-13356 .elementor-element.elementor-element-d75e137{--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;--background-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-ccd8ed0 */.chws-program-card {
    --chws-primary-color: #4CAF50;
    --chws-secondary-color: #FF9800;
    --chws-text-color: #333;
    --chws-bg-color: #f5f5f5;
    --chws-card-bg: #ffffff;

    font-family: 'Roboto', sans-serif;
    background-color: var(--chws-card-bg);
    color: var(--chws-text-color);
    line-height: 1.6;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem auto;
    max-width: 1000px;
    transition: transform 0.3s ease;
}

.chws-program-card:hover {
    transform: translateY(-5px);
}

.chws-program-header {
    background: linear-gradient(135deg, var(--chws-primary-color), var(--chws-secondary-color));
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.chws-program-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    animation: chws-shine 20s linear infinite;
}

@keyframes chws-shine {
    0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
}

.chws-program-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.chws-program-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.chws-program-content {
    padding: 2rem;
}

.chws-program-intro, .chws-program-outro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

.chws-program-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
}

.chws-program-section:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.chws-section-title {
    color: var(--chws-primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--chws-secondary-color);
}

.chws-learning-list, .chws-career-list, .chws-benefits-list {
    padding-left: 0;
    list-style-type: none;
}

.chws-learning-item, .chws-career-item, .chws-benefits-item {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.chws-learning-item::before, .chws-career-item::before {
    content: '▹';
    color: var(--chws-secondary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.chws-benefits-item::before {
    content: '✓';
    color: var(--chws-primary-color);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.chws-learning-item span, .chws-career-item span {
    font-weight: 500;
    color: var(--chws-primary-color);
}

.chws-cta-section {
    background-color: var(--chws-primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chws-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    animation: chws-pulse 4s linear infinite;
}

@keyframes chws-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.chws-cta-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.chws-cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--chws-secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.chws-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .chws-program-card {
        margin: 1rem;
    }

    .chws-program-header {
        padding: 2rem 1.5rem;
    }

    .chws-program-title {
        font-size: 2.2rem;
    }

    .chws-program-subtitle {
        font-size: 1.3rem;
    }

    .chws-program-content {
        padding: 1.5rem;
    }

    .chws-section-title {
        font-size: 1.5rem;
    }
}/* End custom CSS */