/* Common styles for all pages */
:root {
    --primary-green: #96C020;
    --secondary-green: #7BA01A;
    --accent-green: #B8D040;
    --cream: #ffffff;
    --dark-text: #000000;
    --light-text: #ffffff;
    --soft-gray: #f8f8f8;
    --medium-gray: #eeeeee;
}

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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--soft-gray);
}

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

/* Thank you page (danke.html) */
.danke-page {
    background: linear-gradient(135deg, #f8f8f8 60%, #e6f5d0 100%);
    color: #222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.danke-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(150,192,32,0.1);
    padding: 3rem 2.2rem 2.2rem;
    text-align: center;
    max-width: 420px;
}

.danke-card h1 {
    color: var(--primary-green);
    font-size: 2.1rem;
    margin-bottom: 1.1rem;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
}

.danke-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.danke-btn {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.danke-btn:hover {
    background: var(--secondary-green);
}

/* Privacy/Datenschutz page */
.privacy-page {
    background: var(--soft-gray);
    padding: 2rem 0;
}

.privacy-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.privacy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.privacy-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.privacy-content h2 {
    color: var(--primary-green);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-content h3 {
    color: var(--secondary-green);
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
}

.privacy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.privacy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

/* 404 page */
.error-page {
    background: linear-gradient(135deg, var(--soft-gray) 0%, var(--medium-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.error-container {
    text-align: center;
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 500px;
}

.error-code {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.error-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.error-btn {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.2s;
}

.error-btn:hover {
    background: var(--secondary-green);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-content {
        padding: 1.5rem;
    }

    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .danke-card {
        padding: 2rem 1.5rem;
    }

    .error-code {
        font-size: 3.5rem;
    }

    .error-message {
        font-size: 1.2rem;
    }
}
