/* typography.css */
.page-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-title h1 {
    font-size: 36px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.content-type-section h2 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-type-section h3 {
    color: var(--primary);
    margin: 25px 0 15px;
    font-size: 18px;
}

.content-type-section p {
    margin-bottom: 15px;
    color: var(--gray);
}

.content-type-section ul, .content-type-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-type-section li {
    margin-bottom: 8px;
    color: var(--gray);
    line-height: 1.5;
}