:root {
    --bg: #ffffff;
    --text: #000000;
    --muted: #000000;
    --border: #23232b;
    --brand: #f8a9a2;
    --brand-2: #ebffe2;
    --container: 70%;
}

body p,
a,
li {
    font-size: 18px;
    color: #666666;
}

ul {
    margin-left: 20px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Bebas Neue", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    margin-inline: auto;
}
.left section {
    margin-bottom: 42px !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.2rem;
}
nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}
nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
}

main h1 {
    font-size: 72px;
    text-align: center;
    margin: 50px 0;
    color: var(--brand);
    letter-spacing: 0.09em;
    text-align: left;
    line-height: 1;
}

section h2 {
    color: var(--text);
    font-family: "Bebas Neue", sans-serif;
    margin: 0 0 30px;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.09em;
    color: #000000;
    text-transform: uppercase;
}
ul {
    padding-left: 0;
}
ul li {
    position: relative;
}
/* ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
} */
blockquote {
    font-size: 18px;
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 4px solid var(--brand);
    font-style: italic;
    color: #666666;
}

footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--brand);
    color: var(--muted);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    h1 {
        font-size: 50px !important;
    }
}
