/*
 * MBOVIA Wellness - Stylesheet
 * Version: 1.0
 * Erstellt: Februar 2024
 * Letzte Änderung: Februar 2024
 *
 * Enthält:
 * - Responsive Grid-Layout
 * - Custom Wellness-Farbschema
 * - Mobile-First Ansatz
 * - Optimierte Animationen
 * - Angepasste Komponenten-Styles
 */

/* MBOVIA CSS - Mobile First Design */

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

/* Raleway Font Stack */
body {
    font-family: 'Raleway', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Typography */
.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #8B4513;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #D2691E);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2em;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5dc 0%, #f0e68c 50%, #daa520 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/mbovia-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(210, 105, 30, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.mbovia-brand {
    background: linear-gradient(45deg, #8B4513, #D2691E, #CD853F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-slogan {
    color: #8B4513;
    font-weight: 600;
    font-size: 0.8em;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.4em;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.primary-cta {
    background: linear-gradient(45deg, #D2691E, #FFCC99);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.secondary-cta {
    background: linear-gradient(45deg, #CD853F, #DAA520);
    color: white;
    box-shadow: 0 4px 15px rgba(205, 133, 63, 0.3);
}

.cta-text {
    display: block;
    font-size: 1.1em;
    margin-bottom: 0.3rem;
}

.cta-subtext {
    display: block;
    font-size: 0.9em;
    opacity: 0.9;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    order: 2;
}

.about-description {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-vision {
    font-size: 1.1em;
    color: #8B4513;
    font-weight: 500;
    line-height: 1.6;
}

.about-image {
    order: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ead6 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.value-image {
    margin-bottom: 1rem;
}

.value-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.value-image img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.value-icon {
    font-size: 3em;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.5em;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5em;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Timeline Section */
.timeline-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0ead6 0%, #f5f5dc 100%);
}

.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline-line {
    display: none;
}

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
    margin-right: 3rem;
    margin-left: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
    margin-left: 3rem;
    margin-right: 0;
}

.timeline-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #8B4513, #D2691E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.timeline-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.timeline-icon .icon {
    font-size: 2em;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    border: 1px solid rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

/* Timeline Status Styles */
.timeline-item.completed .timeline-content {
    border: 3px solid #228B22;
    background: rgba(34, 139, 34, 0.05);
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.2);
}

.timeline-item.current .timeline-content {
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.1), rgba(50, 205, 50, 0.15));
    border: 2px solid rgba(34, 139, 34, 0.3);
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.2);
}

.timeline-item.completed .timeline-icon {
    background: #228B22;
    color: white;
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.4);
}

.timeline-item.current .timeline-icon {
    background: linear-gradient(135deg, #32CD32, #228B22);
    color: white;
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.4);
    animation: gentlePulse 2s ease-in-out infinite;
}

@keyframes gentlePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}


.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

/* Pfeile zwischen Timeline-Items */
.timeline-item::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #8B4513;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-date {
    color: #8B4513;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    color: #8B4513;
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.timeline-preview {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.timeline-details-btn {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.timeline-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Timeline Modal */
.timeline-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.timeline-modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.timeline-modal-close {
    color: #999;
    float: right;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 1001;
}

.timeline-modal-close:hover {
    color: #8B4513;
}

.timeline-modal h3 {
    color: #8B4513;
    font-size: 1.8em;
    margin-bottom: 1rem;
    border-bottom: 3px solid #D2691E;
    padding-bottom: 0.5rem;
}

.timeline-modal .modal-date {
    color: #D2691E;
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-modal p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-modal ul {
    color: #666;
    line-height: 1.7;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.timeline-modal ul li {
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f6f0, #f0ead6);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #8B4513;
    margin: 1.5rem 0;
}

.highlight-box h4 {
    color: #8B4513;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Mobile Timeline Styles */
@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }
    
    .timeline-item::after {
        left: 30px; /* Anpassung für Mobile-Layout */
        transform: none;
    }
    
    .timeline-item {
        flex-direction: row !important;
        margin-bottom: 2rem;
    }
    
    .timeline-item .timeline-content {
        text-align: left !important;
        margin-left: 2rem !important;
        margin-right: 0 !important;
    }
    
    .timeline-item .timeline-content::before {
        left: -30px !important;
        right: auto !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
        width: 60px;
        height: 60px;
    }
    
    .timeline-icon .icon {
        font-size: 1.5em;
    }
    
    .timeline-modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

/* Timeline Notice Styles */
.timeline-notice {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(210, 105, 30, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 69, 19, 0.1);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.05);
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-icon {
    font-size: 1.5em;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.notice-text h4 {
    color: #8B4513;
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 0.8rem 0;
}

.notice-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .timeline-notice {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .notice-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .notice-icon {
        align-self: center;
        margin-top: 0;
    }
    
    .notice-text {
        text-align: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border: 1px solid rgba(139, 69, 19, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(139, 69, 19, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: rgba(139, 69, 19, 0.02);
}

.faq-question h3 {
    font-size: 1.2em;
    color: #8B4513;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5em;
    color: #8B4513;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Affiliate CTA Section */
.affiliate-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%);
    color: white;
    text-align: center;
}

.affiliate-content {
    max-width: 600px;
    margin: 0 auto;
}

.affiliate-content .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.affiliate-content .section-title::after {
    background: rgba(255, 255, 255, 0.3);
}

.affiliate-description {
    font-size: 1.2em;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.affiliate-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.affiliate-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ead6 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
}

.contact-icon {
    font-size: 2em;
    width: 50px;
    text-align: center;
}

.contact-details h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details p {
    color: #666;
    margin: 0;
}

.newsletter-signup {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
    text-align: center;
}

.newsletter-signup h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-signup p {
    color: #666;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 1rem;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #8B4513;
}

.newsletter-button {
    background: linear-gradient(45deg, #8B4513, #D2691E);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

/* Footer */
.footer {
    background: #2d1a1a;
    color: #ccc;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    text-align: center;
}

.footer-title {
    font-size: 1.8em;
    color: #D2691E;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(210, 105, 30, 0.2);
    border-radius: 50%;
    color: #D2691E;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D2691E;
    color: white;
    transform: translateY(-2px);
}

.footer-subtitle {
    color: #D2691E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links span {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: default;
}

.footer-links a:hover,
.footer-links span:hover {
    color: #D2691E;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-copyright {
    color: #999;
    font-size: 0.9em;
}

.footer-divider {
    margin: 0 0.5rem;
    color: #666;
}

.footer-link {
    color: #D2691E;
    text-decoration: none;
}

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

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    .hero-title {
        font-size: 4em;
    }

    .hero-subtitle {
        font-size: 1.6em;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        max-width: 700px;
    }

    .community-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .community-text {
        order: 1;
    }

    .community-image {
        order: 2;
    }

    .contact-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .section-title {
        font-size: 3em;
    }

    .hero-title {
        font-size: 4.5em;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        max-width: 800px;
    }

    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: row;
        max-width: 500px;
    }

    .newsletter-form input {
        flex: 1;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        padding: 0 60px;
    }

    .hero-title {
        font-size: 5em;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus States for Accessibility */
.cta-button:focus,
.newsletter-button:focus,
.faq-question:focus {
    outline: 2px solid #D2691E;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-section,
    .affiliate-cta-section,
    .footer {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .section-title {
        color: black;
    }
} 