/* Health & Fitness Template - German */
/* Systeme.io & Digistore24 & Stripe Compliant */

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

:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #27ae60;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --light-text: #ffffff;
    --gray-text: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
}

/* Emoji/Icon font support for cross-browser compatibility */
.icon, .trust-badge .icon, .problem-card .icon, .benefit-card .icon, .guarantee-badge .icon {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    color: var(--light-text);
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=1920&q=80') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text);
    padding: 60px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--light-text);
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
}

.cta-button:hover {
    background: #219a52;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.5);
}

/* Problem Section */
.problem-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.problem-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Solution Section */
.solution-section {
    padding: 80px 20px;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.solution-text h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.solution-text ul {
    list-style: none;
    margin-top: 20px;
}

.solution-text li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
}

.solution-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color), #1a252f);
    color: var(--light-text);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 30px;
}

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

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 20px;
    background: var(--light-bg);
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-card .stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author .name {
    font-weight: bold;
    color: var(--secondary-color);
}

.testimonial-author .title {
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* What You Get Section */
.package-section {
    padding: 80px 20px;
    background: white;
}

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

.package-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.package-item .check {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 20px;
}

.package-item .content h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.package-item .value {
    color: var(--primary-color);
    font-weight: bold;
    margin-left: auto;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color), #c0392b);
    color: var(--light-text);
    text-align: center;
}

.pricing-box {
    background: white;
    color: var(--dark-text);
    max-width: 500px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.pricing-box .original-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: var(--gray-text);
}

.pricing-box .current-price {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 10px 0;
}

.pricing-box .current-price span {
    font-size: 1.5rem;
}

.pricing-box .savings {
    background: var(--accent-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 60px 20px;
    background: var(--light-bg);
    text-align: center;
}

.guarantee-badge {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.guarantee-badge .icon {
    font-size: 5rem;
    color: var(--accent-color);
}

.guarantee-badge h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-item h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item p {
    color: var(--gray-text);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-disclaimer {
    font-size: 0.85rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 20px auto 0;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-badge .icon {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .pricing-box .current-price {
        font-size: 3rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--light-text);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    z-index: 1000;
}

.cookie-banner button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-banner a {
    color: var(--light-text);
    text-decoration: underline;
}
