/* ================================
   GLOBAL
================================ */

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/* ================================
   HEADER
================================ */

header {
    background-color: #1f3b5d;
    color: #fff;
    padding: 15px 40px;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 50px;
    margin-right: 12px;
    vertical-align: middle;
}

nav {
    float: right;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.95rem;
}

nav a:hover {
    text-decoration: underline;
}

/* ================================
   HERO
================================ */

.hero {
    background-color: #e2e7ef;
    padding: 60px 40px;
    text-align: left;
}

.hero h1 {
    margin-top: 0;
    font-size: 2rem;
    color: #1f3b5d;
}

.hero p {
    max-width: 700px;
    font-size: 1rem;
    line-height: 1.6;
}

.hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    background-color: #1f3b5d;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.hero .btn:hover {
    background-color: #162a40;
}

/* ================================
   SECTIONS
================================ */

.section {
    padding: 40px;
    background-color: #fff;
    margin-bottom: 10px;
}

.section h2 {
    margin-top: 0;
    font-size: 1.4rem;
    color: #1f3b5d;
}

.three-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.column {
    flex: 1 1 250px;
    background-color: #f8f8f8;
    padding: 20px;
    box-sizing: border-box;
}

.column h3 {
    margin-top: 0;
    font-size: 1.1rem;
    color: #1f3b5d;
}

.services-list ul {
    list-style: none;
    padding-left: 0;
}

.services-list li {
    margin-bottom: 6px;
}

/* ================================
   CTA
================================ */

.cta {
    text-align: center;
}

.cta .btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 22px;
    background-color: #1f3b5d;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.cta .btn:hover {
    background-color: #162a40;
}

/* ================================
   FORMS (Login, Upload)
================================ */

input[type="text"],
input[type="password"],
input[type="file"] {
    padding: 8px;
    width: 280px;
    max-width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button.btn,
input[type="submit"].btn {
    padding: 10px 22px;
    background-color: #1f3b5d;
    color: #fff;
    border: none;
    cursor: pointer;
}

button.btn:hover,
input[type="submit"].btn:hover {
    background-color: #162a40;
}

/* ================================
   FOOTER (Classic FNDS)
================================ */

.fnds-footer {
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #000;
    margin-top: 40px;
    line-height: 1.5;
}

.footer-top,
.footer-email,
.footer-links {
    margin-bottom: 6px;
}

.fnds-footer a {
    color: #003399;
    text-decoration: none;
}

.fnds-footer a:hover {
    text-decoration: underline;
}

.footer-table {
    margin-top: 10px;
}

.footer-copy {
    font-size: 11px;
    color: #FF0000;
}

/* Tiny inline FNDS logo */
.footer-logo img {
    width: 12px;
    height: 12px;
    vertical-align: baseline;
    margin-left: 3px;
    opacity: 0.95;
}

.footer-lastmod {
    font-size: 11px;
    color: #808080;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 700px) {
    nav {
        float: none;
        margin-top: 10px;
    }
}
/* Prevent action column from collapsing */
table td:last-child, table th:last-child {
    width: 180px;
    white-space: nowrap;
}

/* Ensure buttons stay visible */
.btn {
    display: inline-block;
    padding: 6px 12px;
}

