@font-face {
    font-family: 'Bounded';
    src: url('/assets/fonts/Bounded-Variable.woff2');
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Variable.woff2');
}
:root { 
    --light-green: #b1f05a;
    --light-green-rgb: 177, 240, 90;
    --orange: #ea6437; 
    --orange-rgb: 234, 88, 55;
    --blue: #1a3654;
}
body {
    margin: 0;
    padding: 15px 0 60px 0;
    background-color: #e3e3e3;
}
h1 {
    font-family: 'Bounded';
    font-size: clamp(20px, 7vw, 44px);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.04em;
    padding: 20px 0;
    margin-top: 30px;
    color: #333;
    border-top: #999 solid 1px;
    border-bottom: #999 solid 1px;
}
h3 {
    font-family: 'Bounded';
    font-size: 18px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    padding: 40px 0 20px 0;
    color: #333;
}
h4 {
    font-family: 'Bounded';
    font-size: 18px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--orange);
}
p, li {
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 10px;
}
li {
    margin-left: 30px;
}
a {
    color: inherit;
    transition: 0.3s ease-in-out;
}
a:hover {
    color: var(--orange);
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
tr {
    border-top: #999 solid 1px;
}
tr:last-child {
    border-bottom: #999 solid 1px;
}
td {
    padding: 10px;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 400;
}
.grid-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px;
    position: relative;
    display: grid;
}