/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    line-height: 1.5;
    color: #fff;
    background: linear-gradient(113deg, #215AAA 0%, #102644 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Page layout - full viewport height centered container */
.page {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 3em 2em 2em;
}

.content {
    width: 60vw;
    max-width: 60vw;
}

/* Heading */
.heading {
    font-family: "Oxanium", sans-serif;
    font-size: 3em;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #fff;
    padding-bottom: 1em;
    margin-bottom: 1.5em;
    border-bottom: 2px solid #FFEC00;
    line-height: 1;
}

/* Body text */
.body-text {
    font-family: "Roboto", sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.5em;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 1.5em;
}

.body-text p {
    margin-bottom: 1em;
}

.body-text p:last-child {
    margin-bottom: 0;
}

.body-text a {
    color: #e3106e;
    text-decoration: none;
}

.body-text a:hover {
    text-decoration: underline;
}

/* Icon list */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 1.5em 0 0;
}

.icon-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
}

.icon-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.7em;
    height: 1.7em;
    flex-shrink: 0;
    margin-right: 10px;
}

.icon-list-icon svg {
    width: 100%;
    height: 100%;
    fill: #FFEC00;
}

.icon-list-text {
    font-family: "Roboto", sans-serif;
    font-size: 1.7em;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: #fff;
}

/* Button */
.button-wrapper {
    margin-top: 2em;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background-color: #FFEC00;
    color: #2B3F5F;
    fill: #2B3F5F;
    font-family: "Roboto", sans-serif;
    font-size: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.7em 2em;
    border-radius: 2em;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
}

.btn:hover {
    background-color: #FFD200;
    transform: scale(1.1);
    text-decoration: none;
}

.btn-icon {
    display: flex;
    align-items: center;
}

.btn-icon svg {
    width: 1em;
    height: 1em;
    fill: #2B3F5F;
}

/* Footer text */
.footer-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    font-family: "Roboto", sans-serif;
    font-size: 0.7em;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 0.1em;
    margin-top: 20em;
}

.footer-text a {
    color: rgba(255, 236, 0, 0.72);
    text-decoration: none;
}

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

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .content {
        width: 100%;
        max-width: 100%;
    }
}

/* Responsive: Mobile */
@media (max-width: 767px) {
    .page {
        padding: 1em;
        padding-bottom: 2em;
    }

    .content {
        width: 100%;
        max-width: 100%;
    }

    .icon-list-icon {
        width: 20px;
        height: 20px;
        align-self: flex-start;
        margin-top: 7px;
    }

    .icon-list-text {
        font-size: 1.2em;
    }

    .footer-text {
        margin-top: 5em;
    }
}
