/* =========================================
   COURSE DETAIL PAGE — course-detail.css
========================================= */

/* =========================================
   SECTION 1 — HERO
========================================= */

.coursepage .course-hero-section {
    width: 100%;
    padding: 130px 30px 150px;
    background: #F6F8FE;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.coursepage .course-hero-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.coursepage .course-hero-title-block {
    flex: 1;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.coursepage .course-hero-title-block1 {
    flex: 1;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.coursepage .course-label {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .course-title {
    color: #082F56;
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.coursepage .course-hero-spacer {
    flex: 1;
    max-width: 700px;
}

.coursepage .course-hero-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.coursepage .course-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.coursepage .course-tagline {
    max-width: 500px;
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .course-tagline1 {
    max-width: 600px;
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .course-description {
    max-width: 500px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}
.coursepage .course-description1 {
    max-width: 600px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.coursepage .course-hero-image {
    width: 701px;
    height: 701px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    flex-shrink: 0;
}

/* =========================================
   BUTTONS
========================================= */

.coursepage .btn-primary-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 22px;
    background: #082F56;
    border-radius: 45px;
    border: 1px solid #082F56;
    color: #ffffff;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.coursepage .btn-primary-dark:hover {
    background: transparent;
    color: #082F56;
}

.coursepage .btn-primary-dark1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 22px;
    background: #ffffff;
    border-radius: 45px;
    border: 1px solid #ffffff;
    color: #082F56;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.coursepage .btn-primary-dark1:hover {
    background: transparent;
    color: #ffffff;
}

.coursepage .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 9px 22px;
    background: transparent;
    border-radius: 45px;
    border: 1px solid #082F56;
    color: #082F56;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    transition: background .25s, color .25s;
    cursor: pointer;
}

.coursepage .btn-outline-dark:hover {
    background: #082F56;
    color: #ffffff;
}

/* =========================================
   SECTION 2 — IS THIS RIGHT FOR YOU (navy)
========================================= */

.coursepage .course-right-section {
    width: 100%;
    padding: 100px 30px 150px;
    background: #082F56;
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.coursepage .course-right-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.coursepage .course-right-spacer {
    flex: 1;
    max-width: 700px;
}

.coursepage .course-right-title {
    flex: 1;
    max-width: 700px;
    color: #ffffff;
    font-size: 70px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.coursepage .course-right-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.coursepage .course-right-image {
    width: 701px;
    height: 701px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    flex-shrink: 0;
}

.coursepage .course-right-content {
    flex: 1;
    color: #ffffff;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   SECTION 3 — BANNER + INSTRUCTORS + STANDOUT
========================================= */

.coursepage .course-info-section {
    width: 100%;
    padding: 100px 30px;
    background: #F6F8FE;
    display: flex;
    flex-direction: column;
    gap: 100px;
    align-items: flex-end;
}

/* full width banner image with overlay text */
.coursepage .course-banner {
    width: 100%;
    height: 480px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.coursepage .course-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coursepage .course-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0) 65%);
    border-radius: 25px;
}

.coursepage .course-banner-content {
    position: absolute;
    inset: 0;
    padding: 50px 30px 100px;
    display: flex;
    align-items: flex-start;
}

.coursepage .course-banner-inner {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coursepage .course-banner-title {
    color: #ffffff;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .course-banner-text {
    max-width: 500px;
    color: #ffffff;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   INSTRUCTORS
========================================= */

.coursepage .instructors-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.coursepage .instructors-heading {
    color: #082F56;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    max-width: 500px;
}

.coursepage .instructors-row {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.coursepage .instructor-card {
    width: 711px;
    padding: 30px 30px 80px;
    background: #F1F3FA;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
}

.coursepage .instructor-photo {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.coursepage .instructor-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.coursepage .instructor-name {
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.coursepage .instructor-role {
    color: #92AED8;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.coursepage .instructor-bio {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   DIVIDER
========================================= */

.coursepage .section-divider {
    width: 100%;
    height: 1px;
    background: #ffffff;
}

/* =========================================
   STANDOUT CARDS
========================================= */

.coursepage .standout-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.coursepage .standout-heading {
    color: #082F56;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    max-width: 500px;
}

.coursepage .standout-cards-row {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.coursepage .standout-card {
    flex: 1;
    padding: 50px 30px 100px;
    background: #082F56;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.coursepage .standout-card-title {
    color: #ffffff;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .standout-card-text {
    color: #ffffff;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   PROGRAM OVERVIEW
========================================= */
/* =========================================
   MODULE FEATURES CARD
========================================= */

.coursepage .module-features-card {
    width: 100%;
    max-width: 500px;
    padding: 30px 30px 60px;
    background: #082F56;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.coursepage .module-features-title {
    color: #ffffff;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .module-features-list {
    display: flex;
    flex-direction: column;
}

.coursepage .module-feature-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 20px 0;
}

.coursepage .module-feature-item:first-child {
    padding-top: 0;
}

.coursepage .module-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* header row — name + toggle */
.coursepage .module-feature-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.coursepage .module-feature-name {
    color: #92AED8;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    flex: 1;
}

/* circle chevron toggle */
.coursepage .module-feature-toggle {
    width: 32px;
    height: 32px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s;
}

.coursepage .module-feature-toggle::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid #ffffff;
    border-bottom: 1.5px solid #ffffff;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform .3s, border-color .25s, margin-top .3s;
}

.coursepage .module-feature-item.open .module-feature-toggle {
    background: rgba(255, 255, 255, 0.15);
}

.coursepage .module-feature-item.open .module-feature-toggle::after {
    transform: rotate(-135deg);
    margin-top: 3px;
}

/* body — hidden by default */
.coursepage .module-feature-body {
    display: none;
    padding-top: 20px;
    color: #ffffff;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.coursepage .module-feature-item.open .module-feature-body {
    display: block;
}
.coursepage .overview-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.coursepage .overview-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.coursepage .overview-title {
    flex: 1;
    max-width: 700px;
    color: #082F56;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .overview-spacer {
    flex: 1;
    max-width: 700px;
}

.coursepage .overview-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.coursepage .overview-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.coursepage .overview-text {
    max-width: 500px;
    color: #212529;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.coursepage .overview-features-title {
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 15px 0;
}

.coursepage .overview-features-text {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.coursepage .overview-image {
    width: 701px;
    height: 701px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
    flex-shrink: 0;
}

.coursepage .overview-side-card {
    width: 701px;
    padding: 50px 30px 80px;
    background: #F1F3FA;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
    align-self: flex-end;
}

.coursepage .overview-side-card-title {
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .overview-side-card-text {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   SECTION 4 — FAQ (navy)
========================================= */

.coursepage .course-faq-section {
    width: 100%;
    padding: 100px 60px 150px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.coursepage .faq-heading {
    max-width: 900px;
    color: #082F56;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .faq-list {
    max-width: 1000px;
    display: flex;
    flex-direction: column;
}

.coursepage .faq-item {
    border-bottom: 1px solid #082F56;
}

.coursepage .faq-item:first-child {
    border-top: 1px solid #082F56;
}

.coursepage .faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    gap: 20px;
}

.coursepage .faq-question {
    max-width: 700px;
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .faq-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid #082F56;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s;
}

.coursepage .faq-toggle::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #082F56;
    border-bottom: 1.5px solid #082F56;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .3s, border-color .25s, margin-top .3s;
}

.coursepage .faq-item.open .faq-toggle {
    background: rgba(255,255,255,0.15);
}

.coursepage .faq-item.open .faq-toggle::after {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.coursepage .faq-answer {
    display: none;
    padding-bottom: 30px;
    max-width: 700px;
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.coursepage .faq-item.open .faq-answer {
    display: block;
}

/* =========================================
   SECTION 5 — CAREER + ENROLLMENT (white)
========================================= */

.coursepage .course-enroll-section {
    width: 100%;
    padding: 100px 30px;
    background: #082F56;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.coursepage .career-block {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.coursepage .career-cards-row {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.coursepage .career-card {
    flex: 1;
    padding: 50px 30px 100px;
    background: #F1F3FA;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.coursepage .career-card-title {
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .career-card-text {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   ENROLLMENT
========================================= */

.coursepage .enrollment-block {
    display: flex;
    flex-direction: column;
    gap: 75px;
}

.coursepage .enrollment-top {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.coursepage .enrollment-title {
    flex: 1;
    max-width: 700px;
    color: #ffffff;
    font-size: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .enrollment-spacer {
    flex: 1;
    max-width: 700px;
}

.coursepage .enrollment-bottom {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.coursepage .enrollment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.coursepage .enrollment-details-title {
    color: #ffffff;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 15px 0;
}

.coursepage .enrollment-details-text {
    color: #ffffff;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.coursepage .enrollment-side {
    width: 701px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.coursepage .enrollment-card {
    width: 100%;
    padding: 50px 30px 80px;
    background: #F1F3FA;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coursepage .enrollment-card-title {
    color: #082F56;
    font-size: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .enrollment-card-text {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.coursepage .enrollment-card-text a {
    color: #082F56;
    text-decoration: underline;
}

/* refund policy accordion inside enrollment */
/* =========================================
   REFUND POLICY CARD — expanded styles
========================================= */

.coursepage .refund-card {
    width: 100%;
    padding: 30px;
    background: #F1F3FA;
    border-radius: 25px;
}

.coursepage .refund-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.coursepage .refund-title {
    color: #082F56;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    max-width: 500px;
}

.coursepage .refund-toggle {
    width: 36px;
    height: 36px;
    border: 1px solid #082F56;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .25s;
}

.coursepage .refund-toggle::after {
    content: '';
    display: block;
    width: 9px;
    height: 9px;
    border-right: 1.5px solid #082F56;
    border-bottom: 1.5px solid #082F56;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform .3s, border-color .25s, margin-top .3s;
}

.coursepage .refund-card.open .refund-toggle {
    background: #082F56;
}

.coursepage .refund-card.open .refund-toggle::after {
    border-color: #ffffff;
    transform: rotate(-135deg);
    margin-top: 3px;
}

.coursepage .refund-body {
    display: none;
    padding-top: 30px;
    display: none;
    flex-direction: column;
    gap: 40px;
}

.coursepage .refund-card.open .refund-body {
    display: flex;
}

.coursepage .refund-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.coursepage .refund-block-title {
    color: #92AED8;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.coursepage .refund-block-text {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.coursepage .refund-block-text a {
    color: #082F56;
    text-decoration: underline;
}

.coursepage .refund-policy-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.coursepage .refund-policy-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.coursepage .refund-policy-label {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: underline;
    line-height: 1.7;
}

.coursepage .refund-policy-text {
    color: #082F56;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

.coursepage .refund-policy-text a {
    color: #082F56;
    text-decoration: underline;
}
/* =========================================
   LARGE SCREENS
========================================= */

@media (min-width: 1400px) {
    .coursepage .course-hero-section,
    .coursepage .course-right-section,
    .coursepage .course-info-section,
    .coursepage .course-enroll-section {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 1920px) {
    .coursepage .course-hero-section,
    .coursepage .course-right-section,
    .coursepage .course-info-section,
    .coursepage .course-enroll-section {
        padding-left: 160px;
        padding-right: 160px;
    }

    .coursepage .course-title {
        font-size: 80px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .coursepage .course-hero-section,
    .coursepage .course-right-section,
    .coursepage .course-info-section,
    .coursepage .course-faq-section,
    .coursepage .course-enroll-section {
        padding: 80px 20px;
        gap: 50px;
    }

    .coursepage .course-hero-top,
    .coursepage .course-hero-bottom,
    .coursepage .course-right-top,
    .coursepage .course-right-bottom,
    .coursepage .overview-top,
    .coursepage .overview-bottom,
    .coursepage .enrollment-top,
    .coursepage .enrollment-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .coursepage .course-title,
    .coursepage .course-right-title {
        font-size: 42px;
    }

    .coursepage .course-hero-image,
    .coursepage .course-right-image,
    .coursepage .overview-image {
        width: 100%;
        height: 300px;
    }

    .coursepage .course-hero-spacer,
    .coursepage .course-right-spacer,
    .coursepage .overview-spacer,
    .coursepage .enrollment-spacer {
        display: none;
    }

    .coursepage .course-banner {
        height: 320px;
    }

    .coursepage .course-banner-title {
        font-size: 32px;
    }

    .coursepage .standout-cards-row,
    .coursepage .career-cards-row {
        flex-direction: column;
    }

    .coursepage .instructor-card {
        width: 100%;
    }

    .coursepage .instructor-photo {
        width: 200px;
        height: 200px;
    }

    .coursepage .overview-side-card,
    .coursepage .enrollment-side {
        width: 100%;
    }

    .coursepage .faq-question {
        font-size: 18px;
    }

    .coursepage .standout-heading,
    .coursepage .instructors-heading,
    .coursepage .overview-title,
    .coursepage .enrollment-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {

    .coursepage .course-title,
    .coursepage .course-right-title {
        font-size: 30px;
    }

    .coursepage .course-description,
    .coursepage .course-right-content,
    .coursepage .overview-text {
        font-size: 15px;
    }
}