/* CSS Design System for Sigma Kreditbank AG Clone */

/* Reset & Base Config */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-size: 1.6rem;
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #242424;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

ul {
    list-style: none;
}

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

.invisible {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* 1. Header Styles */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Upper Header (Meta Nav) */
.upper-header {
    background-color: #f8f9fa;
    padding: 8px 20px;
    border-bottom: 1px solid #e9ecef;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

.meta-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-link-cta {
    background-color: #b02a60;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(176, 42, 96, 0.15);
}

.meta-link-cta:hover {
    background-color: #d94c86;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(176, 42, 96, 0.25);
}

.meta-link-cta:active {
    transform: translateY(0);
}

.meta-link-help {
    color: #242424;
}

.meta-link-help:hover {
    color: #b02a60;
}

.meta-separator {
    color: #dee2e6;
}

/* Inner Header */
.inner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-svg,
.logo-img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* Navigation Menu (Desktop) */
.menu {
    display: flex;
    align-items: center;
}

.mod_navigation .level_1 {
    display: flex;
    align-items: center;
    gap: 25px;
}

.mod_navigation .level_1 > li {
    position: relative;
    padding: 10px 0;
}

.mod_navigation .level_1 > li > a,
.mod_navigation .level_1 > li > strong {
    font-size: 1.5rem;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all 0.2s ease;
}

.mod_navigation .level_1 > li:hover > a,
.mod_navigation .level_1 > li:hover > strong,
.mod_navigation .level_1 > li.active > strong {
    color: #b02a60;
}

.mod_navigation .level_1 > li.active > strong {
    border-bottom-color: #b02a60;
}

/* Desktop Dropdown Submenus */
.mod_navigation .level_2 {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 3px solid #b02a60;
    border-radius: 0 0 4px 4px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    padding: 10px 0;
    z-index: 10;
}

.mod_navigation .level_1 > li:hover .level_2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mod_navigation .level_2 li {
    padding: 0;
}

.mod_navigation .level_2 a,
.mod_navigation .level_2 strong {
    display: block;
    padding: 10px 20px;
    font-size: 1.35rem;
    font-weight: 400;
    color: #495057;
    transition: background-color 0.2s, color 0.2s;
    text-align: left;
}

.mod_navigation .level_2 a:hover,
.mod_navigation .level_2 strong.active {
    background-color: #f8f9fa;
    color: #b02a60;
    font-weight: 500;
}

/* Burger Button */
.navi-burger {
    display: none;
    cursor: pointer;
    color: #b02a60;
    padding: 8px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.25s ease, transform 0.15s ease, color 0.25s ease;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
}

.navi-burger svg {
    display: block;
    transition: stroke-width 0.2s ease;
}

.navi-burger:hover {
    background-color: rgba(176, 42, 96, 0.08);
    transform: scale(1.05);
}

.navi-burger:hover svg {
    stroke-width: 2.5;
}

.navi-burger:active {
    transform: scale(0.95);
}

/* 2. Hero Area */
.header-area {
    position: relative;
    overflow: hidden;
}

.header-image-container {
    position: relative;
    height: 480px;
}

.header-mountains-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.text-container__inner {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    pointer-events: auto;
}

.pink-hero-box {
    background-color: rgba(176, 42, 96, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    max-width: 800px;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: slideUpFade 0.6s ease-out;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 15px;
}

.hero-desc {
    font-size: 1.8rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.95;
}

/* Animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3. Main Calculator Area */
.main-container {
    padding: 60px 0;
    background-color: #fcfcfc;
}

.section-header-container {
    margin-bottom: 40px;
    text-align: center;
}

.ce_headline {
    font-size: 3.2rem;
    font-weight: 700;
    color: #b02a60;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.ce_headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #b02a60;
    border-radius: 2px;
}

/* ==========================================================================
   Loan Calculator CSS Styles
   ========================================================================== */

:root {
    --accent: #b02a60;
    --gold: #b02a60;
    --gold-hover: #d94c86;
    --gold-light: rgba(176, 42, 96, 0.08);
    --gold-glow: rgba(176, 42, 96, 0.3);
    --muted: #6c757d;
    --bg: #fffcfd;
    --card: #ffffff;
    --border: #f1f3f5;
    --text: #242424;
    --text-light: #495057;
    --success: #10b981;
    --error: #ef4444;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(176, 42, 96, 0.05);
}

.calc-card {
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 50px;
    border-top: 5px solid var(--gold);
    box-sizing: border-box;
}

.calc-card h3 {
    font-family: Inter, Segoe UI, system-ui, -apple-system, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.calc-card .pill {
    background: var(--gold-light);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: stretch;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
}

.calc-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

/* Custom styled Range Sliders */
.calc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

/* Webkit browser thumb styling */
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.1s, background-color 0.2s;
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    background-color: var(--gold-light);
}

/* Firefox browser thumb styling */
.calc-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.1s, background-color 0.2s;
}

.calc-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    background-color: var(--gold-light);
}

.calc-limits {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    color: var(--muted);
    font-weight: 400;
}

/* Output Display Box */
.calc-outputs {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(176, 42, 96, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(176, 42, 96, 0.1);
}

.calc-row:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.calc-row-label {
    font-size: 1.4rem;
    color: var(--text-light);
    font-weight: 500;
}

.calc-row-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

.calc-row-value--large {
    font-size: 2.4rem;
    color: var(--gold);
}

.calc-apply-container {
    margin-top: 10px;
}

.btn-calc-apply {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--gold);
    color: #ffffff;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px var(--gold-glow);
    transition: var(--transition);
}

.btn-calc-apply:hover {
    background-color: var(--gold-hover);
    box-shadow: 0 6px 18px var(--gold-glow);
    transform: translateY(-2px);
}

/* 6. Terms and Conditions CSS */
.conditions-wrapper {
    margin-top: 60px;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.conditions-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #b02a60;
    margin-bottom: 25px;
    border-bottom: 2px solid #f1f3f5;
    padding-bottom: 12px;
    text-align: center;
}

.conditions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.conditions-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #8e9aa6;
}

.conditions-card.highlight {
    background-color: #fff9fb;
    border-left-color: #b02a60;
}

.conditions-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: #242424;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.conditions-card.highlight .conditions-subtitle {
    color: #b02a60;
}

.badge {
    font-size: 1.1rem;
    font-weight: 500;
    background-color: #b02a60;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.conditions-list li {
    font-size: 1.35rem;
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    line-height: 1.5;
}

.conditions-list li::before {
    content: '•';
    color: #b02a60;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.conditions-list li:last-child {
    margin-bottom: 0;
}

/* 7. Footer Area Styles */
.main-footer {
    background-color: #1a1a1a;
    color: #a0a0a0;
    padding: 40px 0;
    font-size: 1.3rem;
    border-top: 4px solid #b02a60;
}

.footer-split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright-text {
    color: #ffffff;
    font-weight: 500;
}

.address-block p {
    line-height: 1.5;
}

.simple-nav {
    display: flex;
    gap: 20px;
}

.simple-nav a {
    color: #a0a0a0;
    font-weight: 500;
}

.simple-nav a:hover {
    color: #ffffff;
}

/* 8. Mobile Slide Drawer CSS */
.navigation-area {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: -15px 0 45px rgba(15, 23, 42, 0.15);
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px 24px;
    overflow-y: auto;
}

.navigation-area.active {
    right: 0;
}

.navigation-area .inside {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.navigation-area .inside::before {
    content: 'SIGMA KREDITBANK';
    font-size: 1.3rem;
    font-weight: 700;
    color: #b02a60;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.navigation-area .cross-icon {
    position: absolute;
    top: 25px;
    right: 24px;
    cursor: pointer;
    color: #868e96;
    transition: transform 0.25s ease, color 0.25s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navigation-area .cross-icon:hover {
    transform: rotate(90deg) scale(1.15);
    color: #b02a60;
}

/* Menu items in side drawer */
.navigation-area .mod_navigation {
    flex-grow: 1;
    margin-bottom: 20px;
}

.navigation-area .level_1 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.navigation-area .level_1 > li {
    border-bottom: none;
    padding: 0;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.navigation-area.active .level_1 > li {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navigation-area.active .level_1 > li:nth-child(1) { transition-delay: 0.08s; }
.navigation-area.active .level_1 > li:nth-child(2) { transition-delay: 0.14s; }
.navigation-area.active .level_1 > li:nth-child(3) { transition-delay: 0.20s; }
.navigation-area.active .level_1 > li:nth-child(4) { transition-delay: 0.26s; }
.navigation-area.active .level_1 > li:nth-child(5) { transition-delay: 0.32s; }

.navigation-area .level_1 a,
.navigation-area .level_1 strong {
    font-size: 1.5rem;
    font-weight: 600;
    color: #495057;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.015);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-sizing: border-box;
}

.navigation-area .level_1 a:hover,
.navigation-area .level_1 strong:hover {
    background-color: rgba(176, 42, 96, 0.06);
    color: #b02a60;
    padding-left: 20px;
}

/* Submenus in Drawer */
.navigation-area .mobile-toggler {
    display: inline-block;
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.navigation-area .mobile-toggler::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #b02a60;
    border-bottom: 2px solid #b02a60;
    position: absolute;
    top: 35%;
    left: 30%;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), top 0.3s ease;
}

.navigation-area li.open > a .mobile-toggler::after,
.navigation-area li.open > strong .mobile-toggler::after {
    transform: rotate(-135deg);
    top: 45%;
}

.navigation-area .level_2 {
    position: static !important;
    transform: none !important;
    visibility: visible !important;
    left: auto !important;
    right: auto !important;
    min-width: auto;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0 0 0 15px;
    margin: 5px 0 5px 10px;
    border-left: 2px solid rgba(176, 42, 96, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: auto;
}

/* Override desktop hover specificity inside the drawer */
.navigation-area .level_1 > li:hover .level_2 {
    transform: none !important;
    opacity: 0;
    visibility: visible !important;
}

.navigation-area .level_1 > li.open:hover .level_2 {
    opacity: 1;
}

.navigation-area li.open .level_2 {
    max-height: 300px;
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 5px;
}

.navigation-area .level_2 a,
.navigation-area .level_2 strong {
    font-size: 1.35rem;
    font-weight: 400;
    color: #6c757d;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: transparent;
    transition: all 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.navigation-area .level_2 a:hover {
    background-color: rgba(176, 42, 96, 0.03);
    color: #b02a60;
    padding-left: 16px;
}

.navigation-area .level_2 strong.active {
    color: #b02a60;
    font-weight: 600;
    background-color: rgba(176, 42, 96, 0.06);
}

/* Backdrop for Mobile Menu Drawer */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Drawer CTA Button */
.mobile-drawer-cta {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.drawer-cta-btn {
    display: block;
    width: 100%;
    background-color: #b02a60;
    color: #ffffff !important;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(176, 42, 96, 0.2);
    transition: all 0.25s ease;
}

.drawer-cta-btn:hover {
    background-color: #d94c86;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(176, 42, 96, 0.3);
}

.drawer-cta-btn:active {
    transform: translateY(0);
}

/* ==========================================================================
   Media Queries for Responsiveness
   ========================================================================== */

@media (max-width: 991px) {
    /* Menu hides on header, burger displays */
    .main-header .mod_navigation {
        display: none;
    }
    
    .navi-burger {
        display: flex;
    }
    
    .inner-header {
        padding: 12px 15px;
        flex-wrap: nowrap;
    }
    
    .logo-img {
        max-height: 32px;
    }
    
    /* Hero Area responsive adjustments */
    .header-image-container {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .header-mountains-img {
        height: 250px;
    }
    
    .text-container {
        position: relative;
        background-color: #b02a60;
        padding: 0;
    }
    
    .text-container__inner {
        padding-bottom: 0;
    }
    
    .pink-hero-box {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        padding: 30px 20px;
        background-color: #b02a60;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-desc {
        font-size: 1.4rem;
    }
    
    /* Shift main content padding */
    .main-container {
        padding: 40px 0;
    }
    
    .ce_headline {
        font-size: 2.6rem;
    }
    
    /* Calculator mobile layout stacks */
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .calc-card {
        padding: 30px 20px;
    }
    
    /* Conditions split layout to single column */
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .conditions-wrapper {
        padding: 25px;
        margin-top: 40px;
    }
    
    .footer-split {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .simple-nav {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .upper-header {
        justify-content: center;
        text-align: center;
        padding: 8px 10px;
    }
    
    .meta-nav {
        justify-content: center;
        gap: 12px;
    }

    .header-image-container {
        height: auto;
    }
    
    .header-mountains-img {
        height: 160px;
    }
    
    .logo-svg {
        max-width: 250px;
    }
    
    .logo-img {
        max-height: 25px;
    }
    
    .inner-header {
        padding: 8px 10px;
    }
    
    /* Calculator narrow screen overrides */
    .calc-card {
        padding: 20px 15px;
        margin-bottom: 35px;
    }
    .calc-card h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .calc-card .pill {
        font-size: 1.1rem;
        padding: 3px 10px;
        margin-right: 8px;
    }
    .calc-label-row {
        font-size: 1.4rem;
    }
    .calc-value {
        font-size: 1.6rem;
    }
    .calc-limits {
        font-size: 1.1rem;
    }
    .calc-outputs {
        padding: 20px 15px;
        gap: 15px;
    }
    .calc-row {
        padding-bottom: 12px;
    }
    .calc-row-label {
        font-size: 1.3rem;
    }
    .calc-row-value {
        font-size: 1.6rem;
    }
    .calc-row-value--large {
        font-size: 2.0rem;
    }
    .btn-calc-apply {
        padding: 12px;
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Advantages Grid CSS
   ========================================================================== */

.advantages-intro-text {
    font-size: 1.8rem;
    line-height: 1.7;
    color: #495057;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.ce_rsce_image-grid.main-advantage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.advantage-content {
    background: #ffffff;
    border: 1px solid #f1f3f5;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.advantage-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(176, 42, 96, 0.06);
    border-color: rgba(176, 42, 96, 0.15);
}

.euro-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(176, 42, 96, 0.06);
    color: #b02a60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.advantage-content:hover .euro-icon {
    background-color: #b02a60;
    color: #ffffff;
}

.advantage-content h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #242424;
    line-height: 1.45;
    margin: 0;
}

/* Adjust grid layout on medium/small viewports */
@media (max-width: 991px) {
    .ce_rsce_image-grid.main-advantage {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .advantages-intro-text {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    .ce_rsce_image-grid.main-advantage {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .advantage-content {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   FAQ Section CSS
   ========================================================================== */

.faq-wrapper {
    margin-top: 20px;
    margin-bottom: 60px;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #f1f3f5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(176, 42, 96, 0.15);
    box-shadow: 0 8px 25px rgba(176, 42, 96, 0.04);
}

.faq-item.active {
    border-color: rgba(176, 42, 96, 0.3);
    box-shadow: 0 10px 30px rgba(176, 42, 96, 0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 22px 28px;
    text-align: left;
    font-size: 1.7rem;
    font-weight: 600;
    color: #242424;
    cursor: pointer;
    gap: 20px;
    font-family: inherit;
    transition: color 0.25s ease;
}

.faq-item.active .faq-question {
    color: #b02a60;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b02a60;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 28px 22px 28px;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #495057;
}

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

/* Adjust FAQ on mobile devices */
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1.5rem;
    }
    .faq-answer-content {
        padding: 0 20px 18px 20px;
        font-size: 1.4rem;
    }
}

/* ==========================================================================
   Liechtenstein Section CSS
   ========================================================================== */

.liechtenstein-wrapper {
    margin-top: 20px;
    margin-bottom: 80px;
}

.liechtenstein-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.liechtenstein-image-card {
    background: #ffffff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.liechtenstein-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(176, 42, 96, 0.05);
}

.castle-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 5 / 3;
}

.liechtenstein-info-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    border-top: 5px solid var(--gold);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: var(--transition);
}

.liechtenstein-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(176, 42, 96, 0.05);
}

.flag-container {
    max-width: 140px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    align-self: flex-start;
}

.liechtenstein-flag-svg {
    display: block;
    width: 100%;
    height: auto;
}

.liechtenstein-text-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.liechtenstein-text-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Responsive styles for Liechtenstein section */
@media (max-width: 991px) {
    .liechtenstein-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .liechtenstein-info-card {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   Holidays Section CSS
   ========================================================================== */

.holidays-wrapper {
    margin-top: 20px;
    margin-bottom: 80px;
}

.holidays-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.holidays-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.holiday-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 16px 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.01);
    transition: var(--transition);
}

.holiday-row:hover {
    border-color: rgba(176, 42, 96, 0.15);
    box-shadow: 0 5px 15px rgba(176, 42, 96, 0.03);
    transform: translateX(3px);
}

.holiday-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
}

.holiday-date {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Adjust holidays table on mobile devices */
@media (max-width: 768px) {
    .holiday-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 20px;
    }
}

/* ==========================================================================
   Warum SIGMA Section CSS
   ========================================================================== */

.warum-sigma-wrapper {
    margin-top: 20px;
    margin-bottom: 80px;
}

.warum-sigma-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.warum-sigma-card {
    background: #ffffff;
    border: 1px solid #f1f3f5;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.warum-sigma-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(176, 42, 96, 0.05);
    border-color: rgba(176, 42, 96, 0.15);
}

.warum-sigma-card .euro-icon {
    flex-shrink: 0;
}

.warum-sigma-card p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #495057;
    margin: 0;
}

.warum-sigma-card p strong {
    color: #b02a60;
    font-weight: 600;
}

/* Premium CTA card */
.warum-sigma-card.cta-card {
    background: linear-gradient(135deg, #fffcfd 0%, #fff5f8 100%);
    border: 1px dashed rgba(176, 42, 96, 0.3);
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 40px;
    gap: 15px;
}

.warum-sigma-card.cta-card:hover {
    border-style: solid;
    border-color: #b02a60;
}

.warum-sigma-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #b02a60;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.6rem;
    margin-top: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(176, 42, 96, 0.2);
}

.warum-sigma-cta-btn:hover {
    background-color: #d94c86;
    box-shadow: 0 6px 18px rgba(176, 42, 96, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

@media (max-width: 768px) {
    .warum-sigma-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 15px;
    }
}

