body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #082c69;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

::selection {
    color: #fff;
    background: #5470fa;
}

img {
    display: block;
    max-width: 80%;
    height: auto;
	margin: 0 auto;
}

.container {
    max-width: 1144px;
    margin: 0 auto;
    padding: 0 16px;
}

.main {
    overflow: hidden;
}

h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 20px;
	color: #fff;
}
h2 {
    font-size: 1.75rem;
    margin: 1em 0 0.5em;
    color: #0275bd;
}
h3 {
    font-size: 1.5rem;
    margin: 1em 0 0.5em;
    color: #0275bd;
}
h4 {
    font-size: 1.25rem;
    margin: 0.8em 0 0.4em;
    color: #0275bd;
}

.header-area {
    background: #001f54;
	color: #fff;
    box-shadow: 0 4px 20px rgba(1, 3, 5, 0.1);
    padding: 12px 0;
    position: relative;
}

.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    transition: 0.2s;
}

.nav ul li a:hover {
    color: #f74835;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #0275bd;
    color: #fff;
    font-weight: 700;
    border-radius: 30px;
    text-align: center;
    transition: background 0.2s;
}

.btn:hover {
    background: #c93b2b;
}

.btn--lg {
    font-size: 18px;
    padding: 15px 60px;
}

.btn--block {
    display: block;
    width: 100%;
}

.hero-area {
    padding: 10px 0;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero__media img {
    border-radius: 20px;
}

.table-wrap {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #fff;
}

.table th, .table td {
    border: 1px solid #f74835;
    padding: 10px 15px;
    vertical-align: top;
}

.table th {
    background: #0275bd;
    color: #fff;
    text-align: left;
}

.table td a {
    color: blue;
    font-weight: bold;
    text-decoration: none;
}

.table td a:hover {
    text-decoration: underline;
}

.seo-text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
}

.footer-area {
    background: #001f54;
    padding: 40px 0;
    border-top: 1px solid #444;
	color: #fff;
}

.footer__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer__brand img {
    max-width: 150px;
}

.footer__text {
    font-size: 14px;
    color: #fff;
}

footer a {
    color: #f74835;
}

.burger {
    display: none;
    position: relative;
    width: 32px;
    height: 24px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1100;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: top .2s ease, transform .2s ease, opacity .2s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }

.burger[aria-expanded="true"] span:nth-child(1) {
    top: 10px; transform: rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
    top: 10px; transform: rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #2e303b;
    border-top: 1px solid #3a3c47;
    z-index: 1000;
}

.mobile-nav.is-open { display: block; }

.mobile-nav ul {
    margin: 0;
    padding: 8px 0;
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid #3a3c47;
}

.mobile-nav li:last-child {
    border-bottom: 0;
}

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,.06);
}

@media (max-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .burger { display: block; }
    body.lock { overflow: hidden; }
}
