         body {
            font-family: Arial, sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        .container {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2c5530;
            text-align: center;
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }
        input, select {
            width: 100%;
            padding: 10px;
            border: 2px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            box-sizing: border-box;
        }
.btn {
    background-color: #4CAF50;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Setzt die Breite auf 100% des Elternelements */
    display: block; /* Stellt sicher, dass der Button eine eigene Zeile einnimmt */
    margin: 20px auto; /* Zentriert den Button horizontal und sorgt für vertikalen Abstand */
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border in die 100% Breite einbezogen werden */
}
.btn:hover {
    background-color: #45a049;
}

/* Consultation Button */
.consultation-btn {
    background-color: #17a2b8;
    color: white;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%; /* Setzt die Breite auf 100% des Elternelements, um der oberen Klasse zu entsprechen */
    margin: 20px auto; /* Zentriert den Button horizontal und sorgt für vertikalen Abstand */
    text-decoration: none;
    display: block; /* Stellt sicher, dass der Button eine eigene Zeile einnimmt */
    text-align: center; /* Zentriert den Text innerhalb des Buttons */
    transition: background-color 0.3s ease;
    box-sizing: border-box; /* Stellt sicher, dass Padding und Border in die 100% Breite einbezogen werden */
}

.consultation-btn:hover {
    background-color: #138496;
    color: white;
    text-decoration: none;
}



        .results {
            margin-top: 30px;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 5px;
            border-left: 4px solid #4CAF50;
        }
        .result-item {
            margin-bottom: 10px;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        .recommendations {
            margin-top: 20px;
            padding: 15px;
            background-color: #e8f4f8;
            border-radius: 5px;
            border-left: 4px solid #17a2b8;
        }
        .disclaimer {
            margin-top: 30px;
            padding: 15px;
            background-color: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 5px;
            font-size: 14px;
        }
        .optional-section {
            margin-top: 20px;
            padding: 15px;
            background-color: #f0f8ff;
            border-radius: 5px;
            border-left: 4px solid #007bff;
        }

        .collapsible-details {
            margin: 15px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
            overflow: hidden;
        }

       
        .collapsible-header {
            background-color: #f8f9fa;
            padding: 12px 15px;
            cursor: pointer;
            border: none;
            width: 100%;
            text-align: left;
            font-weight: bold;
            font-size: 14px;
            color: #666;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .collapsible-header:hover {
            background-color: #e9ecef;
        }
        
        .collapsible-content {
            padding: 15px;
            background-color: #fafafa;
            border-top: 1px solid #eee;
        }
        
        .collapsible-arrow {
            transition: transform 0.3s ease;
        }
        
        .collapsible-arrow.open {
            transform: rotate(90deg);
        }
		
		/* Mode Toggle Styles */
.mode-toggle {
    margin-bottom: 20px;
    text-align: center;
}

.mode-btn {
    background-color: #f8f9fa;
    border: 2px solid #ddd;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.mode-btn.active {
    background-color: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.mode-btn:hover {
    background-color: #e9ecef;
}

.mode-btn.active:hover {
    background-color: #45a049;
}


/* Complex Mode Sections */
.complex-mode-section {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    border-left: 4px solid #6c757d;
}

.complex-mode-section.hidden {
    display: none;
}