﻿a {
    color: #383b43;
}

h1, h2, h3, h4, h5, h6 {
    color: #C7000F;
    font-weight: 700;
}

.pmtcolour {
    color: #C7000F;
}

.pmtbutton {
    background-color: #C7000F;
    color: #FFF;
    border: none;
    transition: background-color 0.3s ease;
}

.pmtbutton:hover {
    background-color: #A8000D; /* Slightly darker red */
    color: #FFF; /* Keep text white */
}

    .pmtbutton:active {
        /* force it with !important so the browser can’t override */
        background-color: #87000A !important;
        color: #FFF !important;
        transform: translateY(1px);
    }


.headerwelcome {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem; /* slightly larger */
    font-weight: 400;
    color: #F8F9FA;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}