/* What To Expect Page - Page-specific styles */

/* Page-specific styles */
        .timeline {
            margin: 40px 0;
        }

        .timeline-phase {
            margin-bottom: 50px;
            padding-left: 30px;
            border-left: 4px solid var(--phase-color, #34495e);
            position: relative;
        }

        .timeline-phase::before {
            content: attr(data-number);
            position: absolute;
            left: -20px;
            top: 0;
            width: 32px;
            height: 32px;
            background: var(--phase-color, #34495e);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
        }

        .timeline-phase.pre-session { --phase-color: #3498db; }
        .timeline-phase.day-of { --phase-color: #2ecc71; }
        .timeline-phase.during { --phase-color: #e74c3c; }
        .timeline-phase.after { --phase-color: #8e44ad; }
        .timeline-phase.book { --phase-color: #f39c12; }

        .phase-title {
            font-size: 24px;
            color: #34495e;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .phase-duration {
            font-size: 14px;
            color: #7f8c8d;
            font-style: italic;
            margin-bottom: 15px;
        }

        .phase-content {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }

        .phase-content ul {
            margin: 15px 0 15px 20px;
        }

        .phase-content li {
            margin-bottom: 10px;
        }

        .highlight-box {
            background: #e8f4f8;
            border-left: 4px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 4px;
        }

        .highlight-box p {
            margin-bottom: 12px;
            color: #2c3e50;
        }

        .highlight-box p:last-child {
            margin-bottom: 0;
        }

        .important-note {
            background: #fff3cd;
            border-left: 4px solid #f39c12;
            padding: 20px;
            margin: 25px 0;
            border-radius: 4px;
        }

        .important-note p {
            margin-bottom: 12px;
            color: #2c3e50;
        }

        .important-note p:last-child {
            margin-bottom: 0;
        }

        .quick-facts {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 8px;
            margin: 40px 0;
        }

        .quick-facts h3 {
            margin-bottom: 20px;
            color: #34495e;
        }

        .quick-facts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .fact-item {
            padding: 15px;
            background: white;
            border-radius: 6px;
            border-left: 3px solid #34495e;
        }

        .fact-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #7f8c8d;
            margin-bottom: 5px;
        }

        .fact-value {
            font-size: 18px;
            color: #34495e;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .timeline-phase {
                padding-left: 20px;
            }

            .phase-title {
                font-size: 20px;
            }

            .quick-facts-grid {
                grid-template-columns: 1fr;
            }
        }
