* {
    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: #2D5016;
    background-color: #E9F9E3;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    border-bottom: 2px solid #2D5016;
    background-color: #fff;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: #2D5016;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    font-weight: 500;
}

.nav-link:hover {
    color: #4A7C3F;
}

.language-switcher {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid #4A7C3F;
    background-color: #fff;
    color: #2D5016;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
    border-radius: 3px;
    font-weight: 500;
}

.lang-btn:hover {
    background-color: #E9F9E3;
    border-color: #2D5016;
}

.lang-btn.active {
    background-color: #2D5016;
    color: #fff;
    border-color: #2D5016;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.forest-visual {
    margin-bottom: 3rem;
    opacity: 0.7;
}

.forest-visual svg {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.people-illustrations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.person-icon {
    opacity: 0.8;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.person-icon:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.person-icon svg {
    width: 80px;
    height: auto;
    display: block;
}

.headline {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #2D5016;
}

.subtext {
    font-size: 1.1rem;
    color: #4A7C3F;
    margin-bottom: 2rem;
}

.coming-soon {
    font-size: 0.9rem;
    color: #4A7C3F;
    font-style: italic;
    margin-top: 3rem;
}

.content {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.content p {
    margin-bottom: 1.5rem;
    color: #2D5016;
    font-size: 1rem;
}

.notice {
    font-style: italic;
    color: #777;
    margin-bottom: 2rem;
}

.legal-info {
    margin-top: 2rem;
}

.legal-info h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2D5016;
}

.legal-info p {
    margin-bottom: 0.8rem;
    color: #2D5016;
}

.legal-info strong {
    color: #2D5016;
}

.legal-info a {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 500;
}

.legal-info a:hover {
    color: #E55A2B;
    text-decoration: underline;
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
        gap: 1rem;
    }

    .language-switcher {
        margin-left: 0;
        order: -1;
        width: 100%;
        justify-content: flex-end;
    }

    .headline {
        font-size: 1.5rem;
    }

    .subtext {
        font-size: 1rem;
    }

    main {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.3rem;
    }

    .subtext {
        font-size: 0.95rem;
    }

    .forest-visual {
        margin-bottom: 2rem;
    }

    .forest-visual svg {
        max-width: 100%;
    }

    .people-illustrations {
        gap: 1rem;
        margin: 2rem 0;
    }

    .person-icon svg {
        width: 60px;
    }
}

