/* ===== GLOBAL ===== */
body {
    font-family: "Inter", Arial, sans-serif;
    background-color: #ffffff;
}

/* ===== HEADER ===== */
header {
    background-color: #981f4d;
}

header img {
    filter: none;
}

/* ===== PAGE TITLE ===== */
h1 {
    color: #212529;
}

/* ===== CARDS ===== */
.card1 {
    border-radius: 15px;
    min-height: 170px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.card1:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ===== BUTTON OVERRIDE (IMPORTANT) ===== */
.btn-primary {
    background-color: #981f4d !important;
    border-color: #981f4d !important;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #7b173e !important;
    border-color: #7b173e !important;
    color: #ffffff !important;
}

/* ===== FOOTER ===== */
footer,
.footer {
    background-color: #981f4d;
    color: #ffffff;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

