/* Section */
.sop-section {
    background-color: #fff;
    min-height: 60vh;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

/* Card */
.sop-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    /* Slightly darker border */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.05);
}

.sop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #111827;
    /* Changed to requested color */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sop-card:hover::before {
    opacity: 1;
}

/* Icon */
.sop-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(17, 24, 39, 0.05);
    /* Light #111827 */
    color: #111827;
    /* Changed to requested color */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.sop-card:hover .sop-icon {
    background-color: #111827;
    /* Changed to requested color */
    color: #ffffff;
    transform: rotate(6deg);
}

/* Title */
.sop-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    /* Ensure title matches */
    line-height: 1.5;
}

/* Button */
.btn-download {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    /* Changed to requested color */
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0.5rem 0;
}

.btn-download:hover {
    color: #374151;
    /* Lighter shade on hover */
    text-decoration: none;
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    background: white;
    border-radius: 16px;
    border: 2px dashed #e5e7eb;
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}