body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.pcoc-header {
    background: linear-gradient(120deg, #10153b, #4a2f7b);
    color: #fff;
}

.pcoc-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.pcoc-navbar {
    background-color: #10153b;
}

.pcoc-navbar .nav-link.active,
.pcoc-navbar .nav-link:hover {
    color: #ffd166 !important;
}

.pcoc-hero {
    background: linear-gradient(135deg, #10153b 0%, #4a2f7b 50%, #f4f4f8 100%);
    color: #fff;
    padding: 4rem 0 3rem 0;
}

.pcoc-hero h1 span {
    color: #ffd166;
}

.pcoc-hero-card {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    color: #222;
}

.pcoc-section-title {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4a2f7b;
}

.pcoc-footer {
    background-color: #0b0f26;
    color: #e2e2f0;
    font-size: 0.9rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    line-height: 1.7;
}

.pcoc-footer p,
.pcoc-footer li {
    line-height: 1.7;
}

.pcoc-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.pcoc-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #e2e2f0;
    font-size: 1.25rem;
    transition: background-color 0.2s, color 0.2s;
}

.pcoc-social-link:hover {
    background-color: #ffd166;
    color: #10153b;
}

.pcoc-footer-link {
    color: #e2e2f0;
    text-decoration: none;
}

.pcoc-footer-link:hover {
    color: #ffd166;
}

.pcoc-pill {
    border-radius: 999px;
}

.pcoc-card {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.pcoc-subtle {
    color: #6c757d;
}

.pcoc-badge {
    background-color: #ffd166;
    color: #10153b;
    font-weight: 600;
}

.pcoc-table th {
    background-color: #10153b;
    color: #fff;
}

.pcoc-table td,
.pcoc-table th {
    vertical-align: middle;
}

.pcoc-section-img {
    max-height: 220px;
    width: 100%;
    object-fit: cover;
}

.pcoc-img-full {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.pcoc-media-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 767.98px) {
    .pcoc-hero {
        padding-top: 3rem;
        padding-bottom: 2.5rem;
    }

    .pcoc-media-gallery .col-12 {
        max-width: 100%;
    }
}

