/* Curriculum / Disciplines Section */
.intro-offer {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: var(--color-blue-deep);
    color: white;
    padding: var(--spacing-lg);
    border-radius: 8px;
}

.intro-offer h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-ochre);
}

.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.stage-card {
    background: var(--color-canvas);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
}

.stage-card h4 {
    font-size: 1.5rem;
    color: var(--color-charcoal);
    margin-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--color-ochre);
    padding-bottom: 0.5rem;
}

.techniques-list {
    list-style: none;
    columns: 2;
    /* Split list into 2 columns */
}

.techniques-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}

.techniques-list li::before {
    content: '🎨';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.8rem;
}

.stage-card.highlight {
    background: linear-gradient(135deg, var(--color-canvas) 0%, #fffbf0 100%);
    border: 2px solid var(--color-ochre);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.stage-card.highlight h3 {
    font-size: 2.5rem;
    color: var(--color-crimson);
    margin-top: var(--spacing-md);
    font-family: var(--font-heading);
}

.pricing-summary {
    text-align: center;
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: 8px;
    border: 1px dashed var(--color-charcoal);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-summary p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}