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

body {
    font-family: 'Rubik', sans-serif;
    background:
        radial-gradient(circle at 20% 50%, rgba(245, 235, 220, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(250, 240, 230, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(240, 230, 215, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #F8F6F1 0%, #F5F0E8 50%, #FAF7F2 100%);
    min-height: 100vh;
    color: black;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #666;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: black;
}

.headline {
    margin-bottom: 30px;
}

.headline p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

hr {
    border: none;
    border-top: 0.5px solid #666;
    margin: 30px 0;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    color: #666;
}

p {
    color: #666;
    font-size: 1rem;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    color: #666;
    font-size: 1rem;
    margin-bottom: 8px;
}

li::before {
    content: "- ";
    color: #666;
}

section a {
    color: #5B8FA3;
    text-decoration: none;
}

section a:hover {
    color: #4A7A8C;
    text-decoration: underline;
}