:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --background-color: #fcfcfc;
    --text-color: #333333;
    --white: #ffffff;
    --light-grey: #f0f0f0;
    --dark-grey: #7f8c8d;
    --font-family: 'Inter', sans-serif;
    --border-radius: 8px;
    --transition-speed: 0.3s;
}

/* Reset and Base Styles */
.website-html {
    scroll-behavior: smooth;
}

.website-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.hero-image,
.about-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.brand-logo,
.nav-link,
.header-cta-btn,
.mobile-nav-link,
.mobile-cta-btn,
.primary-cta-btn,
.footer-link {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

.advertisement-text,
.hero-subline,
.about-text,
.feature-text,
.policy-text,
.footer-text,
.footer-advertisement-note,
.footer-consumer-notice,
.copyright-text,
.impressum-text,
.cookie-text,
.loader-title,
.hero-headline,
.section-title,
.modal-title,
.feature-title,
.cookie-title,
.footer-heading,
.nav-links,
.mobile-nav-links,
.footer-links,
.nav-item,
.mobile-nav-item,
.footer-list-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-content {
    text-align: center;
}

.loader-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-grey);
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Header & Advertorial Bar */
.advertisement-top-bar {
    background-color: var(--light-grey);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.85rem;
    color: var(--dark-grey);
}

.advertisement-text {
    margin: 0;
}

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-navigation {
    display: flex;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.header-cta-btn,
.primary-cta-btn,
.mobile-cta-btn {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    transition: background-color var(--transition-speed) ease;
}

.header-cta-btn:hover,
.primary-cta-btn:hover,
.mobile-cta-btn:hover {
    background-color: #d35400;
    /* Darker orange */
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 25px;
}

.hamburger-bar {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Mobile Nav */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: right var(--transition-speed) ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.open {
    right: 0;
}

.mobile-nav-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.close-btn-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 30px;
}

.close-icon {
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-grey);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text-area {
    flex: 1;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #bdc3c7;
}

.hero-image-area {
    flex: 1;
}

.hero-image {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    max-height: 500px;
    width: 100%;
}

/* Sections */
.about-us-section,
.why-us-section,
.testimonials-section,
.faqs-section,
.return-policy-section {
    padding: 80px 20px;
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* About Us */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image-wrapper {
    flex: 1;
}

.about-image {
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text-wrapper {
    flex: 1;
}

.about-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

/* Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform var(--transition-speed);
}

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

.feature-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-text {
    color: #666;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--primary-color);
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

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

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--border-radius);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

/* Return Policy */
.return-policy-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-text {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.1rem;
}

/* FAQs */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform var(--transition-speed);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
    color: #666;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
    max-height: 200px;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-heading {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.footer-text {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #bdc3c7;
}

.footer-link:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-disclaimer-wrapper {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    text-align: center;
}

.footer-advertisement-note,
.footer-consumer-notice {
    color: #95a5a6;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 20px;
}

.copyright-text {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Impressum Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-speed), visibility var(--transition-speed);
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-color);
}

.modal-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.impressum-text {
    color: #555;
    margin-bottom: 5px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 450px;
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 4000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cookie-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    flex: 1;
    transition: background-color var(--transition-speed);
}

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--white);
}

.cookie-accept:hover {
    background-color: #1a252f;
}

.cookie-reject {
    background-color: var(--light-grey);
    color: #333;
}

.cookie-reject:hover {
    background-color: #ddd;
}

/* Responsive Design */
@media (max-width: 992px) {

    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .desktop-navigation {
        display: none;
    }

    .header-cta-btn {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .features-grid,
    .testimonials-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        gap: 30px;
        text-align: center;
    }
}