
  
  /* 頁面專用樣式 */
        .personality-header {
            background: linear-gradient(135deg, #1a2a4f, #2c3e50);
            color: white;
            padding: 4rem 0;
            margin-bottom: 3rem;
            border-radius: 0 0 50px 50px;
        }
        
        .side-menu {
            position: sticky;
            top: 20px;
            background: white;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        
        .side-menu .menu-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f0f0f0;
            margin-bottom: 1rem;
        }
        
        .side-menu .menu-item {
            display: block;
            padding: 0.8rem 1rem;
            color: #4a5568;
            border-radius: 12px;
            transition: all 0.3s ease;
            margin-bottom: 0.3rem;
            text-decoration: none;
            font-weight: 500;
        }
        
        .side-menu .menu-item:hover,
        .side-menu .menu-item.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            transform: translateX(5px);
        }
        
        .side-menu .menu-item i {
            width: 24px;
            margin-right: 10px;
            font-size: 1rem;
        }
        
        .content-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            scroll-margin-top: 20px;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }
        
        .subsection-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #4a5568;
            margin: 2rem 0 1.5rem;
        }
        
        .quote-block {
            background: #f8f9fa;
            border-left: 4px solid #667eea;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 2rem 0;
            font-style: italic;
            color: #4a5568;
            font-size: 1.1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.02);
        }
        
        .quote-author {
            margin-top: 0.5rem;
            font-style: normal;
            font-weight: 600;
            color: #667eea;
        }
        
        .strengths-grid,
        .weaknesses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 1.5rem 0;
        }
        
        .strength-card {
            background: linear-gradient(135deg, #e8f4fd, #d4edda);
            padding: 1.8rem;
            border-radius: 16px;
            transition: transform 0.3s ease;
        }
        
        .strength-card:hover {
            transform: translateY(-5px);
        }
        
        .strength-card i {
            font-size: 2rem;
            color: #28a745;
            margin-bottom: 1rem;
        }
        
        .strength-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #155724;
            margin-bottom: 0.8rem;
        }
        
        .weakness-card {
            background: linear-gradient(135deg, #fbe9e7, #ffebee);
            padding: 1.8rem;
            border-radius: 16px;
            transition: transform 0.3s ease;
        }
        
        .weakness-card:hover {
            transform: translateY(-5px);
        }
        
        .weakness-card i {
            font-size: 2rem;
            color: #dc3545;
            margin-bottom: 1rem;
        }
        
        .weakness-card h4 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #721c24;
            margin-bottom: 0.8rem;
        }
        
        .tip-box {
            background: #fff3cd;
            border: 1px solid #ffeeba;
            border-radius: 16px;
            padding: 1.8rem;
            margin: 2rem 0;
        }
        
        .tip-box i {
            color: #856404;
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        
        .table-of-contents {
            background: #f8f9fa;
            border-radius: 16px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .table-of-contents ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .table-of-contents li {
            margin-bottom: 0.5rem;
        }
        
        .table-of-contents a {
            color: #4a5568;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .table-of-contents a:hover {
            color: #667eea;
        }
        
        @media (max-width: 992px) {
            .side-menu {
                position: relative;
                top: 0;
                margin-bottom: 2rem;
            }
            
            .content-section {
                padding: 1.8rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .personality-header {
                padding: 2.5rem 0;
            }
            
            .content-section {
                padding: 1.5rem;
            }
            
            .strengths-grid,
            .weaknesses-grid {
                grid-template-columns: 1fr;
            }
        }