/* ================================
   TRAINING HERO
================================ */

.training-hero {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url("images/handpan-training-hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 110px 20px;
    text-align: center;
    color: #ffffff;
}

.training-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.training-label {
    display: inline-block;
    background: #a55c35;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.training-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
}

.training-hero p {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ffffff;
}

.training-hero-btn {
    display: inline-block;
    background: #a55c35;
    color: #ffffff;
    padding: 15px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.training-hero-btn:hover {
    background: #8f4b2b;
    color: #ffffff;
    transform: translateY(-3px);
}


/* ================================
   TRAINING HIGHLIGHTS
================================ */

.training-highlights {
    max-width: 1150px;
    margin: -45px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
}

.highlight-box {
    background: #ffffff;
    padding: 28px 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.highlight-box i {
    font-size: 30px;
    color: #a55c35;
    margin-bottom: 12px;
}

.highlight-box h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 8px;
}

.highlight-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}


/* ================================
   TRAINING CONTENT SECTIONS
================================ */

.training-info-section,
.training-learn-section {
    max-width: 1050px;
    margin: 60px auto;
    padding: 0 20px;
}

.training-info-section h2,
.training-learn-section h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 18px;
}

.training-info-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.learn-card {
    background: #f7f1ea;
    padding: 24px 20px;
    border-radius: 14px;
}

.learn-card h4 {
    font-size: 18px;
    color: #a55c35;
    margin-bottom: 10px;
}

.learn-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ================================
   CONTACT SECTION
================================ */

.contact-choice-section {
    background: linear-gradient(135deg, #f5efe8, #ebe3da);
    width: 100%;
    padding: 35px 20px;
    margin: 40px 0;
    text-align: center;
}

.contact-choice-section h3 {
    font-size: 34px;
    font-weight: 700;
    color: #a55c35;
    margin-bottom: 8px;
    line-height: 1.2;
}

.contact-choice-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.contact-choice-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-choice-icons li {
    margin: 0;
}

.contact-choice-icons li a {
    width: 120px;
    height: 100px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #a55c35;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-choice-icons li a i {
    font-size: 32px;
    margin-bottom: 8px;
}

.contact-choice-icons li a span {
    font-size: 14px;
    font-weight: 600;
}

.contact-choice-icons li a:hover {
    background: #a55c35;
    color: #ffffff;
    transform: translateY(-4px);
}

.contact-response-time {
    margin-top: 15px;
    margin-bottom: 0 !important;
    font-size: 14px !important;
    color: #777 !important;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .training-highlights,
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .training-hero {
        padding: 80px 20px;
    }

    .training-hero h1 {
        font-size: 34px;
    }

    .training-hero p {
        font-size: 18px;
    }

    .training-highlights {
        margin: 40px auto;
    }

    .contact-choice-section {
        padding: 30px 15px;
    }

    .contact-choice-section h3 {
        font-size: 30px;
    }

    .contact-choice-section p {
        font-size: 17px;
    }

    .contact-choice-icons li a {
        width: 110px;
        height: 95px;
    }
}

@media (max-width: 480px) {
    .training-highlights,
    .learn-grid {
        grid-template-columns: 1fr;
    }

    .training-hero h1 {
        font-size: 30px;
    }

    .training-hero p {
        font-size: 16px;
    }

    .training-info-section h2,
    .training-learn-section h2 {
        font-size: 28px;
    }

    .contact-choice-section {
        padding: 25px 15px;
    }

    .contact-choice-section h3 {
        font-size: 26px;
    }

    .contact-choice-section p {
        font-size: 15px;
    }

    .contact-choice-icons {
        gap: 10px;
    }

    .contact-choice-icons li a {
        width: 95px;
        height: 85px;
    }

    .contact-choice-icons li a i {
        font-size: 24px;
    }

    .contact-choice-icons li a span {
        font-size: 12px;
    }
}
.training-schedule-section {
    margin: 60px 0;
}

.training-schedule-section h2 {
    font-size: 22px;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
    color: #101010;
    font-weight: 700;
}

.schedule-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #f7f1ea;
    border-left: 5px solid #a55c35;
    padding: 24px 28px;
    margin-bottom: 16px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.schedule-time {
    min-width: 210px;
    font-size: 18px;
    font-weight: 700;
    color: #a55c35;
}

.schedule-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.schedule-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .schedule-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .schedule-time {
        min-width: auto;
        font-size: 18px;
    }

    .schedule-content h4 {
        font-size: 19px;
    }
}
      .course-overview-section {
    background: #faf6f1;
    padding: 45px 40px;
    border-radius: 22px;
    margin: 20px 0;
}

.course-intro {
    max-width: 950px;
    margin-bottom: 35px;
}

.section-label {
    display: inline-block;
    color: #a55c35;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.course-intro h2 {
    font-size: 38px;
    color: #a55c35;
    margin-bottom: 16px;
}

.course-intro p,
.course-audience p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.course-audience {
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 16px;
    margin-bottom: 28px;
    border-left: 5px solid #a55c35;
}

.course-audience h3,
.course-card h3 {
    font-size: 21px;
    color: #111;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.course-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.course-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.course-card li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 6px;
}

.course-card li::marker {
    color: #a55c35;
}

@media (max-width: 768px) {
    .course-overview-section {
        padding: 35px 22px;
        margin: 45px 0;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .course-intro h2 {
        font-size: 30px;
    }

    .course-intro p,
    .course-audience p {
        font-size: 16px;
    }
}
      
      .training-details-section {
    margin: 60px 0;
}

.training-details-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 45px;
}

.training-detail-clean {
    border-top: 2px solid #e8ded5;
    padding-top: 22px;
}

.training-detail-clean h3 {
    font-size: 22px;
    color: #111;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.training-detail-clean p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 10px;
}

.training-detail-clean ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.training-detail-clean li {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.training-detail-clean li::marker {
    color: #a55c35;
}

.training-detail-clean a {
    color: #a55c35;
    text-decoration: none;
    font-weight: 500;
}

.training-detail-clean a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .training-details-row {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }
}