* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.breadcrumb-section .breadcrumb {
    background: transparent;
}

.breadcrumb a {
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

article+article {
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

/* ===== Fade-In Animation ===== */
.fade-section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;

    /* Modern card style */
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem 1.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

/* Make visible on scroll */
.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section headings */
.fade-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.6rem;
}

/* Gradient accent bar on heading */
.fade-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #0ea5e9, #3b82f6);
    border-radius: 4px;
}

/* Paragraphs */
.fade-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #334155;
}

/* Lists */
.fade-section ul {
    padding-left: 1.3rem;
    list-style-type: disc;
}

/* Links */
.fade-section a {
    color: #0ea5e9;
    text-decoration: none;
    transition: color 0.3s;
}

.fade-section a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}