 /* Page-specific styles */
        .page-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                        url('../images/traditional/traditional-header.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 8rem 0 4rem;
            margin-top: 70px;
        }
        
        .page-subtitle {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 2rem;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 3rem auto;
            padding: 2rem 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--primary-color);
        }
        
        .timeline-item {
            margin: 2rem 0;
            position: relative;
            width: 45%;
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 55%;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: var(--secondary-color);
            border-radius: 50%;
            border: 4px solid var(--primary-color);
        }
        
        .timeline-item:nth-child(odd)::before {
            right: -15px;
            transform: translate(50%, -50%);
        }
        
        .timeline-item:nth-child(even)::before {
            left: -15px;
            transform: translate(-50%, -50%);
        }
        
        .materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .material-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .material-card:hover {
            transform: translateY(-5px);
        }
        
        .material-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .material-content {
            padding: 1.5rem;
        }
        
        .regional-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .region-card {
            background: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: var(--shadow);
        }
        
        .region-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .region-icon {
            font-size: 2rem;
            color: var(--primary-color);
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            box-shadow: var(--shadow);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table th {
            background-color: var(--primary-color);
            color: white;
            font-weight: 600;
        }
        
        .comparison-table tr:hover {
            background-color: #f9f9f9;
        }
        
        .comparison-table td:first-child {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .audio-player {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
            text-align: center;
        }
        
        .audio-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .audio-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .audio-btn:hover {
            background: var(--dark-color);
            transform: scale(1.1);
        }
        
        .audio-progress {
            flex-grow: 1;
            height: 6px;
            background: #eee;
            border-radius: 3px;
            overflow: hidden;
        }
        
        .audio-progress-bar {
            height: 100%;
            background: var(--secondary-color);
            width: 0%;
            transition: width 0.1s;
        }
        
        .interactive-diagram {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin: 2rem 0;
            text-align: center;
        }
        
        .diagram-container {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 2rem auto;
        }
        
        .diagram-base {
            width: 100%;
            height: auto;
        }
        
        .diagram-point {
            position: absolute;
            width: 30px;
            height: 30px;
            background: var(--secondary-color);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }
        
        .diagram-point:hover {
            transform: scale(1.2);
            background: var(--primary-color);
        }
        
        .info-tooltip {
            position: absolute;
            background: white;
            padding: 1rem;
            border-radius: 5px;
            box-shadow: var(--shadow);
            display: none;
            z-index: 100;
            max-width: 200px;
        }
        
        .info-tooltip.active {
            display: block;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background: var(--dark-color);
            transform: translateY(-5px);
        }
        
        @media (max-width: 768px) {
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item {
                width: calc(100% - 60px);
                left: 60px !important;
            }
            
            .timeline-item::before {
                left: -45px !important;
                transform: translate(-50%, -50%) !important;
            }
            
            .audio-controls {
                flex-direction: column;
            }
        }