        .term-page-header {
            background: linear-gradient(135deg, var(--navy) 0%, #2d4a5a 100%);
            padding: 80px 0 60px;
            color: white;
        }
        .term-category {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(201, 162, 39, 0.2);
            border: 1px solid var(--gold);
            border-radius: 20px;
            font-size: 0.85rem;
            color: var(--gold);
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .term-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 3.5rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .term-short {
            font-size: 1.3rem;
            opacity: 0.9;
            max-width: 700px;
        }
        .term-content {
            padding: 60px 0;
            background: var(--ivory);
        }
        .term-content-inner {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .term-section {
            margin-bottom: 40px;
        }
        .term-section h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            color: var(--navy);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gold);
        }
        .term-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--slate);
        }
        .related-terms {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .related-term-link {
            display: inline-block;
            padding: 10px 20px;
            background: var(--cream);
            border: 1px solid #e0ddd5;
            border-radius: 25px;
            color: var(--navy);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .related-term-link:hover {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .back-link:hover {
            text-decoration: underline;
        }
        .term-cta {
            background: var(--cream);
            padding: 40px;
            border-radius: 12px;
            text-align: center;
            margin-top: 40px;
        }
        .term-cta h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        .term-cta .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--gold);
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 500;
        }
