/* === Tema Hitam & Biru Teknologi (Sama seperti halaman utama) === */
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 konsisten */
.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);
}

.card-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

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;
}

.text-accent {
    color: #0d6efd;
}

.bg-accent-soft {
    background-color: rgba(13, 110, 253, 0.1);
}

/* Styling khusus untuk list misi */
.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(13, 110, 253, 0.2);
    color: #e0e0e0;
}

.mission-list li:last-child {
    border-bottom: none;
}

.mission-list i {
    color: #0d6efd;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Logo gambar */
img {
    max-height: 40px;
    width: auto;
}

@media (max-width: 576px) {
    img {
        max-height: 35px;
    }
}

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");
}