.gima-course-104 {
    font-family: Arial, Helvetica, sans-serif;
    color: #555;
    background: #fff;
}

.gima-course-container {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}

.gima-course-hero {
    background: linear-gradient(90deg, #1574b8, #2fb5d2);
    padding: 50px 0;
    color: #fff;
}

.gima-course-hero-grid {
    display: grid;
    grid-template-columns: 33.333% 41.667% 25%;
    gap: 25px;
    align-items: center;
}

.gima-course-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.gima-course-category {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.gima-course-hero .gima-course-header-content h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
}

.gima-course-students {
    font-size: 15px;
}

.gima-course-price-area {
    text-align: center;
}

.gima-course-price {
    margin-bottom: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.gima-course-button {
    display: block;
    padding: 13px 20px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.gima-course-button:hover {
    background: #fff;
    color: #1574b8;
}

.gima-course-main {
    padding: 55px 0;
}

.gima-course-content-grid {
    display: grid;
    grid-template-columns: 25% 75%;
    gap: 40px;
}

.gima-course-sidebar {
    border-right: 1px solid #e5e5e5;
    padding-right: 25px;
}

.gima-instructor {
    text-align: center;
    margin-bottom: 35px;
}

.gima-instructor img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.gima-instructor h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #333;
}

.gima-course-features h3 {
    margin-bottom: 14px;
    color: #333;
}

.gima-course-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gima-course-features li {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.gima-course-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.gima-course-tab {
    padding: 15px;
    border: 0;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: background 0.2s ease, color 0.2s ease;
}

.gima-course-tab + .gima-course-tab {
    border-left: 1px solid #ddd;
}

.gima-course-tab.is-active {
    background: #8dd3e7;
    color: #fff;
}

.gima-course-tab-panel[hidden] {
    display: none;
}

.gima-course-tab-panel h2 {
    margin: 0 0 25px;
    color: #333;
    font-size: 26px;
    line-height: 1.3;
}

.gima-course-tab-panel h3 {
    margin-top: 32px;
    color: #333;
    font-size: 20px;
}

.gima-course-tab-panel h4 {
    margin-top: 24px;
    color: #333;
}

.gima-course-tab-panel p {
    line-height: 1.75;
    margin: 0 0 18px;
}

.gima-course-tab-panel ul,
.gima-course-tab-panel ol {
    padding-left: 20px;
}

.gima-course-tab-panel li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.gima-course-info-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.gima-info-button {
    padding: 10px 16px;
    border: 1px solid #1574b8;
    background: #1574b8;
    color: #fff;
    cursor: pointer;
    border-radius: 3px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.gima-info-button:hover {
    background: #0f5c94;
}

.gima-curriculum-header {
    position: relative;
    margin-bottom: 22px;
}

.gima-curriculum-header h2 {
    margin-bottom: 8px;
}

.gima-curriculum-header p {
    color: #777;
    margin: 0;
}

.gima-expand-all {
    position: absolute;
    top: 5px;
    right: 0;
    border: 0;
    background: transparent;
    color: #222;
    font-weight: 600;
    cursor: pointer;
}

.gima-expand-all:hover {
    color: #1574b8;
}

.gima-curriculum-section {
    margin-bottom: 10px;
    border: 1px solid #dedede;
    background: #fff;
}

.gima-curriculum-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 17px 18px;
    border: 0;
    background: #f3f3f5;
    cursor: pointer;
    color: #222;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

.gima-curriculum-heading:hover {
    background: #ececee;
}

.gima-curriculum-heading-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gima-curriculum-chevron {
    display: inline-block;
    width: 18px;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.gima-curriculum-section.is-open .gima-curriculum-chevron {
    transform: rotate(180deg);
}

.gima-section-count {
    color: #444;
    font-weight: 700;
    min-width: 20px;
    text-align: right;
}

.gima-curriculum-items {
    display: none;
}

.gima-curriculum-section.is-open .gima-curriculum-items {
    display: block;
}

.gima-curriculum-item {
    display: grid;
    grid-template-columns: 26px 72px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    border-top: 1px solid #eee;
    background: #fff;
}

.gima-curriculum-item:hover {
    background: #fafafa;
}

.gima-item-icon {
    font-size: 15px;
}

.gima-item-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #aaa;
}

.gima-item-title {
    color: #333;
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

a.gima-item-title {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

a.gima-item-title:hover {
    color: #1574b8;
    text-decoration: underline;
}

.gima-item-meta {
    color: #777;
    font-size: 13px;
    white-space: nowrap;
    text-align: right;
}

.gima-instructor-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gima-instructor-profile img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.gima-instructor-profile h3 {
    margin-bottom: 8px;
    color: #333;
}

.gima-course-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
}

.gima-course-modal[hidden] {
    display: none;
}

.gima-course-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.gima-course-modal-content {
    position: relative;
    width: min(600px, calc(100% - 30px));
    margin: 10vh auto 0;
    padding: 35px;
    background: #fff;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gima-course-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: none;
    font-size: 30px;
    cursor: pointer;
    color: #666;
}

@media (max-width: 980px) {
    .gima-course-hero-grid,
    .gima-course-content-grid {
        grid-template-columns: 1fr;
    }
    .gima-course-sidebar {
        border-right: 0;
        border-bottom: 1px solid #e5e5e5;
        padding-right: 0;
        padding-bottom: 30px;
    }
    .gima-course-price-area {
        text-align: left;
    }
    .gima-course-container {
        width: calc(100% - 30px);
    }
    .gima-expand-all {
        position: static;
        margin-top: 14px;
    }
}

@media (max-width: 600px) {
    .gima-course-tabs {
        grid-template-columns: 1fr;
    }
    .gima-course-tab + .gima-course-tab {
        border-left: 0;
        border-top: 1px solid #ddd;
    }
    .gima-course-header-content h1 {
        font-size: 25px;
    }
    .gima-curriculum-item {
        grid-template-columns: 22px 1fr;
        gap: 8px;
    }
    .gima-item-type {
        grid-column: 2;
    }
    .gima-item-meta {
        grid-column: 2;
        text-align: left;
    }
}
