/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

h1, h2, h3 {
    margin: 0 0 10px;
}

p {
    line-height: 1.6;
    margin: 10px 0;
}

/* Header styles */
header {
    text-align: center;
    padding: 20px;
    background-color: #255,255,255;
    border-bottom: 1px solid #ddd;
}

header .logo img {
    display: block;
    margin: 0 auto 10px;
}

header .site-title {
    font-size: 2em;
    color: #333;
}

header .highlight {
    color: #B20000;
    font-weight: bold;
}

/* Navigation styles */
.navigation {
    padding: 20px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    text-align: center;
}

.navigation .instruction {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #cc0000;
}

.navigation .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.navigation .btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #024388;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.navigation .btn:hover {
    background-color: #003D7D;
}

/* Content styles */
.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
    background-color: #fff;
}

.column {
    flex: 1 1 calc(25% - 40px);
    max-width: calc(25% - 40px);
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fdfdfd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


/* added 20250201*/
.button-row {
    text-align: center;
    width: 100%;
}





.column .highlight {
    color: #B20000;
    font-weight: bold;
}

.column ul {
    list-style: disc;
    margin: 10px 0 0 20px;
}

/* Added 20250126-15:38 */
.column .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 420px;
    height: 60px;
    background-color: #024388;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 25px;
}

/* added 20250201*/
.content-row {
    width: 100%;
    text-align: center;
}




.column .btn:hover {
    background-color: #002144;
}

.clickable-column {
    display: block; /* Makes the entire column area clickable */
    text-decoration: none; /* Removes the default underline for links */
    color: inherit; /* Ensures the text color is not overridden */
    padding: 10px; /* Optional: Adds padding for a better clickable area */
    border: 10px solid #ddd; /* Optional: Adds a subtle border around the column */
    border-radius: 5px; /* Optional: Rounds the corners */
    background-color: #f9f9f9; /* Optional: Adds a background color */
    transition: background-color 0.3s ease; /* Optional: Smooth hover effect */
}

.clickable-column:hover {
    background-color: white; /* Changes the background color on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adds a shadow for hover effect */
}






/* Footer styles */
footer {
    text-align: center;
    padding: 10px;
    background-color: #255,255,255;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
}

footer a {
    color: #024388;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
