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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

h1, h2, h3 {
    font-weight: 600;
    color: #222;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.header .navbar {
    padding: 0.75rem 1rem;
}

.header .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFC107;
}

.header .navbar-brand:hover {
    color: #e6ac00;
}

.header .nav-link {
    color: #333;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.header .nav-link:hover {
    color: #FFC107;
}

.navbar-toggler {
    border-color: #FFC107;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='%23FFC107' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    padding-top: 100px;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.85);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.75rem;
    color: #222;
}

.hero-content p {
    font-size: 1.15rem;
    color: #555;
}

.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: #fff;
}

.section:nth-child(odd) {
    background-color: #fafafa;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    display: inline-block;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFC107;
}

.content-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
}

.content-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.content-image {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}

.content-image-small {
    max-width: 300px;
    width: 100%;
}

.two-column {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.two-column.reverse {
    flex-direction: row-reverse;
}

.two-column .text-col {
    flex: 1;
}

.two-column .image-col {
    flex: 0 0 40%;
}

@media (max-width: 768px) {
    .two-column,
    .two-column.reverse {
        flex-direction: column;
    }
    
    .two-column .image-col {
        flex: 0 0 100%;
        width: 100%;
    }
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.info-table th,
.info-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.info-table th {
    background-color: #FFC107;
    color: #222;
    font-weight: 600;
}

.info-table tr:hover {
    background-color: #fffbeb;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #FFC107;
    border-radius: 50%;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card-body {
    padding: 1.5rem;
}

.product-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #fffbeb;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFC107;
    border-radius: 50%;
    color: #222;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.25rem 1.25rem;
    max-height: 500px;
}

.glossar-item {
    padding: 1.5rem;
    background: #fff;
    border-left: 4px solid #FFC107;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.glossar-item h3 {
    color: #FFC107;
    margin-bottom: 0.5rem;
}

.cta-section {
    background: linear-gradient(135deg, #fffbeb 0%, #fff9e6 100%);
    text-align: center;
    padding: 60px 0;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #FFC107;
    color: #222;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: #e6ac00;
    color: #222;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,193,7,0.4);
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form .form-control {
    padding: 0.875rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #FFC107;
    box-shadow: 0 0 0 3px rgba(255,193,7,0.2);
    outline: none;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.disclaimer-box {
    background: #fffbeb;
    border: 1px solid #FFC107;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.disclaimer-box h3 {
    color: #b8860b;
    margin-bottom: 1rem;
}

.footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer h3 {
    color: #FFC107;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.footer a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FFC107;
}

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

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

.footer-links a {
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
}

.educational-notice {
    background-color: #333;
    padding: 1rem;
    text-align: center;
    margin-top: 1rem;
    border-radius: 8px;
}

.educational-notice p {
    color: #FFC107;
    font-size: 0.85rem;
    margin: 0;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    max-height: 90vh;
    width: 90%;
    overflow-y: auto;
    position: relative;
    padding: 2rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: #FFC107;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: #222;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: #e6ac00;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.modal-content p,
.modal-content li {
    color: #555;
    line-height: 1.8;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1.5rem;
    z-index: 3000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: block;
}

.cookie-banner h3 {
    color: #FFC107;
    margin-bottom: 1rem;
}

.cookie-banner p {
    color: #ccc;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: #FFC107;
    color: #222;
}

.cookie-btn-accept:hover {
    background: #e6ac00;
}

.cookie-btn-decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn-decline:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: #FFC107;
    border: 1px solid #FFC107;
}

.cookie-btn-settings:hover {
    background: rgba(255,193,7,0.1);
}

.success-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 2rem 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 4000;
    text-align: center;
}

.success-popup.active {
    display: block;
}

.success-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 3500;
}

.success-popup-overlay.active {
    display: block;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #222;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        margin-top: 0.5rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
}
