/* ================= PART 2 ================= */
#part2 p {
    width: 100%;
    height: 50px;
    background-color: black;

    /* ✅ Bootstrap margin collapse / overlap fix */
    margin: 0;
    padding: 0;

    /* ✅ safer positioning (visual same) */
    position: relative;
    top: -15px;
}

/* ================= TEXT ================= */
#txt6 {
    text-align: center;

    /* ✅ Bootstrap flex / line-height clash fix */
    line-height: 50px; /* same vertical center effect */
}

/* ================= FOOTER ================= */
footer {
    margin-bottom: 0 !important;

    /* ✅ Bootstrap spacing override safety */
    padding-bottom: 0;
}