
/*** T3SB identifier: darkModeToggler */

.dm-toggler .bi {
	width: 1em;
	height: 1em;
	vertical-align: -.125em;
	fill: currentcolor;
}



/*** T3SB identifier: t3sbsCSSassets_58735 */

/* t3sbs_assets_58735 */
        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #4a5568;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 14px;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23667eea;stop-opacity:1" /><stop offset="100%" style="stop-color:%23764ba2;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad)"/></svg>');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        
        .hero-content h1 {
            font-size: 3.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-content .subtitle {
            font-size: 1.3em;
            margin-bottom: 30px;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        .cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
        }
        
        /* Problem Section */
        .problem-section {
            background: white;
            padding: 80px 0;
            position: relative;
        }
        
        .problem-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
        }
        
        .section-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 50px;
            color: #2d3748;
            position: relative;
            z-index: 2;
        }
        
        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .symptom-card {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .symptom-card:hover {
            transform: translateY(-10px);
        }
        
        .symptom-card h3 {
            color: #e53e3e;
            font-size: 1.3em;
            margin-bottom: 15px;
        }
        
        .symptom-list {
            list-style: none;
        }
        
        .symptom-list li {
            padding: 8px 0;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
            padding-left: 25px;
        }
        
        .symptom-list li::before {
            content: "⚠️";
            position: absolute;
            left: 0;
            top: 8px;
        }
        
        /* Solution Section */
        .solution-section {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .solution-content h2 {
            font-size: 2.8em;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .solution-text {
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.95;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .feature-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }
        
        .feature-card h3 {
            font-size: 1.3em;
            margin-bottom: 15px;
        }
        
        /* Process Section */
        .process-section {
            background: white;
            padding: 80px 0;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .process-step {
            text-align: center;
            padding: 40px 20px;
            border-radius: 15px;
            background: linear-gradient(135deg, #E5F4E3 0%, #263031 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .process-step::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }
        
        .process-step:hover::before {
            opacity: 1;
            animation: shine 0.6s ease-in-out;
        }
        
        .step-number {
            font-size: 3em;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #263031, #263029);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .step-title {
            font-size: 1.4em;
            margin-bottom: 15px;
        }
        
        /* Testimonial Section */
        .testimonial-section {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .testimonial-card {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .testimonial-text {
            font-size: 1.3em;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: bold;
            font-size: 1.1em;
        }
        
        /* CTA Section */
        .cta-section {
            background: #2d3748;
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-content h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }
        
        .cta-content p {
            font-size: 1.2em;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        .submit-button {
            background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
        }

        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5em;
            }
            
            .section-title {
                font-size: 2em;
            }
            
            .symptoms-grid,
            .features-grid,
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 10px;
            }
        }
        
        /* Trust Signals */
        .trust-bar {
            background: rgba(255, 255, 255, 0.95);
            padding: 20px 0;
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .trust-items {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #4a5568;
            font-size: 14px;
        }
        
        .trust-icon {
            color: #48bb78;
            font-size: 18px;
        }

   /* FAQ Styles */
        .faq-container {
            margin-top: 40px;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            background: white;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .faq-question {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
        }
        
        .faq-question h3 {
            margin: 0;
            font-size: 1.2em;
            font-weight: 600;
        }
        
        .faq-toggle {
            font-size: 1.5em;
            font-weight: bold;
            transition: transform 0.3s ease;
            min-width: 30px;
            text-align: center;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .faq-answer.active {
            padding: 25px 30px;
            max-height: 500px;
        }
        
        .faq-answer p {
            margin: 0;
            line-height: 1.7;
            color: #4a5568;
            font-size: 1.05em;
        }
        
        .faq-answer strong {
            color: #2d3748;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
    </style>
	


/*** T3SB identifier: bgimgutility-58687 */
@media (max-width: 2560px) {#s58687 {background-image: url("https://www.tamena-gesundheit.de/fileadmin/_processed_/7/6/csm_AdobeStock_382114902_b034b42f57.jpeg") !important;}}@media (min-width: 2561px) {#s58687 {background-image: url("https://www.tamena-gesundheit.de/fileadmin/_processed_/7/6/csm_AdobeStock_382114902_b034b42f57.jpeg") !important;}}@media (max-width: 1920px) {#s58687 {background-image: url("https://www.tamena-gesundheit.de/fileadmin/_processed_/7/6/csm_AdobeStock_382114902_4046144f6c.jpeg") !important;}}@media (max-width: 1200px) {#s58687 {background-image: url("https://www.tamena-gesundheit.de/fileadmin/_processed_/7/6/csm_AdobeStock_382114902_7e9983b1bd.jpeg") !important;}}@media (max-width: 992px) {#s58687 {background-image: url("https://www.tamena-gesundheit.de/fileadmin/_processed_/7/6/csm_AdobeStock_382114902_13a0af1bcb.jpeg") !important;}}@media (max-width: 768px) {#s58687 {background-image: url("https://www.tamena-gesundheit.de/fileadmin/_processed_/7/6/csm_AdobeStock_382114902_38fad38607.jpeg") !important;}}@media (max-width: 576px) {#s58687 {background-image: url("https://www.tamena-gesundheit.de/fileadmin/_processed_/7/6/csm_AdobeStock_382114902_182629dcfc.jpeg") !important;}}


/*** T3SB identifier: jarallaxCss */

.jarallax {

/*
position: relative;
*/

	z-index: 0;
}
.jarallax .jarallax-img {
	position: absolute;
	object-fit: cover;
	font-family: 'object-fit: cover;';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}


