 /* Breadcrumbs */
 #breadcrumbs {
    padding: 15px 0;
    background-color: #ffffff;
    min-height: 40px;
    margin-top: 80px;
}

#breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

#breadcrumbs ol li + li {
    padding-left: 10px;
}

#breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
}

#breadcrumbs h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1d283f;
    margin-top: 10px;
}

/* Departemen Detail */
.departemen-detail {
    padding: 60px 0;
}

.departemen-header {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.departemen-header h1 {
    color: #1d283f;
    font-size: 2.2rem;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 700;
}

.departemen-header p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #343a40;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 0;
}

.section-title {
    color: #1d283f;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #d96831;
    bottom: 0;
    left: 0;
}

.strategic-list {
    list-style-type: none;
    padding: 0;
}

.strategic-list li {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #343a40;
    font-weight: 500;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.strategic-list li span {
    text-align: justify;
    flex: 1;
}

.strategic-list li:hover {
    transform: translateY(-5px);
}

.strategic-list li::before {
    content: "•";
    color: #d96831;
    font-size: 2.2rem;
    font-weight: 900;
    margin-right: 15px;
    flex-shrink: 0;
    line-height: 1;
    transform: translateY(-2px);
}

.program-list {
    margin-top: 20px;
}

.program-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
}

.program-icon {
    margin-right: 20px;
    color: #d96831;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    display: flex;
    align-items: center;
    transform: translateY(-2px);
}

.program-content h4 {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 0;
    color: #343a40;
    text-align: justify;
}

.departemen-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.departemen-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
}

.departemen-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .departemen-header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .strategic-list li {
        font-size: 1rem;
    }

    .program-content h4 {
        font-size: 1rem;
    }

    .departemen-image {
        margin-top: 30px;
    }
}
