.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-22980 .elementor-element.elementor-element-7e54736{--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-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS *//* General Layout */
.article-container-konkoor {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 1.9;
    color: #333;
    direction: rtl;
    max-width: 900px;
    margin: auto;
}

/* Headings */
.article-container-konkoor h1 {
    color: #2c3e50; /* Dark Blue-Gray */
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}
.article-container-konkoor h2 {
    font-size: 1.9rem;
    color: #2980b9; /* Bright Blue */
    margin-top: 45px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db; /* Lighter Blue */
    text-align: right;
}
.article-container-konkoor h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-top: 30px;
}

/* Paragraph and Lists */
.article-container-konkoor p {
    font-size: 1.1rem;
    color: #424242;
    text-align: justify;
}
.article-container-konkoor ul {
    list-style-type: '✅ ';
    padding-right: 20px;
}
.article-container-konkoor li {
    margin-bottom: 10px;
}

/* Course Highlight Box */
.course-highlight-box {
    background-color: #e8f5e9; /* Light Green */
    border: 2px dashed #27ae60; /* Green */
    padding: 25px;
    margin-top: 40px;
    border-radius: 12px;
}
.course-highlight-box h2 {
    color: #16a085; /* Teal */
    border-bottom-color: #1abc9c;
    text-align: center;
}
.course-highlight-box .schedule-box {
    background-color: #fff9e6; /* Light Yellow */
    border: 1px solid #f1c40f; /* Yellow */
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
}

/* UPDATED: Course Poster Style */
.course-poster {
    display: block;
    width: 40%; /* Made smaller, approximately half of the previous 65-80% */
    max-width: 350px; /* Set a smaller max-width */
    margin: 0 auto 25px auto; /* Centered and has margin-bottom */
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Pro Instructor Box Style */
.instructor-box-pro {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.instructor-box-pro .instructor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    background-color: #f8f8f8;
    flex-shrink: 0;
}
.instructor-box-pro .instructor-info {
    flex: 1;
}
.instructor-box-pro .instructor-info h3 {
    margin-top: 0;
    color: #2c3e50;
}
.instructor-box-pro .instructor-info p {
    margin-bottom: 5px;
    font-size: 1rem;
    text-align: right;
    color: #555;
}

/* Final CTA Button Style */
.cta-button-konkoor {
    display: block;
    background-color: #e67e22; /* Orange */
    color: white !important;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 1.3rem;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.cta-button-konkoor:hover {
    background-color: #d35400; /* Darker Orange */
    transform: translateY(-3px);
}

/* Table Styles */
.table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}
.coefficients-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 0.95rem;
}
.coefficients-table thead {
    background-color: #2980b9;
    color: white;
}
.coefficients-table th, .coefficients-table td {
    padding: 12px 10px;
    border: 1px solid #bdc3c7;
}
.coefficients-table tbody tr:nth-child(even) {
    background-color: #ecf0f1;
}
.coefficients-table tbody tr:hover {
    background-color: #dbe4e8;
}
.coefficients-table .highlight {
    font-weight: bold;
    color: #c0392b; /* Red */
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .instructor-box-pro {
        flex-direction: column;
        text-align: center;
    }
    .instructor-box-pro .instructor-info p {
        text-align: center;
    }
    .course-poster {
        width: 80%; /* A bit larger on small screens for readability */
    }
}/* End custom CSS */