/* Course Details CSS - Matcher din eksisterende design og HTML-struktur */

/* Course Hero Section */
.course-hero {
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.9), rgba(0, 167, 225, 0.1));
    padding: 3rem 0 2rem 0;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.course-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 167, 225, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.course-hero .container {
    position: relative;
    z-index: 2;
}

.course-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00A7E1, #0090c1);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.course-hero h1 {
    font-size: 3rem;
    color: #00A7E1;
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
}

/* Expandable Intro */
.expandable-intro {
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.8), rgba(0, 167, 225, 0.05));
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(0, 167, 225, 0.3);
    margin-top: 1.5rem;
}

.intro-preview {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.breakthrough-highlight {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 193, 7, 0.1));
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 193, 7, 0.4);
    font-weight: 600;
    color: #FFC107;
    font-size: 1.25rem;
}

.formula-breakthrough {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.1), rgba(255, 152, 0, 0.05));
    border: 2px solid rgba(255, 82, 82, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.scary-formula {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #ff5252;
    border-radius: 8px;
    padding: 2rem;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    color: #ff5252;
    letter-spacing: 3px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.scary-formula::before {
    content: "😱";
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 2rem;
}

.what-we-do-different {
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.1), rgba(0, 167, 225, 0.05));
    border: 2px solid rgba(0, 167, 225, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.what-we-do-different h4 {
    color: #00A7E1;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid #00A7E1;
    transition: all 0.3s ease;
}

.approach-item:hover {
    background: rgba(0, 167, 225, 0.1);
    transform: translateX(5px);
}

.approach-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.approach-text {
    flex: 1;
}

.approach-text strong {
    color: #00A7E1;
    display: block;
    margin-bottom: 0.3rem;
}

.target-audience {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.target-audience h4 {
    color: #FFC107;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.audience-list {
    list-style: none;
    padding: 0;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid #FFC107;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.audience-list li:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateX(5px);
}

.audience-list li::before {
    content: "👤";
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.course-summary {
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 230, 118, 0.05));
    border: 2px solid rgba(0, 230, 118, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.course-summary h4 {
    color: #00E676;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.course-summary p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.founder-message {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.1));
    border: 2px solid #FFC107;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.founder-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFC107, #FF8F00);
}

.founder-message h4 {
    color: #FFC107;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.founder-message p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.founder-message p:last-child {
    margin-bottom: 0;
}

.intro-full {
    margin-top: 2rem;
}

.intro-full p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.intro-full p strong {
    color: #00A7E1;
}

.expand-btn {
    background: linear-gradient(135deg, #00A7E1, #0090c1);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 167, 225, 0.3);
}

/* Course Goals Section */
.course-goals {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.6), rgba(2, 17, 27, 0.8));
    margin: 1rem 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 167, 225, 0.2);
}

.course-goals h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #00A7E1;
    font-size: 2.5rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.goal-card {
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.1), rgba(4, 28, 44, 0.8));
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 167, 225, 0.3);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00A7E1, #00E676);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 167, 225, 0.25);
    border-color: #00A7E1;
}

.goal-card:hover::before {
    transform: scaleX(1);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.goal-card h3 {
    color: #00A7E1;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.goal-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

/* Creator Insights Section */
.creator-insights {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.6), rgba(2, 17, 27, 0.8));
    margin: 2rem 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 167, 225, 0.2);
}

.creator-insights h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #00A7E1;
    font-size: 2.5rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.insight-card {
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.1), rgba(4, 28, 44, 0.8));
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 167, 225, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00A7E1, #00E676);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 167, 225, 0.25);
    border-color: #00A7E1;
}

.insight-card:hover::before {
    transform: scaleX(1);
}

.insight-card.expanded {
    border-color: #00A7E1;
    box-shadow: 0 15px 35px rgba(0, 167, 225, 0.2);
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.insight-icon {
    font-size: 2.5rem;
}

.insight-header h3 {
    color: #00A7E1;
    margin: 0;
    font-size: 1.3rem;
}

.insight-preview {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
}

.insight-full {
    margin-top: 1.5rem;
}

.insight-full p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insight-full p:last-child {
    margin-bottom: 0;
}

/* Learning Journey Section - Collapsible */
.learning-journey-section {
    padding: 4rem 0;
    background-color: rgba(4, 28, 44, 0.3);
    margin: 2rem 0;
    border-radius: 20px;
    border: 1px solid rgba(0, 167, 225, 0.2);
}

.journey-header {
    cursor: pointer;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 15px;
}

.journey-header:hover {
    background: rgba(0, 167, 225, 0.1);
}

.journey-header h2 {
    color: #00A7E1;
    margin: 0;
    font-size: 2rem;
}

.journey-toggle {
    font-size: 2rem;
    color: #00A7E1;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.journey-content {
    padding: 0 2rem 2rem;
    transition: max-height 0.3s ease;
}

/* Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #00A7E1, #00E676);
    transform: translateX(-50%);
}

.journey-phase {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.journey-phase:nth-child(even) {
    flex-direction: row-reverse;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00A7E1, #00E676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 167, 225, 0.4);
}

.phase-content {
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.9), rgba(0, 167, 225, 0.05));
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid rgba(0, 167, 225, 0.3);
    width: 45%;
    transition: all 0.3s ease;
}

.journey-phase:nth-child(odd) .phase-content {
    margin-left: auto;
    margin-right: 5%;
}

.journey-phase:nth-child(even) .phase-content {
    margin-right: auto;
    margin-left: 5%;
}

.phase-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 167, 225, 0.2);
    border-color: #00A7E1;
}

.phase-content h3 {
    color: #00A7E1;
    margin-bottom: 1rem;
}

.phase-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.phase-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.topic {
    background: rgba(0, 167, 225, 0.2);
    color: #00A7E1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 167, 225, 0.3);
    transition: all 0.3s ease;
}

.topic:hover {
    background: rgba(0, 167, 225, 0.3);
    transform: scale(1.05);
}

/* Learning Outcomes */
.learning-outcomes {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.9), rgba(2, 17, 27, 0.8));
    margin: 2rem 0;
    border-radius: 20px;
}

.learning-outcomes h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #00A7E1;
    font-size: 2.5rem;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.outcome-card {
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.1), rgba(4, 28, 44, 0.8));
    border-radius: 15px;
    padding: 3rem;
    border: 2px solid rgba(0, 167, 225, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 167, 225, 0.2);
    border-color: #00A7E1;
}

.outcome-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.outcome-card h3 {
    color: #00A7E1;
    margin-bottom: 1.5rem;
}

.outcome-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.realistic-expectations {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
}

.realistic-expectations h3 {
    color: #FFC107;
    margin-bottom: 1.5rem;
}

.realistic-expectations p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Course Flexibility */
.course-flexibility {
    padding: 6rem 0;
    background-color: rgba(4, 28, 44, 0.6);
    margin: 2rem 0;
    border-radius: 20px;
}

.course-flexibility h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #00A7E1;
    font-size: 2.5rem;
}

.flexibility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.flex-card {
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.1), rgba(4, 28, 44, 0.8));
    border-radius: 15px;
    padding: 3rem;
    border: 2px solid rgba(0, 167, 225, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.flex-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 167, 225, 0.2);
    border-color: #00A7E1;
}

.flex-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.flex-card h3 {
    color: #00A7E1;
    margin-bottom: 1.5rem;
}

.flex-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Special Offers */
.special-offers {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    margin: 2rem 0;
    border-radius: 20px;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.special-offers h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #FFC107;
    font-size: 2.5rem;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.9), rgba(255, 193, 7, 0.05));
    border-radius: 15px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.offer-card.highlight {
    border-color: #FFC107;
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
}

.offer-header {
    margin-bottom: 2rem;
}

.offer-badge {
    background: linear-gradient(135deg, #FFC107, #FF8F00);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

.offer-header h3 {
    color: #FFC107;
    margin: 0;
}

.offer-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.offer-value {
    color: #FFC107;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Investment Value */
.investment-value {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.05));
    margin: 2rem 0;
    border-radius: 20px;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.investment-value h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #FFC107;
    font-size: 2.5rem;
}

.value-proposition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.price-section {
    text-align: center;
}

.price-display {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2), rgba(255, 152, 0, 0.1));
    border-radius: 15px;
    padding: 3rem;
    border: 2px solid rgba(255, 193, 7, 0.4);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.price-amount {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    color: #FFC107;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.price-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.value-justification {
    background: linear-gradient(135deg, rgba(4, 28, 44, 0.9), rgba(255, 193, 7, 0.05));
    border-radius: 15px;
    padding: 3rem;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.value-justification h3 {
    color: #FFC107;
    margin-bottom: 1.5rem;
}

.value-justification p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.value-guarantee {
    background: rgba(0, 230, 118, 0.1);
    border: 2px solid #00E676;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.value-guarantee h4 {
    color: #00E676;
    margin-bottom: 1rem;
}

.value-guarantee p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 167, 225, 0.1), rgba(255, 193, 7, 0.05));
    margin: 2rem 0;
    border-radius: 20px;
    border: 2px solid rgba(0, 167, 225, 0.3);
    text-align: center;
}

.cta-content h2 {
    color: #00A7E1;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #00E676, #00C853);
    color: #002e1f;
    border: 2px solid #00E676;
}

.cta-buttons .btn-secondary {
    background: linear-gradient(135deg, #FFC107, #FF8F00);
    color: #1a1a1a;
    border: 2px solid #FFC107;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cta-guarantee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .goals-grid,
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .outcomes-grid,
    .flexibility-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-proposition {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .price-section,
    .value-justification {
        height: auto;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .course-hero {
        padding: 2rem 0;
    }
    
    .course-hero h1 {
        font-size: 2.2rem;
    }
    
    .expandable-intro {
        padding: 2rem;
    }
    
    .creator-insights,
    .course-goals,
    .learning-outcomes,
    .course-flexibility,
    .special-offers,
    .investment-value,
    .final-cta {
        padding: 4rem 0;
    }
    
    .insight-card,
    .goal-card,
    .goal-card,
    .outcome-card,
    .flex-card,
    .offer-card {
        padding: 2rem;
        min-height: auto;
    }
    
    .journey-timeline::before {
        left: 30px;
    }
    
    .phase-number {
        left: 30px;
        transform: none;
    }
    
    .journey-phase,
    .journey-phase:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .phase-content,
    .journey-phase:nth-child(odd) .phase-content,
    .journey-phase:nth-child(even) .phase-content {
        width: 100%;
        margin: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .course-hero h1 {
        font-size: 2rem;
    }
    
    .expandable-intro,
    .insight-card,
    .outcome-card,
    .flex-card,
    .offer-card,
    .value-justification,
    .price-display {
        padding: 1.5rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .journey-header {
        padding: 1.5rem;
    }
    
    .journey-header h2 {
        font-size: 1.6rem;
    }
}

/* Hidden content elements */
.intro-full {
    display: none;
}

.journey-content {
    display: none;
}