/* Main Container */
.sengketa-section {
    background-color: #fff;
    min-height: 100vh;
    padding-bottom: 5rem;
}

/* Header Section */
.sengketa-header {
    background: #fff;
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
}

.header-title {
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.2;
}

.header-desc {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 800px;
}

/* Content Layout */
.sengketa-content-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.sengketa-image-wrapper {
    height: 100%;
    min-height: 400px;
    position: relative;
    background-color: #eff6ff;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sengketa-image-wrapper img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(37, 99, 235, 0.2));
    transition: transform 0.3s ease;
}

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

/* Timeline Style */
.sengketa-timeline {
    padding: 3rem;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 3rem;
    border-left: 2px dashed #e5e7eb;
}

.timeline-item:last-child {
    border-left: none;
    padding-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -1.25rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #2563eb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 0 4px #fff;
    z-index: 10;
}

.timeline-content h5 {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.timeline-content p strong {
    color: #374151;
}

/* Responsive */
@media (max-width: 991.98px) {
    .sengketa-image-wrapper {
        min-height: 300px;
        padding: 3rem 1rem;
    }

    .sengketa-timeline {
        padding: 2rem;
    }
}