.breadcrumbs-section {
    background: linear-gradient(90deg, #eee 0%, #eee 100%);
    color: rgb(0, 0, 0);
    padding: 30px 0;
    text-align: left;
}

.breadcrumbs-section h2 {
    font-weight: 400;
    margin: 0;
    font-size: 1.3rem;
}

.breadcrumbs-section .breadcrumb-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.breadcrumbs-section .breadcrumb-links a:hover {
    color: #070707;
    text-decoration: underline;
}

/* Card Styling */
.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
}

.custom-card .card-title {
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.custom-card .card-text {
    color: #555;
    font-size: 0.95rem;
    flex-grow: 1;
}

.download-btn {
    background: #eee;
    color: rgb(3, 3, 3) !important;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease-in-out;
}

.download-btn:hover {
    background: #eee;
    color: #fff;
}