/* ===================================
   Courses Page Specific Styles
   =================================== */

/* Hero Section */
.courses-hero {
    padding: calc(var(--spacing-xl) * 2) 0 var(--spacing-xl);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: 70px;
    text-align: center;
}

.courses-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.courses-hero-eyebrow {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--turquoise);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.courses-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.courses-hero-title .highlight {
    color: var(--turquoise);
    position: relative;
    display: inline-block;
}

.courses-hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Price Comparison Table */
.price-comparison {
    background: var(--white);
}

.price-table-wrapper {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    min-width: 900px;
}

.price-table thead {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a6c 100%);
    color: var(--white);
}

.price-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.price-table th:last-child {
    border-right: none;
}

.table-header-label {
    width: 20%;
    background: var(--navy);
    font-size: 1rem;
    vertical-align: middle;
}

.table-header-course {
    width: 20%;
    position: relative;
}

.table-header-course.recommended {
    background: var(--turquoise);
}

.table-header-course.premium {
    background: linear-gradient(135deg, #d4af37 0%, #f2d06b 100%);
}

.table-header-course.weekend {
    background: linear-gradient(135deg, var(--orange) 0%, #ff8555 100%);
}

.recommend-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.course-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.course-price {
    font-size: 1.8rem;
    font-weight: 700;
}

.course-price span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
}

.price-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.label-cell {
    padding: 1.2rem 1rem;
    font-weight: 600;
    color: var(--navy);
    background: #f1f3f5;
    text-align: left;
    border-right: 2px solid #dee2e6;
}

.data-cell {
    padding: 1.2rem 1rem;
    text-align: center;
    color: #495057;
    border-right: 1px solid #e9ecef;
    vertical-align: middle;
}

.data-cell:last-child {
    border-right: none;
}

.data-cell.premium-cell {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%);
    font-weight: 600;
    color: #d4af37;
}

.data-cell.weekend-cell {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8dc 100%);
    font-weight: 600;
    color: var(--orange);
}

.data-cell i.fa-check {
    color: var(--turquoise);
    font-size: 1.2rem;
}

.data-cell i.fa-minus {
    color: #ced4da;
    font-size: 1rem;
}

/* Course Detail Cards */
.course-details {
    background: #f8f9fa;
}

.course-detail-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    margin-bottom: var(--spacing-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.course-detail-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.course-detail-card.recommended {
    border-color: var(--turquoise);
}

.course-detail-card.premium {
    border-color: #d4af37;
}

.course-detail-header {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a6c 100%);
    color: var(--white);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.course-detail-card.recommended .course-detail-header {
    background: linear-gradient(135deg, var(--turquoise) 0%, #3a8fa5 100%);
}

.course-detail-card.premium .course-detail-header {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
}

.course-detail-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    color: var(--white);
}

.recommended-badge {
    background: var(--orange);
    color: var(--white);
    margin-bottom: 0.5rem;
}

.premium-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #d4af37;
}

.course-detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: var(--white);
}

.course-detail-price {
    margin-top: 1rem;
    color: var(--white);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--white);
}

.price-unit {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    color: var(--white);
}

.price-detail {
    display: block;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    opacity: 0.85;
    color: var(--white);
}

.course-detail-content {
    padding: var(--spacing-lg);
}

.course-detail-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-detail-content h4 i {
    color: var(--turquoise);
}

.course-detail-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
}

.feature-list,
.target-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list li,
.target-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.feature-list li:last-child,
.target-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 1rem;
    color: var(--turquoise);
    font-size: 1.1rem;
}

.target-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 700;
    font-size: 1.2rem;
}

.course-detail-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

/* Support Content Grid */
.support-content {
    background: var(--white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.support-card {
    background: #f8f9fa;
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.support-card:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--turquoise) 0%, #3a8fa5 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
}

.support-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.8rem;
}

.support-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Comparison Section */
.comparison-section {
    background: #f8f9fa;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: var(--spacing-lg);
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    min-width: 800px;
}

.comparison-table thead {
    background: var(--navy);
    color: var(--white);
}

.comparison-table th {
    padding: 1.5rem 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.comparison-table th.highlight-col {
    background: var(--turquoise);
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e9ecef;
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table .label-cell {
    padding: 1.5rem 1.5rem;
    font-weight: 600;
    color: var(--navy);
    background: #f1f3f5;
    text-align: left;
    width: 25%;
}

.comparison-table td {
    padding: 1.5rem 1.5rem;
    text-align: center;
    color: #495057;
    vertical-align: middle;
    line-height: 1.6;
}

.comparison-table td.highlight-col {
    background: linear-gradient(135deg, #e6f7f9 0%, #d4f1f5 100%);
    font-weight: 600;
}

.comparison-table td strong {
    color: var(--turquoise);
    display: block;
    margin-bottom: 0.3rem;
}

.comparison-summary {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-top: var(--spacing-md);
    border-left: 4px solid var(--turquoise);
}

.comparison-summary h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-summary h3 i {
    color: var(--orange);
}

.comparison-summary ul {
    list-style: none;
    padding: 0;
}

.comparison-summary li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

.comparison-summary li:last-child {
    border-bottom: none;
}

.comparison-summary li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Selection Guide */
.selection-guide {
    background: var(--white);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.guide-card {
    background: #f8f9fa;
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.guide-card:hover {
    background: var(--white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: var(--turquoise);
}

.guide-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a6c 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.guide-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.guide-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.guide-recommend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 2px solid #e9ecef;
}

.guide-recommend i {
    color: var(--turquoise);
}

.guide-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: var(--turquoise);
}

.guide-link.recommended {
    color: var(--turquoise);
}

.guide-link.premium {
    color: #d4af37;
}

.guide-link.weekend {
    color: var(--orange);
}

.guide-note {
    background: linear-gradient(135deg, #e6f7f9 0%, #d4f1f5 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-top: var(--spacing-md);
    text-align: center;
}

.guide-note p {
    margin: 0;
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.6;
}

.guide-note i {
    color: var(--turquoise);
    margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--turquoise) 0%, #3a8fa5 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.testimonial-course {
    font-size: 0.85rem;
    color: #666;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #495057;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--turquoise);
}

.faq-item.active {
    border-color: var(--turquoise);
    box-shadow: 0 4px 12px rgba(74, 159, 181, 0.15);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--white);
}

.faq-question:hover {
    background: var(--white);
}

.faq-question > i:first-child {
    color: var(--turquoise);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3 {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.faq-toggle {
    color: var(--turquoise);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    line-height: 1.8;
    color: #495057;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a6c 100%);
    color: var(--white);
    padding: calc(var(--spacing-xl) * 1.5) 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.85;
    line-height: 1.8;
}

.cta-note i {
    color: var(--turquoise);
    margin-right: 0.5rem;
}

/* Weekend Course Styles */
.weekend-course {
    border-color: var(--orange);
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
}

.weekend-header {
    background: linear-gradient(135deg, #e91e63 0%, #d81b60 100%);
}

.weekend-badge {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
}

.weekend-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: 2rem;
}

.weekend-info-card {
    background: #f8f9fa;
    padding: var(--spacing-md);
    border-radius: 12px;
    border-left: 4px solid var(--orange);
}

.weekend-info-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.weekend-info-card p {
    margin: 0;
    color: #495057;
}

.weekend-timetable {
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timetable-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}

.timetable-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.05rem;
}

.timetable-table tr:last-child td {
    border-bottom: none;
}

.timetable-table .time {
    font-weight: 600;
    color: var(--navy);
    width: 35%;
    background: #f8f9fa;
    font-size: 1.1rem;
}

.timetable-table .activity {
    color: #495057;
}

.timetable-table .activity.break {
    color: #999;
    font-style: italic;
}

.weekend-mechanism {
    margin-bottom: 2rem;
}

.weekend-pricing {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff8f0 0%, #fff5eb 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 2px solid var(--orange);
}

.pricing-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.pricing-option {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 2px solid #e9ecef;
    text-align: center;
}

.pricing-option.featured-pricing {
    border-color: var(--orange);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.pricing-option-header {
    position: relative;
    margin-bottom: 1rem;
}

.pricing-option-header h5 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.recommend-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.pricing-option-price {
    margin-bottom: 1rem;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange);
}

.pricing-option-details {
    font-size: 0.9rem;
    color: #666;
}

.price-per-hour {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.pricing-note {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
}

.pricing-note i {
    color: var(--orange);
    margin-right: 0.5rem;
}

.weekend-faq {
    margin-bottom: 2rem;
}

.faq-compact {
    background: #f8f9fa;
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-top: 1rem;
}

.faq-compact-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.faq-compact-item:last-child {
    border-bottom: none;
}

.faq-compact-item h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.faq-compact-item p {
    margin: 0;
    color: #495057;
    line-height: 1.6;
}

.weekend-closing {
    background: linear-gradient(135deg, #e6f7f9 0%, #d4f1f5 100%);
    padding: var(--spacing-md);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.weekend-message {
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--navy);
    margin: 0;
}

.weekend-message i {
    color: var(--turquoise);
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-hero {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }

    .courses-hero-title {
        font-size: 1.8rem;
    }

    .courses-hero-subtitle {
        font-size: 1rem;
    }

    .course-detail-title {
        font-size: 1.4rem;
    }

    .price-amount {
        font-size: 2.2rem;
    }

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

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

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

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 400px;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
    }
    
    .pricing-option {
        padding: 1.5rem;
    }
    
    .price-large {
        font-size: 2rem;
    }
    
    .timetable-table td {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .timetable-table .time {
        font-size: 0.95rem;
        width: 40%;
    }

    /* Weekend Course Responsive */
    .weekend-info-grid {
        grid-template-columns: 1fr;
    }

    .pricing-options {
        grid-template-columns: 1fr;
    }

    .timetable-table .time {
        width: 35%;
        font-size: 0.9rem;
    }

    .timetable-table td {
        padding: 0.8rem;
    }

    .price-large {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .courses-hero-title {
        font-size: 1.5rem;
    }

    .course-detail-title {
        font-size: 1.2rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
    
    .pricing-option {
        padding: 1rem;
    }
    
    .price-large {
        font-size: 1.8rem;
    }
    
    .pricing-option-header h5 {
        font-size: 1rem;
    }
    
    .timetable-table td {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .timetable-table .time {
        font-size: 0.9rem;
    }
}