@font-face{
    font-family: 'Poppins Light';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins Bold';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins Light', sans-serif;
    
}

body {
    font-family: 'Poppins Light', sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
     
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 100px; /* Space for fixed header */
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern.svg') repeat;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Main container for layout */
.main-container {
    display: flex;
    max-width: 80vwpx;
    margin-bottom: 20px;
    padding: 20px;
    gap: 30px;
    flex: 1;
    height: calc(100vh - 120px); /* Full height minus header and padding */
    max-height: calc(100vh - 120px);
}

/* Left navigation panel */
.left-panel {
    width: 280px;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 30px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    height: fit-content;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.left-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-10px, -10px) rotate(5deg); }
}

.left-panel h2 {
    font-family: 'Poppins Bold', sans-serif;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-size: 1.4em;
    text-align: center;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 15px;
}

.nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 15px 20px;
    font-family: 'Poppins Light', sans-serif;
    font-size: 1em;
    font-weight: 500;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.nav-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover::after {
    opacity: 1;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(8px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.nav-btn.active {
    background: rgba(64, 64, 64, 0.8);
    backdrop-filter: blur(20px);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 25px rgba(64, 64, 64, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateX(8px);
}

.nav-btn:active {
    transform: translateX(3px) scale(0.98);
}

/* Right content panel */
.right-panel {
    flex: 1;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    height: 85vh;
    margin-bottom: 20px;
    
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    width: 80vw;
    position: relative;
}

/* Modern scrollbar for right panel */
.right-panel::-webkit-scrollbar {
    width: 8px;
}

.right-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.right-panel::-webkit-scrollbar-thumb {
    background: rgba(120, 119, 198, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.right-panel::-webkit-scrollbar-thumb:hover {
    background: rgba(120, 119, 198, 0.7);
}

.right-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(64, 64, 64, 0.6) 0%, 
        rgba(44, 44, 44, 0.8) 50%, 
        rgba(64, 64, 64, 0.6) 100%);
    background-size: 200% 100%;
    animation: shimmer 4s ease-in-out infinite;
    border-radius: 25px 25px 0 0;
}

.right-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: floatReverse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatReverse {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10px, 10px) rotate(-3deg); }
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

/* Progress indicator */
.content-progress {
    position: absolute;
    top: 15px;
    right: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #404040;
    font-weight: 500;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    z-index: 10;
}

.content-progress::before {
    content: '📍 ';
}

#content-container {
    flex: 1;
    overflow-y: auto;
    height: 100%;
    position: relative;
    margin:50px;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    max-height: none;
    overflow-y: visible;
}

.content-section.active {
    display: block;
}

.content-section h1 {
    font-family: 'Poppins Bold', sans-serif;
    color: #1a1a1a;
    font-size: 2.4em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.content-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        rgba(120, 119, 198, 0.8) 0%, 
        rgba(255, 119, 198, 0.8) 50%, 
        rgba(120, 219, 255, 0.8) 100%);
    border-radius: 2px;
    animation: shimmer 3s ease-in-out infinite;
}

.content-section h1::before {
    content: '📋';
    font-size: 1em;
    background: linear-gradient(45deg, rgba(120, 119, 198, 0.2), rgba(255, 119, 198, 0.2));
    padding: 15px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease-in-out infinite;
}

#about-content h1::before {
    content: '🏢';
}

#contact-content h1::before {
    content: '📞';
}

#privacy-content h1::before {
    content: '🔒';
}

#terms-content h1::before {
    content: '📄';
}

#donate-content h1::before {
    content: '💝';
}

.content-section h3 {
    font-family: 'Poppins Bold', sans-serif;
    color: #1a1a1a;
    font-size: 1.4em;
    margin: 25px 0 15px 0;
    position: relative;
    padding-left: 20px;
}

.content-section h3::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #404040;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.content-section h3:hover::before {
    transform: translateX(5px);
}

.content-section h4 {
    font-family: 'Poppins Bold', sans-serif;
    color: #404040;
    font-size: 1.1em;
    margin: 15px 0 8px 0;
}

.content-section p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 25px;
    list-style: none;
}

.content-section li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.content-section li::before {
    content: '•';
    color: #404040;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

.content-section ol {
    margin: 15px 0;
    padding-left: 25px;
    counter-reset: item;
    list-style: none;
}

.content-section ol li {
    counter-increment: item;
    padding-left: 25px;
    position: relative;
}

.content-section ol li::before {
    content: counter(item);
    background: #404040;
    color: white;
    font-weight: bold;
    font-size: 0.9em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 2px;
}

/* FAQ Items */
.faq-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid rgba(64, 64, 64, 0.6);
    padding: 20px;
    margin: 15px 0;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(64, 64, 64, 0.6), rgba(44, 44, 44, 0.8));
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.faq-item::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: top 0.6s ease;
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item:hover::after {
    top: 100%;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px) translateY(-2px);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.15em;
}

.faq-item h4::before {
    content: '▶';
    font-size: 0.8em;
    color: #404040;
    transition: transform 0.3s ease;
}

.faq-item:hover h4::before {
    transform: translateX(5px);
}

/* Enhanced Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    transform: rotate(45deg) scale(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-item:hover::before {
    transform: rotate(45deg) scale(1.2);
}

.contact-item:hover::after {
    opacity: 1;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.35);
}

.contact-item h3 {
    color: #404040;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item p {
    margin: 8px 0;
    position: relative;
    z-index: 1;
}

.contact-item p strong {
    color: #2c2c2c;
    font-weight: 600;
}

/* Legal Info */
.legal-info {
    background: rgba(0, 0, 0, 0.02);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
    border-left: 4px solid #e0e0e0;
    position: relative;
}

.legal-info::before {
    content: '⚖️';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5em;
    opacity: 0.3;
}

.legal-info h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-info h4::before {
    content: '●';
    color: #404040;
    font-size: 0.8em;
}

/* Enhanced Donate Options */
.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.donate-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.donate-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(0deg);
    transition: transform 0.8s ease;
}

.donate-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(64, 64, 64, 0.6), rgba(44, 44, 44, 0.8));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    border-radius: 0 0 20px 20px;
}

.donate-item:hover::before {
    transform: rotate(360deg);
}

.donate-item:hover::after {
    transform: scaleX(1);
}

.donate-item:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.35);
}

.donate-item h3 {
    color: #404040;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Enhanced Content Section Structure */
.content-section {
    padding: 40px;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: fadeIn 0.6s ease-out;
}

.content-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(120, 119, 198, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.content-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 119, 198, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Add visual decorators to each section */
.content-section:nth-child(even)::before {
    background: radial-gradient(circle, rgba(120, 219, 255, 0.08) 0%, transparent 70%);
}

.content-section:nth-child(odd)::after {
    background: radial-gradient(circle, rgba(255, 219, 120, 0.06) 0%, transparent 70%);
}

/* Enhanced fadeIn animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Section Cards */
.section-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid rgba(128, 128, 128, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #404040, transparent);
    transition: left 0.6s ease;
}

.section-card:hover::before {
    left: 100%;
}

.section-card:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(64, 64, 64, 0.1);
    transform: translateY(-3px);
}

/* Info boxes */
.info-box {
    background: linear-gradient(135deg, rgba(64, 64, 64, 0.05), rgba(128, 128, 128, 0.05));
    border-left: 4px solid #404040;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
    position: relative;
}

.info-box::before {
    content: 'ℹ️';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2em;
    opacity: 0.6;
}

.info-box.warning::before {
    content: '⚠️';
}

.info-box.success::before {
    content: '✅';
}

.info-box.tip::before {
    content: '💡';
}

/* Custom Scrollbar Styles */
.right-panel::-webkit-scrollbar,
#content-container::-webkit-scrollbar,
.content-section::-webkit-scrollbar {
    width: 8px;
}

.right-panel::-webkit-scrollbar-track,
#content-container::-webkit-scrollbar-track,
.content-section::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.right-panel::-webkit-scrollbar-thumb,
#content-container::-webkit-scrollbar-thumb,
.content-section::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.3);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.right-panel::-webkit-scrollbar-thumb:hover,
#content-container::-webkit-scrollbar-thumb:hover,
.content-section::-webkit-scrollbar-thumb:hover {
    background: rgba(128, 128, 128, 0.5);
}

/* Mobile responsiveness */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        padding: 15px;
        height: auto;
        max-height: none;
    }
    
    .left-panel {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
    
    .right-panel {
        height: calc(100vh - 300px);
        max-height: calc(100vh - 300px);
    }
    
    .nav-buttons {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .content-section h1 {
        font-size: 1.8em;
    }
    
    .contact-info,
    .donate-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
        background: #ffffff;
    }
    
    .main-container {
        flex-direction: column;
        padding: 15px;
        height: auto;
        max-height: none;
        gap: 0;
    }
    
    /* Hide left panel on mobile */
    .left-panel {
        display: none !important;
    }
    
    /* Make right panel full width and remove container styling */
    .right-panel {
        width: 100% !important;
        max-width: 100% !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        margin: 0 !important;
    }
    
    .right-panel::before,
    .right-panel::after {
        display: none !important;
    }
    
    /* Hide progress indicator on mobile */
    .content-progress {
        display: none !important;
    }
    
    /* Make content container full width with no restrictions */
    #content-container {
        margin: 0 !important;
        padding: 15px !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        width: 100% !important;
    }
    
    /* Content sections - remove all container styling */
    .content-section {
        max-height: none !important;
        overflow: visible !important;
        height: auto !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .content-section.active {
        display: block !important;
    }
    
    .content-section h1 {
        font-size: 1.8em !important;
        margin-bottom: 20px !important;
        text-align: center !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    .content-section h1::before {
        font-size: 0.8em !important;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 8px !important;
    }
    
    .content-section h1::after {
        background: linear-gradient(90deg, #333 0%, #666 100%) !important;
        height: 2px !important;
    }
    
    .content-section h3 {
        font-size: 1.2em !important;
        margin: 20px 0 12px 0 !important;
        color: #333 !important;
    }
    
    .content-section h4 {
        font-size: 1.1em !important;
        margin: 15px 0 8px 0 !important;
        color: #444 !important;
    }
    
    .content-section p {
        font-size: 1em !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
        color: #555 !important;
        text-align: left !important;
    }
    
    /* Remove all container styling from FAQ items */
    .faq-item {
        background: #f8f9fa !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid #e0e0e0 !important;
        border-left: 3px solid #333 !important;
        padding: 15px !important;
        margin: 12px 0 !important;
        border-radius: 8px !important;
        box-shadow: none !important;
    }
    
    .faq-item::before,
    .faq-item::after {
        display: none !important;
    }
    
    /* Remove container styling from donation section */
    .donate-info,
    .donate-contact,
    .partnership-info,
    .legal-info,
    .contact-info {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 15px 0 !important;
        border-radius: 0 !important;
    }
    
    /* Make donation payment section mobile-friendly */
    .donate-payment {
        background: #f8f9fa !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 12px !important;
        padding: 20px !important;
        margin: 20px 0 !important;
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }
    
    .donate-payment div:first-child {
        order: 2 !important;
    }
    
    .donate-payment div:last-child {
        order: 1 !important;
    }
    
    .donate-payment img {
        width: 120px !important;
        height: 120px !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    }
    
    .donate-payment a {
        padding: 12px 25px !important;
        font-size: 1em !important;
        border-radius: 20px !important;
        display: inline-block !important;
        width: auto !important;
        max-width: 100% !important;
        text-align: center !important;
    }
    
    /* Lists styling */
    .content-section ul,
    .content-section ol {
        margin: 12px 0 !important;
        padding-left: 20px !important;
    }
    
    .content-section li {
        margin-bottom: 6px !important;
        font-size: 1em !important;
        color: #555 !important;
        line-height: 1.5 !important;
    }
    
    /* Header mobile adjustments */
    .header {
        top: 10px !important;
        left: 10px !important;
        padding: 10px 20px !important;
        font-size: 0.9em !important;
        z-index: 1001 !important;
    }
    
    /* Remove all glassmorphism effects on mobile */
    * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Ensure text is always readable */
    .content-section * {
        color: #333 !important;
        background: transparent !important;
    }
}



.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 25px 25px;
    z-index: 1000;
}

.header {
    position: fixed;
    top: 20px;
    left: 20px;
    min-width: 150px;
    max-height: 10vh;
    background: rgba(255, 255, 255, 0.50);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: none;
    color: #2c2c2c;
    padding: 15px 25px;
    font-family: 'Poppins Light';
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.header .big{
    font-family: 'Poppins Bold';
    color: #000;
}

.header:hover {
    background: rgba(240, 240, 240, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.header:active {
    background: rgba(220, 220, 220, 0.9);
    transform: translateY(0) scale(0.98);
}


.topbar-buttons {
    position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
    display: flex; gap: 18px;
}
.icon-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 25px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    transition: left 0.5s;
}

.icon-btn:hover::before {
    left: 100%;
}

.icon-btn img {
    width: 28px;
    height: 28px;
    filter: brightness(0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-btn:hover {
    background: rgba(240, 240, 240, 0.95);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.icon-btn:hover img {
    filter: brightness(0);
    transform: scale(1.1);
}

.icon-btn:active {
    transform: translateY(-1px) scale(1.02);
}

@keyframes fadeInMsg {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}
@keyframes fadeOutMsg {
    from { opacity: 1; transform: translateY(0);}
    to { opacity: 0; transform: translateY(20px);}
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px);}
    to { opacity: 1; transform: translateX(0);}
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(60px);}
    to { opacity: 1; transform: translateX(0);}
}
@keyframes chatBoxShadow {
    0% { box-shadow: 0 2px 8px #0001;}
    50% { box-shadow: 0 8px 32px #0003;}
    100% { box-shadow: 0 2px 8px #0001;}
}



















.site-footer {
    margin-top: auto;
    background: #222; /* etwas gräulicher als #000 */
    color: #fff;
    padding: 30px 0 10px 0;
    text-align: center;
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    margin-bottom: 10px;
}
.footer-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    border-radius: 25px;
}
.footer-links a {
    position: relative;
    transition: color 0.2s;
}

.footer-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: rgb(160, 160, 160);
    border-radius: 25px;
    transform: scaleX(0);
    transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
    transform-origin: center;
    translate: -50% 0;
}

.footer-links a:hover {
    color: rgb(160, 160, 160);
    transform: scale(0.95);
}

.footer-links a:hover::after {
    transform: scaleX(1);
}
.footer-copy {
    font-size: 0.9rem;
    color: #aaa;
}

#lang-select {
    font-family: 'Poppins Light', sans-serif;
    font-size: 1.08em;
    padding: 8px 36px 8px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 25px;
    background: #f8f8fa url('data:image/svg+xml;utf8,<svg fill="black" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 14px center/18px 18px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
    color: #222;
    cursor: pointer;
    min-width: 120px;
}
#lang-select:focus {
    border-color: #5e5e5e;
    box-shadow: 0 0 0 2px #cce6ff;
    background-color: #f0f7ff;
}
#lang-select:hover {
    border-color: #838383;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    scale: 0.97;
    color: #838383;
}
.footer-lang label {
    margin-right: 10px;
    font-weight: 500;
    color: #444;
}
.footer-lang {
    margin: 16px 0 10px 0;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
}


.footer-lang:active {
    color: #616161;
    transition: color 0.2s, text-decoration 0.2s;
    scale: 0.98;
}
#lang-select::-ms-expand {
    display: none;
}
#lang-select option {
    background: #fff;
    color: #222;
}

/* Language Selector */
.language-selector {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 10px 16px;
    font-family: 'Poppins Light', sans-serif;
    font-size: 0.9em;
    color: #2c2c2c;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(120, 119, 198, 0.3);
}

.lang-btn.active {
    background: rgba(120, 119, 198, 0.8);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 20px rgba(120, 119, 198, 0.3);
}

.lang-btn.active:hover {
    background: rgba(120, 119, 198, 0.9);
    transform: translateY(-3px) scale(1.05);
}
