/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

.navbar {
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5530;
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    color: #333;
    font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #2c5530;
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 2.5rem;
    color: #2c5530;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: #2c5530;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #2c5530;
    color: #2c5530;
}

.cta-button.secondary:hover {
    background: #2c5530;
    color: white;
}

/* Grid Layouts */
.products-grid,
.features-grid,
.services-grid,
.testimonials-grid,
.blog-grid,
.team-grid,
.values-grid,
.categories-grid,
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Cards */
.product-card,
.service-card,
.testimonial-card,
.blog-card,
.team-member,
.value,
.feature,
.category-card,
.module {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.product-card:hover,
.service-card:hover,
.blog-card:hover,
.team-member:hover,
.value:hover,
.feature:hover,
.category-card:hover,
.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img,
.service-card img,
.team-member img,
.value img,
.feature img,
.category-card img,
.module img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.product-card h3,
.service-card h3,
.team-member h3,
.value h3,
.feature h3,
.category-card h3,
.module h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-card p,
.service-card p,
.team-member p,
.value p,
.feature p,
.category-card p,
.module p {
    color: #666;
    line-height: 1.6;
}

/* Testimonial Cards */
.testimonial-card {
    text-align: left;
    position: relative;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.testimonial-author strong {
    color: #2c5530;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Blog Cards */
.blog-card {
    text-align: left;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.blog-card h2 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    line-height: 1.3;
}

.read-more {
    color: #2c5530;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c5530;
    margin-bottom: 3rem;
}

/* Featured Products */
.featured-products {
    background: #f8f9fa;
}

/* Why Choose Us */
.why-choose-us {
    background: white;
}

/* About Content */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.about-text li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #666;
}

.about-image img {
    width: 100%;
    max-width: 300px;
}

/* Team Section */
.team-section {
    background: #f8f9fa;
}

/* Values Section */
.values-section {
    background: white;
}

/* Services */
.services-overview {
    background: #f8f9fa;
}

.service-features {
    background: white;
}

.learning-modules {
    background: #f8f9fa;
}

/* Contact */
.contact-section {
    background: #f8f9fa;
}

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

.contact-info h2,
.contact-form-section h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

/* Forms */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5530;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
}

.submit-button {
    background: #2c5530;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #1e3a21;
    transform: translateY(-2px);
}

/* Location Section */
.location-section {
    background: white;
}

.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.location-details h3,
.location-details h4 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.location-details ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.location-details li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #666;
}

/* CTA Sections */
.cta-section,
.contact-cta {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    text-align: center;
}

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

.cta-content img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    filter: brightness(0) invert(1);
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Thanks Page */
.thanks-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-content img {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.thanks-details,
.next-steps,
.social-media {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 2rem 0;
    text-align: left;
}

.thanks-details h2,
.next-steps h2,
.social-media h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.thanks-details ul {
    padding-left: 1.5rem;
}

.thanks-details li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #666;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.next-step {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.next-step img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.next-step h3 {
    color: #2c5530;
    margin-bottom: 1rem;
}

.step-button {
    background: #2c5530;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-block;
}

.step-button:hover {
    background: #1e3a21;
}

.social-links {
    text-align: center;
    margin-top: 1rem;
}

.social-links img {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Blog Article */
.blog-article {
    background: #f8f9fa;
    padding: 2rem 0;
}

.article-header {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
}

.breadcrumb {
    text-align: left;
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: #2c5530;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.article-header img {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #888;
    flex-wrap: wrap;
}

.article-header h1 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    line-height: 1.3;
}

.article-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.article-content {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.article-content h2 {
    color: #2c5530;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
    text-align: left;
}

.article-content h3 {
    color: #2c5530;
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.article-content h4 {
    color: #2c5530;
    margin: 1rem 0 0.5rem;
    font-size: 1.2rem;
}

.article-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #444;
}

.article-content ul li {
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-content img {
    width: 100px;
    height: 100px;
    margin: 2rem auto;
    display: block;
}

.article-content strong {
    color: #2c5530;
    font-weight: 600;
}

.article-cta {
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: brightness(0) invert(1);
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.article-footer {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.author-info {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.author-info img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.author-info h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #666;
    line-height: 1.6;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.article-navigation a {
    color: #2c5530;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid #2c5530;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.article-navigation a:hover {
    background: #2c5530;
    color: white;
}

/* Legal Pages */
.legal-content {
    background: #f8f9fa;
    padding: 2rem 0;
}

.legal-text {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: #2c5530;
    margin: 2rem 0 1rem;
    font-size: 1.6rem;
    text-align: left;
}

.legal-text h3 {
    color: #2c5530;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.legal-text h4 {
    color: #2c5530;
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #444;
}

.legal-text ul li {
    list-style: disc;
}

.legal-text ol li {
    list-style: decimal;
}

.legal-text a {
    color: #2c5530;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #1e3a21;
}

.legal-text strong {
    color: #2c5530;
    font-weight: 600;
}

.legal-text em {
    font-style: italic;
    color: #666;
}

/* Cookie Policy Tables */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.cookie-table th {
    background: #2c5530;
    color: white;
    font-weight: 600;
}

.cookie-table tbody tr:hover {
    background: #f8f9fa;
}

.cookie-settings {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
}

.settings-button {
    background: #2c5530;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.settings-button:hover {
    background: #1e3a21;
}

/* Footer */
footer {
    background: #2c5530;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section ul {
    margin-top: 1rem;
}

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a.active {
    color: white;
    text-decoration: underline;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 85, 48, 0.95);
    color: white;
    padding: 1rem;
    z-index: 10000;
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept {
    background: white;
    color: #2c5530;
}

.btn-accept:hover {
    background: #f0f0f0;
}

.btn-necessary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

.btn-customize {
    background: transparent;
    color: white;
    border: 1px solid white;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .products-grid,
    .features-grid,
    .services-grid,
    .testimonials-grid,
    .blog-grid,
    .team-grid,
    .values-grid,
    .categories-grid,
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .article-header,
    .article-content,
    .article-footer,
    .legal-text {
        padding: 2rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .article-navigation {
        flex-direction: column;
    }

    .author-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .article-header h1 {
        font-size: 1.8rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons button {
        width: 100%;
        text-align: center;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

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

.hidden {
    display: none !important;
}

/* Print Styles */
@media print {
    .cookie-banner,
    header,
    footer {
        display: none !important;
    }

    main {
        margin-top: 0 !important;
    }

    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a {
        text-decoration: underline;
    }

    .legal-text,
    .article-content {
        box-shadow: none !important;
        padding: 0 !important;
    }
}
