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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2D5016;
}

.subtitle {
    margin-bottom: 1.5rem;
}

.subtitle p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #666;
    margin-bottom: 0;
    text-align: left;
}

p {
    margin-bottom: 1rem;
    text-align: left;
}

.details {
    margin: 2rem 0;
}

.details h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #3D1F07;
}

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

.details li {
    margin-bottom: 0.25rem;
    padding-left: 0;
}

.sonstiges {
    margin: 2rem 0;
}

.sonstiges h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #3D1F07;
}

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

.sonstiges li {
    margin-bottom: 0.25rem;
    padding-left: 0;
}

.mitbringen {
    margin: 2rem 0;
}

.mitbringen h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #3D1F07;
}

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

.mitbringen li {
    margin-bottom: 0.25rem;
    padding-left: 0;
}

.anmeldung {
    margin: 2rem 0;
}

.anmeldung h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #3D1F07;
}

.anmeldung p {
    text-align: left;
}

a {
    color: #3D1F07;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.home-indicator {
    text-align: center;
    margin: 1rem 0 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.language-indicator {
    text-align: right;
    margin: 0 0 2rem 0;
    font-size: 0.9rem;
    color: #666;
}

.language-indicator a {
    color: #3D1F07;
    text-decoration: underline;
    font-weight: 500;
}

@media (max-width: 600px) {
    body {
        padding: 15px;
    }

    h1 {
        font-size: 1.5rem;
    }
}

