body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
   background: url('/Images/A.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
}

/* Dark overlay to make text readable on image */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

header {
    padding: 20px 0;
    background: rgba(30, 58, 138, 0.9);
    color: #fff;
}

header h1 {
    font-size: 32px;
    margin: 0;
}

header p {
    font-size: 16px;
    margin: 5px 0 0;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 14px 28px;
    background: #1e3a8a;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.buttons a:hover {
    background: #142b61;
}

footer {
    background: #fafafa;
    padding: 16px;
    font-size: 14px;
    color: #333;
}
