/* Page Detail - Modern Blue Theme */
.page-detail {
    --primary-blue: #0E4680;
    --primary-blue-dark: #093361;
    --primary-blue-light: #eef4fb;
    --black: #0f172a;
    --gray: #64748b;
    --muted: #94a3b8;
    --border: #e2e8f0;
    --bg: #ffffff;
    --surface: #f8fafc;
    
    font-family: "Inter Tight", system-ui, sans-serif;
    color: var(--black);
    line-height: 1.7;
}

/* Hero Section */
.page-detail .page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    padding: 80px 0;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-detail .page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNSkiLz48L3N2Zz4=');
    opacity: 0.3;
}

.page-detail .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-detail .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.page-detail .breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.page-detail .breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-detail .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

/* Content Section */
.page-detail .page-content {
    padding: 60px 0;
    background: var(--surface);
    min-height: 50vh;
}

.page-detail .content-wrapper {
    background: var(--bg);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .page-detail .content-wrapper {
        padding: 24px;
    }
    
    .page-detail .page-title {
        font-size: 2rem;
    }
}

/* Typography & Elements */
.page-detail h2 {
    color: var(--primary-blue-dark);
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-detail h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-detail p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.page-detail ul, .page-detail ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--gray);
}

.page-detail li {
    margin-bottom: 0.5rem;
}

.page-detail a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.page-detail a:hover {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

.page-detail img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
}

.page-detail .text-center {
    text-align: center;
}
