/* -----------------------------------
   Content Page Styles
   ----------------------------------- */

/* Globale Mobile-Optimierung */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
}

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

/* Breadcrumb */
.breadcrumb-area {
    /* padding: 120px 0 20px; */
    padding: 20px 0 20px;
    background-color: var(--white-colour);
}

.content-breadcrumb {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-breadcrumb li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    line-height: 24px;
    color: var(--main-colour-opacity);
}

.content-breadcrumb li:not(:last-child)::after {
    content: '/';
    color: #12121233;
}

.content-breadcrumb li a {
    color: var(--main-colour-opacity);
    transition: 0.3s all ease-in-out;
}

.content-breadcrumb li a:hover {
    color: var(--coral-red);
}

.content-breadcrumb li.active {
    color: var(--main-colour);
    font-weight: 500;
}

/* Footnotes */
.content-footnotes {
    margin-top: 60px;
    padding-top: 0px;
    border-top: none;
}

.footnotes-divider {
    display: none;
}

.footnotes-content a,
.content-footnotes a,
.footnotes-content a:link,
.footnotes-content a:visited {
    color: var(--main-colour-opacity) !important;
    text-decoration: none !important;
    font-style: italic !important;
}

.footnotes-content a:hover,
.content-footnotes a:hover {
    color: var(--main-colour-opacity) !important;
    text-decoration: underline !important;
    font-style: italic !important;
}

.footnotes-content u {
    text-decoration: underline;
    font-weight: 600;
}

.content-footnotes-section p {
    font-size: 14px !important;
    line-height: 32px !important;
    margin-bottom: 8px !important;
}

/* Text Section - Listen aus Markdown */
.content-text-section ul,
.content-text-section ol {
    margin: 20px 0 24px;
    padding-left: 0;
}

.content-text-section ul {
    list-style-type: disc;
    padding-left: 24px;
}

.content-text-section ol {
    list-style-type: decimal;
    padding-left: 24px;
}

.content-text-section li {
    font-size: 18px;
    line-height: 28px;
    color: var(--main-colour);
    margin-bottom: 12px;
    padding-left: 8px;
}

.content-text-section li strong {
    color: var(--main-colour);
    font-weight: 600;
}

/* Article Header */
.article-header-area {
    padding: 20px 0 60px;
}

.article-header-content {
    /* max-width: 920px; */
    margin: 0 auto;
}

.article-category {
    margin-bottom: 20px;
}

.category-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--soft-sage-green);
    color: var(--moss-green);
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
}

.article-title {
    font-weight: 700;
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1.2;
    color: var(--main-colour);
    margin-bottom: 32px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.author-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    font-size: 18px;
    color: var(--main-colour);
}

.publish-info {
    font-size: 16px;
    color: var(--main-colour-opacity);
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--cream-beige);
    color: var(--main-colour);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s all ease-in-out;
}

.share-btn:hover {
    background-color: var(--moss-green);
    color: var(--white-colour);
}

/* Article Content */
.article-content-area {
    padding-bottom: 80px;
}

/* Table of Contents */
.toc-wrapper {
    top: 100px;
}

.toc-title {
    font-weight: 600;
    font-size: 20px;
    color: var(--main-colour);
    margin-bottom: 20px;
    padding-left: 20px;
}

.table-of-contents {
    background-color: var(--cream-beige);
    border-radius: 16px;
    padding: 24px 20px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 16px;
}

.table-of-contents li:last-child {
    margin-bottom: 0;
}

.table-of-contents a {
    font-size: 16px;
    line-height: 24px;
    color: var(--main-colour-opacity);
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.3s all ease-in-out;
    border-left: 3px solid transparent;
}

.table-of-contents a:hover {
    background-color: #FFFFFF80;
    color: var(--main-colour);
}

.table-of-contents a.active {
    background-color: var(--white-colour);
    color: var(--moss-green);
    font-weight: 500;
    /* border-left-color: var(--moss-green); */
}

/* Article Body */
.article-body {
    /* max-width: 720px; */
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.article-body h2 {
    font-weight: 600;
    font-size: clamp(24px, 5vw, 36px);
    line-height: 1.3;
    color: var(--main-colour);
    margin: 48px 0 24px;
    scroll-margin-top: 100px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.article-body h3 {
    font-weight: 600;
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.3;
    color: var(--main-colour);
    margin: 36px 0 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.article-body h4 {
    font-weight: 600;
    font-size: clamp(18px, 3.5vw, 24px);
    line-height: 1.3;
    color: var(--main-colour);
    margin: 28px 0 16px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.article-body p {
    font-size: 20px;
    line-height: 32px;
    color: var(--main-colour-opacity);
    margin-bottom: 24px;
}

/* Lead Paragraph */
.lead-paragraph {
    margin-bottom: 40px;
}

.lead-paragraph p {
    font-size: 24px;
    line-height: 36px;
    color: var(--main-colour);
    font-weight: 400;
}

/* Lists */
.content-list {
    margin: 24px 0 32px;
    padding-left: 24px;
}

.content-list li {
    font-size: 20px;
    line-height: 32px;
    color: var(--main-colour-opacity);
    margin-bottom: 12px;
    position: relative;
    padding-left: 12px;
}

.content-list li::before {
    content: '•';
    position: absolute;
    left: -20px;
    color: var(--moss-green);
    font-weight: 700;
    font-size: 24px;
}

.content-list.ordered {
    counter-reset: list-counter;
}

.content-list.ordered li::before {
    counter-increment: list-counter;
    content: counter(list-counter) '.';
    font-size: 18px;
    font-weight: 600;
}

/* Blockquote */
.content-blockquote {
    margin: 40px 0;
    padding: 32px 40px;
    background-color: var(--Pale-Green);
    border-radius: 16px;
    border-left: 4px solid var(--moss-green);
    position: relative;
}

.content-blockquote p {
    font-size: 24px;
    line-height: 36px;
    color: var(--main-colour);
    font-style: italic;
    margin-bottom: 16px;
}

.content-blockquote cite {
    font-size: 18px;
    color: var(--main-colour-opacity);
    font-style: normal;
}

/* Info Boxes */
.info-box,
.warning-box,
.success-box,
.highlight-box {
    margin: 32px 0;
    padding: 24px 32px;
    border-radius: 16px;
}

.info-box-header,
.warning-box-header,
.success-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-box-header i,
.warning-box-header i,
.success-box-header i {
    font-size: 24px;
}

.info-box-header .box-title,
.warning-box-header .box-title,
.success-box-header .box-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    display: block;
}

.info-box {
    background-color: #E8F4FD;
    border: 1px solid #B8D9F5;
}

.info-box-header {
    color: #0066CC;
}

.warning-box {
    background-color: var(--Fair-Pink);
    border: 1px solid #FFDDD7;
}

.warning-box-header {
    color: var(--coral-red);
}

.success-box {
    background-color: var(--soft-sage-green);
    border: 1px solid #C5D9A8;
}

.success-box-header {
    color: var(--moss-green);
}

.highlight-box {
    background-color: var(--cream-beige);
    border-left: 4px solid var(--soft-gold);
}

.highlight-box .box-title {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--main-colour);
    display: block;
}

/* Listen in Boxen */
.info-box ul,
.info-box ol,
.warning-box ul,
.warning-box ol,
.success-box ul,
.success-box ol,
.highlight-box ul,
.highlight-box ol {
    margin: 16px 0;
    padding-left: 24px;
    list-style: none;
}

.info-box ul li,
.warning-box ul li,
.success-box ul li,
.highlight-box ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-box ul li::before,
.warning-box ul li::before,
.success-box ul li::before,
.highlight-box ul li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 10px;
}

.info-box ul li::before {
    color: #0066CC;
}

.warning-box ul li::before {
    color: var(--coral-red);
}

.success-box ul li::before {
    color: var(--moss-green);
}

.highlight-box ul li::before {
    color: var(--soft-gold);
}

.info-box ol li,
.warning-box ol li,
.success-box ol li,
.highlight-box ol li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-box li:last-child,
.warning-box li:last-child,
.success-box li:last-child,
.highlight-box li:last-child {
    margin-bottom: 0;
}

/* Figure and Images */
.content-figure {
    margin: 40px 0;
}

.content-figure img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
}

.content-figure figcaption {
    margin-top: 16px;
    font-size: 16px;
    line-height: 24px;
    color: var(--main-colour-opacity);
    text-align: center;
}

/* Tables */
.table-wrapper {
    margin: 32px 0;
    overflow-x: auto;
}

.content-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white-colour);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
}

.content-table caption {
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    color: var(--main-colour);
    caption-side: top;
    text-align: left;
}

.content-table th,
.content-table td {
    padding: 16px 20px;
    text-align: left;
}

.content-table th {
    background-color: var(--cream-beige);
    font-weight: 600;
    color: var(--main-colour);
    font-size: 16px;
}

.content-table td {
    font-size: 16px;
    color: var(--main-colour-opacity);
    border-bottom: 1px solid #F5F5F5;
}

.content-table tr:last-child td {
    border-bottom: none;
}

.content-table tr:hover td {
    background-color: #FAFAFA;
}

/* Definition List */
.definition-list {
    margin: 24px 0 32px;
}

.definition-list dt {
    font-weight: 600;
    font-size: 20px;
    color: var(--main-colour);
    margin-bottom: 8px;
}

.definition-list dd {
    font-size: 18px;
    line-height: 28px;
    color: var(--main-colour-opacity);
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 24px;
}

/* Steps Box */
.steps-box {
    margin: 32px 0;
    padding: 32px;
    background-color: var(--cream-white);
    border-radius: 16px;
}

.steps-box .box-title {
    margin-top: 0;
    margin-bottom: 24px;
    color: var(--main-colour);
    font-size: 20px;
    font-weight: 600;
    display: block;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E5E5;
}

.step-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--moss-green);
    color: var(--white-colour);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.step-content h4 {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--main-colour);
}

.step-content p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
}

/* CTA Content Box */
.cta-content-box {
    margin: 48px 0;
    padding: 40px;
    background-color: var(--moss-green);
    border-radius: 24px;
    text-align: center;
}

.cta-content-box h3 {
    color: var(--white-colour);
    margin: 0 0 16px;
}

.cta-content-box p {
    color: var(--white-colour);
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-content-box .btn-shape {
    background-color: var(--white-colour);
    color: var(--moss-green);
}

.cta-content-box .btn-shape:hover {
    background-color: var(--coral-red);
    color: var(--white-colour);
}

/* Author Box */
.author-box {
    margin-top: 60px;
    padding: 32px;
    background-color: var(--cream-beige);
    border-radius: 16px;
    display: flex;
    gap: 32px;
}

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

.author-box-content .author-box-title {
    display: block;
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--main-colour-opacity);
}

.author-box-content .author-name {
    display: block;
    margin: 0 0 16px;
    font-size: 24px;
    font-weight: 600;
    color: var(--main-colour);
}

.author-box-content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social a {
    width: 36px;
    height: 36px;
    background-color: var(--white-colour);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--main-colour);
    font-size: 16px;
    transition: 0.3s all ease-in-out;
}

.author-social a:hover {
    background-color: var(--moss-green);
    color: var(--white-colour);
}

/* Related Articles */
.related-articles-area {
    padding: 80px 0;
    background-color: var(--Pale-Green);
}

.related-title {
    text-align: center;
    margin-bottom: 48px;
}

.related-article-card {
    background-color: var(--white-colour);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
}

.related-article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
}

.article-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s all ease-in-out;
}

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

.article-category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background-color: var(--moss-green);
    color: var(--white-colour);
    font-size: 12px;
    font-weight: 500;
    border-radius: 100px;
}

.article-card-content {
    padding: 24px;
}

.article-card-content h4 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 28px;
}

.article-card-content h4 a {
    color: var(--main-colour);
    transition: 0.3s all ease-in-out;
}

.article-card-content h4 a:hover {
    color: var(--coral-red);
}

.article-card-content p {
    font-size: 16px;
    line-height: 24px;
    color: var(--main-colour-opacity);
    margin-bottom: 16px;
}

.article-card-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--main-colour-opacity);
}

.article-card-meta span {
    display: flex;
    align-items: center;
}

.article-card-meta span:not(:last-child)::after {
    content: '•';
    margin-left: 16px;
    color: #12121233;
}

/* Related Article Card - Simple (ohne Bild) */
.related-article-card-simple {
    background-color: var(--white-colour);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: 0.3s all ease-in-out;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
}

.related-article-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
}

.related-article-card-simple h4 {
    margin: 0 0 16px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--main-colour);
}

.related-article-card-simple h4 a {
    color: var(--main-colour);
    text-decoration: none;
    transition: 0.3s all ease-in-out;
}

.related-article-card-simple h4 a:hover {
    color: var(--moss-green);
}

.related-article-card-simple p {
    font-size: 16px;
    line-height: 26px;
    color: var(--main-colour-opacity);
    margin-bottom: 20px;
    flex-grow: 1;
}

.article-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--moss-green);
    transition: 0.3s all ease-in-out;
    text-decoration: none;
}

.article-read-link:hover {
    color: var(--coral-red);
    gap: 12px;
}

.article-read-link span {
    transition: 0.3s all ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .article-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .article-body h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .author-box img {
        margin: 0 auto;
    }
    
    .author-social {
        justify-content: center;
    }
}

/* Mobile Breadcrumb - standardmäßig versteckt, nur auf Mobile sichtbar */
.breadcrumb-mobile {
    display: none;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.content-breadcrumb-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0;
    font-size: 14px;
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.content-breadcrumb-mobile::-webkit-scrollbar {
    display: none;
}

.content-breadcrumb-mobile li {
    color: var(--main-colour-opacity, #666);
    flex-shrink: 0;
    white-space: nowrap;
}

.content-breadcrumb-mobile li + li::before {
    content: "›";
    margin: 0 8px;
    color: rgba(0, 0, 0, 0.25);
}

.content-breadcrumb-mobile a {
    text-decoration: none;
    color: var(--main-colour-opacity, #666);
    transition: color 0.2s ease;
}

.content-breadcrumb-mobile a:hover {
    color: var(--main-colour, #333);
}

.content-breadcrumb-mobile .active {
    color: var(--main-colour, #333);
    font-weight: 500;
}

@media (max-width: 767px) {
    .article-body {
        padding-left: 4px;
        padding-right: 4px;
    }
    
    /* Desktop-Breadcrumb auf Mobile verstecken */
    .breadcrumb-area.breadcrumb-desktop {
        display: none !important;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-title {
        font-size: clamp(24px, 8vw, 32px);
    }
    
    .content-blockquote {
        padding: 24px;
    }
    
    .content-blockquote p {
        font-size: 20px;
        line-height: 32px;
    }
    
    .info-box,
    .warning-box,
    .success-box,
    .highlight-box {
        padding: 16px 20px;
        margin: 24px 0;
    }
    
    .info-box ul,
    .warning-box ul,
    .success-box ul,
    .highlight-box ul {
        padding-left: 20px;
    }
    
    .info-box ul li,
    .warning-box ul li,
    .success-box ul li,
    .highlight-box ul li {
        padding-left: 24px;
        font-size: 16px;
    }
    
    .steps-box {
        padding: 24px;
    }
    
    .cta-content-box {
        padding: 32px 24px;
    }
    
    .content-table {
        font-size: 14px;
    }
    
    /* Mobile Breadcrumb anzeigen */
    .breadcrumb-mobile {
        display: block !important;
    }
}

/* TOC Wrapper - Immer sichtbar */
.toc-wrapper {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 1;  /* Geändert von 0 zu 1 */
    visibility: visible;  /* Geändert von hidden zu visible */
}

/* TOC Link Hover mit Animation */
.table-of-contents a {
    position: relative;
    transition: all 0.3s ease;
}

.table-of-contents a::before {
/*    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background-color: var(--moss-green);
    transition: height 0.3s ease;
    */
}

.table-of-contents a.active::before {
    height: 100%;
}

/* Scroll-Indicator für aktiven Link */
.table-of-contents a.active {
    padding-left: 20px;
}


/* Article Header Side-by-Side */
.article-header-side-image {
    padding: 20px 0 20px;
    background-color: var(--white-colour);
}

.article-header-side-image .article-header-content {
    max-width: none;
    margin: 0;
    padding-left: 40px;
}

/* Article Header Image */
.article-header-image {
    width: 100%;
    height: 100%;
}

.article-header-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 32px;
}

/* Title Anpassungen für Side-by-Side */
.article-header-side-image .article-title {
    font-size: 42px;
    line-height: 52px;
    margin-bottom: 28px;
}

.article-header-side-image .article-category {
    margin-bottom: 16px;
}

.article-header-side-image .article-meta {
    gap: 32px;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .article-header-side-image .article-header-content {
        padding-left: 30px;
    }
    
    .article-header-side-image .article-title {
        font-size: 36px;
        line-height: 44px;
    }
}

@media (max-width: 991px) {
    .article-header-side-image {
        padding: 120px 0 60px;
    }
    
    .article-header-side-image .article-header-content {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .article-header-image img {
        height: 300px;
        border-radius: 24px;
    }
    
    .article-header-side-image .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

@media (max-width: 767px) {
    .article-header-side-image {
        padding: 20px 0 10px;
    }
    
    .article-header-image img {
        height: 220px;
        border-radius: 16px;
    }
    
    .article-header-side-image .article-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    
    .article-header-side-image .article-header-content {
        padding-top: 32px;
    }
}

/* Anpassung des nachfolgenden Content-Bereichs für mehr Abstand */
.article-header-side-image + .article-content-area {
    padding-top: 40px;
}

@media (max-width: 991px) {
    .article-header-side-image + .article-content-area {
        padding-top: 20px;
    }
}

/* ===================================
   FAQ Section (Accordion)
   =================================== */
.faq-section {
    margin: clamp(2rem, 4vw, 3rem) 0;
}

.faq-item {
    background-color: var(--white-colour);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-item:hover {
    border-color: var(--moss-green);
    box-shadow: 0 4px 12px rgba(79, 113, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 2rem);
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 600;
    color: var(--main-colour);
    transition: all 0.3s ease-in-out;
}

.faq-question:hover {
    color: var(--moss-green);
}

.faq-question[aria-expanded="true"] {
    color: var(--moss-green);
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 16px;
    font-size: 18px;
    color: var(--moss-green);
    transition: transform 0.3s ease-in-out;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer-content {
    padding: 0 clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
    color: var(--main-colour-opacity);
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: var(--main-colour);
    font-weight: 600;
}

/* FAQ Section öffnet sich sanft */
.faq-item.active .faq-answer {
    max-height: 1000px; /* Großer Wert für Flexibilität */
}

@media (max-width: 767px) {
    .faq-question {
        font-size: 16px;
        padding: 16px 20px;
    }
    
    .faq-answer-content {
        padding: 0 20px 16px;
        font-size: 15px;
    }
    
    .faq-icon {
        margin-left: 12px;
        font-size: 16px;
    }
}

/* -----------------------------------
   CTA Box Styles
   ----------------------------------- */
.cta-box {
    background: linear-gradient(135deg, var(--moss-green) 0%, var(--dark-moss-green, #3d5500) 100%);
    border-radius: 16px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin: 2.5rem 0;
    text-align: center;
}

.cta-box-content h3 {
    color: var(--white-colour);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-box-content div {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-box-content div p:last-child {
    margin-bottom: 0;
}

.cta-box .btn-shape {
    display: inline-flex;
    align-items: center;
    background: var(--white-colour);
    color: var(--moss-green);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    margin-top: 0.5rem;
}

.cta-box .btn-shape:hover {
    background: var(--main-colour);
    color: var(--white-colour);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* -----------------------------------
   Cards Section Styles
   ----------------------------------- */
.cards-section {
    margin: 2.5rem 0 2rem;
}

a.content-card,
.content-card {
    background: var(--white-colour);
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: clamp(1.25rem, 3vw, 2rem);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.content-card:hover {
    border-color: var(--moss-green);
    box-shadow: 0 8px 24px rgba(79, 113, 0, 0.12);
    transform: translateY(-4px);
}

.content-card .card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lime-green) 0%, var(--moss-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.content-card .card-icon i {
    font-size: 24px;
    color: var(--white-colour);
}

.content-card .card-title {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--main-colour);
    margin-bottom: 0.75rem;
}

.content-card .card-description {
    color: var(--main-colour-opacity);
    font-size: clamp(0.9375rem, 1.6vw, 1rem);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.content-card .card-description p {
    margin: 0;
}

.content-card .card-link {
    display: inline-flex;
    align-items: center;
    color: var(--moss-green);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: all 0.3s ease-in-out;
    margin-top: auto;
}

.content-card .card-link:hover {
    color: var(--dark-moss-green, #3d5500);
}

.content-card .card-link i {
    transition: transform 0.3s ease-in-out;
}

.content-card .card-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .cards-section .row {
        gap: 1rem;
    }
    
    .content-card {
        padding: 1.25rem;
    }
    
    .content-card .card-icon {
        width: 48px;
        height: 48px;
    }
    
    .content-card .card-icon i {
        font-size: 20px;
    }
}