/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body {
    font-family:'Times New Roman', Times, serif;
    font-size:larger;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.btn-custom {
            background-color: #f4bc21;
            color: white;
            font-weight: 700;
            padding: 0.75rem 1.5rem;
            border: none;
            transition: background-color 0.2s;
        }
.btn-custom:hover {
    background-color: #d3a11a;
    color: white;
}

/* --- Footer Styling --- */
.footer {
    background-color: #183d20;
    color: #ffffff;
    padding: 3rem 0.2rem;
}
.footer a {
    color: #adb5bd;
    text-decoration: none;
}
.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}
