* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    background-color: #ffffff;
}
.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
font-family: "Lato", sans-serif;
font-weight: 300;
font-style: normal;
}

.lato-regular {
font-family: "Lato", sans-serif;
font-weight: 400;
font-style: normal;
}

.lato-bold {
font-family: "Lato", sans-serif;
font-weight: 700;
font-style: normal;
}

.lato-black {
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: normal;
}

.lato-thin-italic {
font-family: "Lato", sans-serif;
font-weight: 100;
font-style: italic;
}

.lato-light-italic {
font-family: "Lato", sans-serif;
font-weight: 300;
font-style: italic;
}

.lato-regular-italic {
font-family: "Lato", sans-serif;
font-weight: 400;
font-style: italic;
}

.lato-bold-italic {
font-family: "Lato", sans-serif;
font-weight: 700;
font-style: italic;
}

.lato-black-italic {
font-family: "Lato", sans-serif;
font-weight: 900;
font-style: italic;
}
.semibold {
    font-weight: 700;
    opacity: 0.92;
}

/* ---------- Header ---------- */
body {
    position: relative;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    background-image:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.20) 0, transparent 55%), linear-gradient(135deg, rgba(0, 50, 102, 1) 0%, #06408a 40%, #032352 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 50px;
    z-index: 10;
}

.search-bar {
    border: 1px solid rgba(114, 181, 244, 1);
    border-radius: 5px;
    height: 30px;
    padding: 3px;
}
.form-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.form-row button {
    border: none;
    background: none;
    outline: none;
    width: 25px;
    height: 25px;
    padding: 0;
}
.form-row button svg {
    width: 25px;
    height: 25px; 
}
.form-row input {
    border: none;
    background: none;
    color: rgba(114, 181, 244, 1);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    outline: none;
    padding: 0 0 5px;
    height: 22px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}
.form-row input::placeholder {
    color: rgba(114, 181, 244, 1);
    font-weight: 400;
}
.topbar-inner { 
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

.brand {
    font-weight: 700;
    letter-spacing: 0.06em;
}

.top-nav a {
    color: #ffffff;
    margin-left: 16px;
    text-decoration: none;
    opacity: 0.9;
}

.top-nav a:hover {
    text-decoration: underline;
    opacity: 1;
}

.hero {
    background-image:
    radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.20) 0, transparent 55%), linear-gradient(135deg, rgba(0, 50, 102, 1) 0%, #06408a 40%, #032352 100%);
    padding: 90px 0 40px;
    margin-bottom: 40px;
}

.hero h1 {
    margin: 0 0 20px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 1);
    font-size: 36px;
    font-weight: 600;
}

.hero-subtitle {
    margin: 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
}

/* ---------- Layout ---------- */
.container-text {
    max-width: 962px;
}
.container-text p {
    margin: 0 0 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.section {
    margin-bottom: 32px;
    width: 100%;
}

.section-intro {
    margin-bottom: 10px;
    font-style: italic;
}
.title {
    font-size: 28px;
    font-weight: 600;
    position: relative;
    color: #000;
}
h3.title {
    font-size: 24px;
    font-weight: 600;
    position: relative;
    color: #000;
}
.title:after {
    position: absolute;
    content:"";
    display: block;
    width: 204px;
    height: 2px;
    background: rgba(128, 174, 223, 1);
    left: 0;
    bottom: 0;
}

h3 {
    margin: 18px 0 8px;
    font-size: 15px;
    color: #113f6b;
}

p {
    margin: 0 0 10px;
}

ul {
    margin: 0 0 10px 18px;
    padding: 0;
}
.nodisk {
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0 0 10px 0;
}
li {
    margin-bottom: 4px;
}

.note {
    font-size: 12px;
    color: #666;
}

/* ---------- Tables ---------- */

.table-wrapper {
    margin-top: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    border-radius: 5px 5px 0 0;
}

.data-table thead th {
    background-color: #80AEDF;
    padding: 8px 10px;
    text-align: left;
    white-space: nowrap;
    color: #113f6b;
    font-size: 16px;
}
.data-table thead th:first-child {
    border-radius: 5px 0 0 0;
}
.data-table thead th:last-child {
    border-radius: 0 5px 0 0;
}
.data-table tbody td {
    padding: 8px 10px;
    font-size: 16px;
}

.data-table tbody tr:nth-child(odd) {
    background-color: #EDF6FF;
}

.data-table tbody tr:nth-child(even) {
    background-color: #ffffff;
}


/* ---------- FAQ ---------- */

.faq-item {
    border-width: 1px 1px 1px 5px;
    border-radius: 5px;
    padding: 10px;
    border-style: solid;
    border-color: #80AEDF;
    margin: 0 0 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.07);

}
.faq-item h3 {
    color: #1F323B;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
}
.faq-item p {
    color: #1F323B;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}
/* ---------- Footer ---------- */

.site-footer {
    background-color: rgba(1, 38, 75, 1);
    color: #ffffff;
    font-size: 16px;
    padding: 18px 0;
}
.footer-logo {
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: 0.08em;
    padding: 0 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(38, 144, 176, 1);
}
.footer-copy {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    font-weight: 600;

}

/* ---------- Responsive ---------- */

@media (max-width: 700px) {
    .topbar-inner {
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .page {
        padding: 20px 0 32px;
    }
}
