


/* Buttons */
.buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.buttons a {
    text-decoration: none;
    padding: 12px 20px;
    background-color: #003366;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    width: 48%;
    transition: background-color 0.3s ease;
}

.buttons a:hover {
    background-color: #002147;
}

/* Outline Button */
.buttons a.outline {
    background-color: transparent;
    border: 2px solid #003366;
    color: #003366;
}

.buttons a.outline:hover {
    background-color: #003366;
    color: white;
}
