:root {
    --highlight-color-rgb: 255,120,106;
    --highlight-color: #e1786a;
 }

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

body {
    background: #eee;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--highlight-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.body-container {
    background: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    margin: 0 auto;
    max-width: 1000px;
}

header {
    background: var(--main-color);
    background-image: url("/img/header.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
    aspect-ratio: 1000 / 333;
}

@media (max-width: 768px) {
    header {
        background-image: url("/img/og.jpg");
        aspect-ratio: 1200 / 630;
    }
}

header h1 {
    display: none;
}

main {
    padding: 60px 40px;
}

section {
    margin-bottom: 50px;
    line-height: 1.8;
}

section p {
    margin-bottom: 25px;
}

section:last-child {
    margin-bottom: 0;
}

.with-graphics-container {
    align-items: flex-start;
    display: flex;
    flex-shrink: 1;
    flex-wrap: wrap;
    gap: 20px;
}

.with-graphics-container div {
    flex: 1;
}

h1, h2 {
    color: var(--highlight-color);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

ul {
    padding-inline-start: 40px;
}

hr {
    border: none;
    height: 3px;
    background: var(--highlight-color);
    margin: 40px 0;
    border-radius: 2px;
}

.cta {
    text-align: center;
}

.cta a {
    background: var(--highlight-color);
    border-radius: 4px;
    box-shadow: 0 4px 5.5px rgba(var(--highlight-color-rgb),0.07);
    color: white;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 15px 0;
    padding: 15px 35px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta a:hover {
    box-shadow: 0 6px 20px rgba(var(--highlight-color-rgb),0.4);
    transform: translateY(-2px);
}

footer {
    margin-top: 1em;
    font-size: 9pt;
    text-align: center;
}
