* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Import Special Elite font */
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #eddcff;
    padding: 20px;
    max-width: 100%;
}

.one-screen {
    min-height: calc(100vh - 20px - 2em);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.content {
    max-width: 1100px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    padding: 2em;
}

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

.vertical-centered {
    align-items: center;
}

.vertical-stretch {
    align-items: stretch;
}

.column {
    flex: 1;
    min-width: 300px;
}

.box {
    flex: 1 1 200px;
    border-radius: 0.5em;
    padding: 1em;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.box-image {
    width: 50%;
    max-width: 128px;
    height: auto;
    display: block;
    margin: auto auto 1em auto;
}

h1, h2 {
    margin-bottom: 1em;
}

h2 {
    font-size: 1.2em;
}

a {
    color: #2e6417;
}

a.not-a-link {
    text-decoration: none;
    color: #000;
}

blockquote {
    margin-bottom: 0.5em;
    border-left: 4px solid #2e6417;
    padding-left: 1em;
    font-style: italic;
}

.centered-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.cta {
    background-color: #ffaa2a;
    color: #000;
    padding: 1em;
    border-radius: 0.5em;
    font-weight: bold;
    text-decoration: none;
}

button.cta {
    cursor: pointer;
    border: none;
    font: inherit;
}

/* Register modal */
#register-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1em;
}

#register-modal[hidden] {
    display: none !important;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(62, 25, 100, 0.5);
    cursor: pointer;
}

.modal-content {
    position: relative;
    z-index: 1001;
    width: 30rem;
    max-width: 90vw;
    max-height: 85vh;
    background: #fff;
    border-radius: 0.5em;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    z-index: 1002;
    width: 2em;
    height: 2em;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
}

.modal-close:hover {
    color: #000;
}

#register-iframe {
    display: block;
    width: 100%;
    height: calc(85vh - 3em);
    min-height: 400px;
    border: none;
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    box-sizing: border-box;
}

.features-col-1 {
    width: 25%;
}

.features-col-2 {
    background-color: #d9ead3;
    font-weight: bold;
    width: 50%;
}

.features-col-3 {
    width: 25%;
}

.features-table tr td,th {
    border: 1px solid #333;
    padding: 0.5em;
}

th.features-col-2 {
    background-color: #b6d7a8;
}
