:root {
    --color-primary: #ffbf18;
}

body {
    font-family: Arial, sans-serif;
    background: #111;
    margin: 0;
    padding: 0;
    color: #222;
}

header {
    background: #222;
    color: #fff;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
a {
    text-decoration: none;
}

.header_link {
    width: 100%;
}

.header_img {
    width: 100%;
    height: auto;
}
.header_img_mobile {
    height: 70px;
}

nav {
    background: var(--color-primary);
    padding: 10px 0;
    text-align: center;
}

nav a {
    color: #222;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

.container {
    max-width: 900px;
    margin: 0px auto;
    background: #fff;
    padding: 10px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    max-width: 900px;
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.8;
}

h1,
h2,
h3 {
    color: rgb(17, 17, 17);
    margin-top: 1.5em;
}

h1 {
    font-size: 2.2em;
    margin-top: 0.5em;
}

h2 {
    text-align: center;
    font-size: 1.5em;
}

h3 {
    font-size: 1.2em;
}

p {
    margin: 10px;
}

.btn {
    display: inline-block;
    background: var(--color-primary);
    color: #222;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 1.1em;
    text-decoration: none;
    margin: 20px 0;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.btn:hover {
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.6);

    transform: translateY(-4px);
}

.btn_mobile_size_xxl {
    width: 100%;
    margin: 0;
    padding: 12px 0px;
    border-radius: 0px;
}
.btn_mobile_size_xxl:hover {
    transform: translateY(0);
}

ul,
ol {
    margin-left: 1.5em;
}

ol,
ul {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    list-style: none;
    list-style-position: inside;
}

ol {
    counter-reset: custom;
}

ol>li {
    position: relative;
    padding-left: 2.2em;
    margin-bottom: 0.5em;
    color: inherit;
}

ol>li:before {
    content: counter(custom) ".";
    counter-increment: custom;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.1em;
}

ul>li {
    position: relative;
    padding-left: 2.2em;
    margin-bottom: 0.5em;
    color: inherit;
}

ul>li:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: var(--color-primary);
    position: absolute;
    left: 0.1em;
    top: 0.45em;
}

.section {
    margin-bottom: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 180px;
    height: 40px;
    background: #eee;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 10px;
    line-height: 40px;
    text-align: center;
    font-weight: bold;
    color: #1a5d99;
    font-size: 1.3em;
    letter-spacing: 2px;
}

.footer {
    background: var(--color-primary);
    color: #111;
    text-align: center;
    padding: 50px 0 50px 0;
    margin-top: 0px;
    font-size: 0.95em;
    width: 100%;
}

.center_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .container {
        padding: 15px 5vw;
    }

    h1 {
        font-size: 1.3em;
    }

    h2 {
        font-size: 1.1em;
    }
}