/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --accent-color: #E74C3C;
    --success-color: #27AE60;
    --warning-color: #F39C12;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow-x: hidden;
}

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

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(90deg, var(--accent-color), var(--warning-color));
    color: white;
    padding: 15px 0;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    animation: pulse 2s infinite;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.emergency-banner i {
    margin: 0 10px;
    animation: shake 0.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.9; }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Header-Bild mit Menschen und Flatcaps */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/header-flatcaps.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: 0;
}

/* Gradient-Overlay für bessere Lesbarkeit (20% Transparenz = 80% Sichtbarkeit) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.main-title {
    font-family: 'Permanent Marker', cursive;
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    animation: slideInDown 1s ease-out;
}

.subtitle {
    font-size: 2rem;
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.3);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Story Section */
.story-section {
    background: white;
    padding: 80px 0;
}

.story-intro {
    text-align: center;
    margin-bottom: 60px;
}

.story-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.3rem;
    color: #7f8c8d;
    font-style: italic;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-chapter {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.story-chapter::before {
    content: '📖';
    position: absolute;
    font-size: 100px;
    opacity: 0.05;
    right: 20px;
    top: 20px;
}

.story-chapter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.story-chapter.special {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
}

.story-chapter.urgent {
    background: linear-gradient(135deg, #ff7675 0%, #fd79a8 100%);
    color: white;
}

.story-chapter.urgent h3,
.story-chapter.urgent .chapter-number {
    color: white;
}

.chapter-number {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.story-chapter h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-text ul {
    list-style: none;
    margin: 20px 0;
}

.story-text ul li {
    font-size: 1.1rem;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.highlight {
    background: var(--warning-color);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.fun-fact {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid #3498db;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.fun-fact i {
    color: #f39c12;
    margin-right: 10px;
    font-size: 1.3rem;
}

.fun-fact p {
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.benefit-card p {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.big-text {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 30px 0;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.final-list {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.final-list li {
    font-size: 1.2rem;
    padding: 10px 0;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

.offer-box {
    background: white;
    color: var(--dark-color);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 700px;
    margin: 0 auto;
}

.offer-box h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.offer-details {
    text-align: left;
    margin: 30px 0;
}

.offer-item {
    display: flex;
    align-items: center;
    padding: 15px;
    font-size: 1.1rem;
}

.offer-item i {
    color: var(--success-color);
    font-size: 1.5rem;
    margin-right: 15px;
}

.price-box {
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 15px;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: #7f8c8d;
}

.new-price {
    font-size: 4rem;
    font-weight: bold;
    color: var(--accent-color);
    margin: 10px 0;
}

.price-note {
    font-size: 1rem;
    color: var(--dark-color);
    font-style: italic;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    margin: 20px 0;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.cta-button i {
    margin-right: 10px;
}

.urgency-text {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 20px;
}

.urgency-text span {
    font-size: 1.5rem;
    animation: pulse 1s infinite;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--warning-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark-color);
    text-align: right;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    line-height: 1.6;
    color: #7f8c8d;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: slideInDown 0.3s;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover {
    color: var(--accent-color);
}

.modal-content h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button i {
    margin-right: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* PayPal-Button-Stil */
.submit-button.paypal-button-style {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.submit-button.paypal-button-style:hover {
    background: #0070ba;
    box-shadow: 0 8px 20px rgba(0, 112, 186, 0.4);
    transform: translateY(-3px);
}

.submit-button.paypal-button-style:hover i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    margin: 10px 0;
}

.footer-note {
    font-size: 0.9rem;
    color: #bdc3c7;
    font-style: italic;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin: 0 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .story-chapter {
        padding: 25px;
    }

    .offer-box {
        padding: 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        margin: 10% 20px;
        padding: 25px;
    }

    .hero {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .emergency-banner {
        font-size: 0.9rem;
        padding: 10px 0;
    }
}

/* ============================================
   NEUE STYLES FÜR BESTELLFORMULAR & ZAHLUNGSSEITE
   ============================================ */

/* Formular-Erweiterungen */
.form-section {
    background: rgba(255, 255, 255, 0.5);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
}

.form-section h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.form-section h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.required {
    color: var(--accent-color);
    font-weight: bold;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
    background: white;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #7f8c8d;
    font-size: 0.85rem;
}

/* Farb-Auswahl */
.color-note {
    background: rgba(255, 243, 205, 0.5);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.color-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.color-checkbox {
    display: flex;
    align-items: center;
    padding: 12px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-checkbox:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
}

.color-checkbox input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.color-checkbox input[type="checkbox"]:checked + span {
    font-weight: bold;
    color: var(--primary-color);
}

/* Preisübersicht im Formular */
.price-summary {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.price-summary h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.price-summary h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 1.1rem;
}

.price-row.total {
    border-top: 2px solid var(--dark-color);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.3rem;
}

.price-value {
    font-weight: bold;
    color: var(--dark-color);
}

.price-value.discount {
    color: var(--success-color);
}

.shipping-note {
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--success-color);
}

/* Checkbox-Gruppe für Datenschutz & AGB */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* ============================================
   ZAHLUNGSSEITE STYLES
   ============================================ */

.payment-page {
    min-height: 100vh;
    padding: 40px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.payment-container {
    max-width: 900px;
    margin: 0 auto;
}

.payment-container h1 {
    text-align: center;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 2.5rem;
}

.payment-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

/* Bestellzusammenfassung */
.order-summary-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.order-summary-box h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.summary-content {
    font-size: 1.05rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.summary-row.total {
    border-top: 2px solid var(--dark-color);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.3rem;
}

.summary-divider {
    height: 1px;
    background: #ddd;
    margin: 15px 0;
}

.summary-address {
    background: rgba(102, 126, 234, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.summary-address p {
    margin: 5px 0;
}

/* Zahlungsmethoden */
.payment-methods {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.payment-methods h2 {
    color: var(--dark-color);
    margin-bottom: 25px;
}

.payment-option {
    border: 3px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.02);
}

.payment-option.active {
    border-color: var(--primary-color);
    background: rgba(255, 107, 53, 0.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option label {
    cursor: pointer;
    display: block;
}

.payment-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.payment-header i {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary-color);
}

.payment-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--dark-color);
}

.payment-desc {
    color: #7f8c8d;
    margin: 0;
    padding-left: 50px;
}

/* Zahlungsdetails */
.payment-details {
    background: rgba(102, 126, 234, 0.05);
    padding: 25px;
    border-radius: 12px;
    margin-top: 15px;
    border-left: 4px solid var(--primary-color);
}

.payment-details h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.payment-details h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Bankdaten */
.bank-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.bank-row:last-child {
    border-bottom: none;
}

.bank-row.highlight {
    background: rgba(255, 243, 205, 0.5);
    padding: 12px;
    margin: 10px -12px;
    border-radius: 5px;
    border-bottom: none;
}

.bank-label {
    font-weight: 600;
    color: #7f8c8d;
}

.bank-value {
    font-weight: bold;
    color: var(--dark-color);
}

/* PayPal Info */
.paypal-info {
    text-align: center;
}

.paypal-amount {
    background: rgba(255, 243, 205, 0.5);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    font-size: 1.2rem;
}

.payment-note {
    background: rgba(255, 243, 205, 0.3);
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.95rem;
}

.payment-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

.payment-note-paypal {
    margin: 15px 0;
    padding: 12px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 8px;
    text-align: center;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

.back-link i {
    margin-right: 5px;
}

/* ============================================
   DANKE-SEITE STYLES
   ============================================ */

.thankyou-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thankyou-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 6rem;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    color: #27AE60;
    background: white;
    border-radius: 50%;
    padding: 20px;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.thankyou-message {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.thankyou-box {
    background: white;
    color: var(--dark-color);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.thankyou-box h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.next-steps {
    text-align: left;
}

.step {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-right: 20px;
}

.step-content h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.step-content p {
    color: #7f8c8d;
    margin: 0;
}

.thankyou-quote {
    background: rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    font-style: italic;
    backdrop-filter: blur(10px);
}

.quote-author {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.countdown-box span {
    font-weight: bold;
    font-size: 1.3rem;
}

.home-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.home-button i {
    margin-right: 10px;
}

/* ============================================
   RECHTLICHE SEITEN (Impressum, Datenschutz, AGB)
   ============================================ */

.legal-page {
    min-height: 100vh;
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.legal-content h1 {
    color: var(--dark-color);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.legal-section {
    margin-bottom: 35px;
}

.legal-section h2 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-section h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 12px;
    margin-top: 20px;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--secondary-color);
}

.back-link-box {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.back-link-box .back-link {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.back-link-box .back-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

/* Footer-Links */
.footer-links {
    margin: 15px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive für neue Elemente */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .color-options {
        grid-template-columns: 1fr;
    }
    
    .payment-container h1 {
        font-size: 1.8rem;
    }
    
    .payment-intro {
        font-size: 1rem;
    }
    
    .payment-header i {
        font-size: 1.5rem;
    }
    
    .payment-title {
        font-size: 1.1rem;
    }
    
    .payment-desc {
        padding-left: 40px;
        font-size: 0.9rem;
    }
    
    .bank-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-message {
        font-size: 1.1rem;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
}