/* === Tema Hitam & Biru Teknologi (Sama seperti halaman sebelumnya) === */
body {
    background-color: #000000;
    color: #e0e0e0;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover {
    color: #3b8eff;
    text-decoration: underline;
}

.bg-black-custom {
    background-color: #0a0a0a;
}

.navbar,
.card,
footer section {
    background-color: #111111;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 100, 255, 0.2);
}

.btn-outline-primary {
    border-color: #0d6efd;
    color: #0d6efd;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #000;
    border-color: #0d6efd;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #000;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #3b8eff;
    border-color: #3b8eff;
    color: #000;
}

.card {
    background-color: #111111;
    border-left: 4px solid #0d6efd;
    border-radius: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(13, 110, 253, 0.3);
}

hr {
    border-color: #0d6efd;
    opacity: 0.3;
}

.section-header h2 {
    color: #ffffff;
    border-bottom: 2px solid #0d6efd;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

footer {
    border-top: 2px solid #0d6efd;
    background-color: #0a0a0a;
}

footer a {
    color: #adb5bd;
}

footer a:hover {
    color: #0d6efd;
}

.navbar-toggler {
    border-color: #0d6efd;
}

.navbar-toggler-icon {
    filter: invert(1) sepia(1) saturate(5) hue-rotate(180deg);
}

.text-accent {
    color: #0d6efd;
}

.bg-accent-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Logo gambar */

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 35px;
    }
}

/* Styling khusus untuk halaman kebijakan */
.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.policy-section h2 i {
    color: #0d6efd;
    margin-right: 1rem;
    font-size: 2rem;
}

.policy-section h3 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.policy-section p {
    color: #adb5bd;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    color: #adb5bd;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.policy-section li::marker {
    color: #0d6efd;
}

.policy-section .highlight-box {
    background-color: #1a1a1a;
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}

.last-updated {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

/* Styling untuk daftar isi (opsional) */
.table-of-contents {
    background-color: #1a1a1a;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
}

.table-of-contents h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: #adb5bd;
    display: inline-block;
    transition: all 0.2s;
}

.table-of-contents a:hover {
    color: #0d6efd;
    transform: translateX(5px);
}

p {
    color: #e0e0e0;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230d6efd' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

img {
    max-height: 40px;
    width: auto;
}