

/* Bangladesch Hero Section Styles */
    .country-hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #006a4e 0%, #00a86b 50%, #f42a41 100%);
        overflow: hidden;
    }

    .country-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(244, 42, 65, 0.3) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(0, 168, 107, 0.3) 0%, transparent 50%);
        animation: backgroundShift 15s ease-in-out infinite;
    }

    @keyframes backgroundShift {
        0%, 100% { transform: scale(1) rotate(0deg); }
        50% { transform: scale(1.1) rotate(5deg); }
    }

    .country-hero .decoration-circles {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        pointer-events: none;
    }

    .country-hero .circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        animation: float 20s infinite ease-in-out;
    }

    .country-hero .circle:nth-child(1) {
        width: 300px;
        height: 300px;
        top: 10%;
        left: -150px;
        animation-delay: 0s;
    }

    .country-hero .circle:nth-child(2) {
        width: 200px;
        height: 200px;
        bottom: 20%;
        right: -100px;
        animation-delay: 3s;
    }

    .country-hero .circle:nth-child(3) {
        width: 150px;
        height: 150px;
        top: 60%;
        left: 10%;
        animation-delay: 6s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0) translateX(0); }
        50% { transform: translateY(-50px) translateX(50px); }
    }

    .country-hero .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 2rem;
        max-width: 1200px;
        animation: fadeInUp 1s ease-out;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .country-hero .flag-circle {
        width: 200px;
        height: 200px;
        margin: 0 auto 2rem;
        border-radius: 50%;
        background: linear-gradient(to bottom, #006a4e 0%, #006a4e 50%, #006a4e 100%);
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: pulse 3s ease-in-out infinite;
        overflow: hidden;
    }

    .country-hero .flag-circle::before {
        content: '';
        position: absolute;
        width: 80px;
        height: 80px;
        background: #f42a41;
        border-radius: 50%;
        top: 50%;
        left: 45%;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 30px rgba(244, 42, 65, 0.5);
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    .country-hero h1 {
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        letter-spacing: 2px;
        animation: titleGlow 2s ease-in-out infinite alternate;
    }

    @keyframes titleGlow {
        from { text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
        to { text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 255, 255, 0.3); }
    }

    .country-hero .tagline {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        color: rgba(255, 255, 255, 0.95);
        font-weight: 300;
        letter-spacing: 1px;
        margin-bottom: 2rem;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .country-hero .features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
        padding: 0 1rem;
    }

    .country-hero .feature-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        animation: fadeInUp 1s ease-out backwards;
    }

    .country-hero .feature-card:nth-child(1) { animation-delay: 0.2s; }
    .country-hero .feature-card:nth-child(2) { animation-delay: 0.4s; }
    .country-hero .feature-card:nth-child(3) { animation-delay: 0.6s; }

    .country-hero .feature-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.25);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .country-hero .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
    }

    .country-hero .feature-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: white;
        margin-bottom: 0.5rem;
    }

    .country-hero .feature-text {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
    }

    .country-hero .scroll-indicator {
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        animation: bounce 2s infinite;
    }

    .country-hero .scroll-indicator::before {
        content: '↓';
        font-size: 2rem;
        color: white;
        opacity: 0.7;
    }

    @keyframes bounce {
        0%, 100% { transform: translateX(-50%) translateY(0); }
        50% { transform: translateX(-50%) translateY(15px); }
    }

    @media (max-width: 768px) {
        .country-hero .flag-circle {
            width: 150px;
            height: 150px;
        }

        .country-hero .flag-circle::before {
            width: 60px;
            height: 60px;
        }

        .country-hero .features {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .country-hero .feature-card {
            padding: 1.5rem;
        }
    }




/* ===================== Quick Facts ===================== */






 /* Quick Facts Section */
    
    .quick-facts {
        background: linear-gradient(135deg, #7c2d12 0%, #9a3412 50%, #7c2d12 100%);
        padding: 80px 20px;
        position: relative;
        overflow: hidden;
    }

    .quick-facts::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 25% 40%, rgba(251, 146, 60, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 75% 60%, rgba(249, 115, 22, 0.15) 0%, transparent 50%);
        pointer-events: none;
    }

    .quick-facts::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
        pointer-events: none;
    }

    .facts-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .fact-item {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 40px 30px;
        text-align: center;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.15);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        animation: fadeInUp 0.6s ease;
    }

    .fact-item:nth-child(1) { animation-delay: 0.1s; }
    .fact-item:nth-child(2) { animation-delay: 0.2s; }
    .fact-item:nth-child(3) { animation-delay: 0.3s; }
    .fact-item:nth-child(4) { animation-delay: 0.4s; }
    .fact-item:nth-child(5) { animation-delay: 0.5s; }

    .fact-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(251, 146, 60, 0.2) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .fact-item:hover::before {
        opacity: 1;
    }

    .fact-item::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%);
        transform: scale(0);
        transition: transform 0.6s ease;
    }

    .fact-item:hover::after {
        transform: scale(1);
    }

    .fact-item:hover {
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 25px 50px rgba(251, 146, 60, 0.4);
        border-color: rgba(251, 146, 60, 0.6);
        background: rgba(255, 255, 255, 0.15);
    }

    .fact-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 50px;
        margin: 0 auto 25px;
        box-shadow: 0 15px 35px rgba(251, 146, 60, 0.4);
        transition: all 0.4s ease;
        position: relative;
    }

    .fact-icon::before {
        content: '';
        position: absolute;
        inset: -3px;
        background: linear-gradient(135deg, #fb923c, #f97316, #ea580c);
        border-radius: 20px;
        z-index: -1;
        opacity: 0;
        filter: blur(10px);
        transition: opacity 0.4s ease;
    }

    .fact-item:hover .fact-icon {
        transform: rotateY(360deg) scale(1.1);
        box-shadow: 0 20px 45px rgba(249, 115, 22, 0.6);
    }

    .fact-item:hover .fact-icon::before {
        opacity: 1;
        animation: pulse-glow 1.5s ease-in-out infinite;
    }

    .fact-label {
        font-size: 16px;
        color: #fed7aa;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 12px;
        opacity: 0.9;
    }

    .fact-value {
        font-size: 28px;
        color: white;
        font-weight: 700;
        letter-spacing: -0.5px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    /* Responsive Breakpoint Indicator */
    .facts-container::before {
        content: '';
        position: absolute;
        top: -60px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #fb923c 0%, #f97316 100%);
        border-radius: 2px;
        box-shadow: 0 0 20px rgba(251, 146, 60, 0.6);
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes pulse-glow {
        0%, 100% {
            opacity: 0.5;
        }
        50% {
            opacity: 1;
        }
    }

    @media (max-width: 1200px) {
        .facts-container {
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .fact-item:nth-child(4),
        .fact-item:nth-child(5) {
            grid-column: span 1;
        }
    }

    @media (max-width: 992px) {
        .quick-facts {
            padding: 70px 20px;
        }

        .facts-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .fact-item {
            padding: 35px 25px;
        }

        .fact-icon {
            width: 85px;
            height: 85px;
            font-size: 42px;
        }

        .fact-value {
            font-size: 24px;
        }
    }

    @media (max-width: 768px) {
        .quick-facts {
            padding: 60px 20px;
        }

        .facts-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .fact-item {
            padding: 30px 20px;
        }

        .fact-icon {
            width: 75px;
            height: 75px;
            font-size: 38px;
            margin-bottom: 20px;
        }

        .fact-label {
            font-size: 14px;
            margin-bottom: 10px;
        }

        .fact-value {
            font-size: 22px;
        }
    }

    @media (max-width: 480px) {
        .quick-facts {
            padding: 50px 15px;
        }

        .facts-container {
            grid-template-columns: 1fr;
            gap: 18px;
            max-width: 400px;
        }

        .fact-item {
            padding: 28px 20px;
        }

        .fact-icon {
            width: 70px;
            height: 70px;
            font-size: 35px;
            margin-bottom: 18px;
        }

        .fact-label {
            font-size: 13px;
        }

        .fact-value {
            font-size: 20px;
        }
    }









/* ===================== Geografie ===================== */











 /* Geografische Lage Section */
    
    #geografie {
        background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #064e3b 100%);
        padding: 100px 20px;
        position: relative;
        overflow: hidden;
    }

    #geografie::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(52, 211, 153, 0.15) 0%, transparent 50%);
        pointer-events: none;
    }

    #geografie .section-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    #geografie .section-header {
        text-align: center;
        margin-bottom: 70px;
        animation: fadeInDown 0.8s ease;
    }

    #geografie .section-icon-large {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
        border-radius: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        margin-bottom: 25px;
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
        animation: rotate3d 4s ease-in-out infinite;
    }

    #geografie .section-header h2 {
        font-size: 52px;
        color: white;
        margin-bottom: 18px;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #d1fae5 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    #geografie .section-header p {
        font-size: 22px;
        color: #6ee7b7;
        max-width: 600px;
        margin: 0 auto;
    }

    #geografie .geo-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 50px;
        max-width: 1300px;
        margin: 0 auto;
        align-items: center;
    }

    #geografie .geo-content {
        background: rgba(255, 255, 255, 0.08);
        padding: 50px;
        border-radius: 28px;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.15);
        transition: all 0.5s ease;
        animation: fadeInLeft 0.8s ease;
    }

    #geografie .geo-content:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(16, 185, 129, 0.3);
        border-color: rgba(16, 185, 129, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    #geografie .geo-content h3 {
        font-size: 36px;
        color: white;
        margin-bottom: 25px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    #geografie .geo-content h3::before {
        content: '🌍';
        font-size: 40px;
        animation: spin 8s linear infinite;
    }

    #geografie .geo-content > p {
        font-size: 19px;
        color: #a7f3d0;
        line-height: 1.9;
        margin-bottom: 35px;
    }

    #geografie .geo-highlights {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    #geografie .geo-highlight {
        background: rgba(16, 185, 129, 0.15);
        padding: 20px 25px;
        border-radius: 16px;
        border-left: 4px solid #10b981;
        color: #d1fae5;
        font-size: 17px;
        line-height: 1.6;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    #geografie .geo-highlight::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #10b981 0%, #34d399 100%);
        box-shadow: 0 0 15px rgba(16, 185, 129, 0.6);
    }

    #geografie .geo-highlight:hover {
        background: rgba(16, 185, 129, 0.25);
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
    }

    #geografie .geo-highlight strong {
        color: #ffffff;
        font-weight: 700;
        margin-right: 8px;
    }

    #geografie .map-placeholder {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 28px;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 180px;
        min-height: 500px;
        position: relative;
        overflow: hidden;
        animation: fadeInRight 0.8s ease;
        transition: all 0.5s ease;
    }

    #geografie .map-placeholder::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    #geografie .map-placeholder:hover {
        transform: scale(1.02);
        box-shadow: 0 30px 60px rgba(16, 185, 129, 0.3);
        border-color: rgba(16, 185, 129, 0.5);
    }

    #geografie .map-placeholder:hover::before {
        opacity: 1;
    }

    #geografie .map-placeholder::after {
        content: 'Bangladesch';
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 24px;
        color: white;
        font-weight: 700;
        background: rgba(16, 185, 129, 0.9);
        padding: 12px 30px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(16, 185, 129, 0.4);
    }

    #geografie .mehr-erfahren-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 36px;
        background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
        color: white;
        text-decoration: none;
        border-radius: 14px;
        font-size: 17px;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
        margin-top: 30px;
    }

    #geografie .mehr-erfahren-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.5s ease;
    }

    #geografie .mehr-erfahren-btn:hover::before {
        left: 100%;
    }

    #geografie .mehr-erfahren-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
    }

    #geografie .arrow {
        transition: transform 0.3s ease;
    }

    #geografie .mehr-erfahren-btn:hover .arrow {
        transform: translateX(5px);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes rotate3d {
        0%, 100% {
            transform: rotateY(0deg);
        }
        50% {
            transform: rotateY(180deg);
        }
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    @media (max-width: 992px) {
        #geografie {
            padding: 80px 20px;
        }

        #geografie .geo-grid {
            gap: 40px;
        }

        #geografie .geo-content {
            padding: 40px;
        }

        #geografie .geo-content h3 {
            font-size: 32px;
        }

        #geografie .map-placeholder {
            min-height: 400px;
            font-size: 140px;
        }
    }

    @media (max-width: 768px) {
        #geografie {
            padding: 70px 20px;
        }

        #geografie .section-header h2 {
            font-size: 40px;
        }

        #geografie .section-header p {
            font-size: 19px;
        }

        #geografie .section-icon-large {
            width: 70px;
            height: 70px;
            font-size: 35px;
        }

        #geografie .geo-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        #geografie .geo-content {
            padding: 35px;
        }

        #geografie .geo-content h3 {
            font-size: 30px;
        }

        #geografie .geo-content h3::before {
            font-size: 35px;
        }

        #geografie .geo-highlight {
            padding: 18px 22px;
            font-size: 16px;
        }

        #geografie .map-placeholder {
            min-height: 350px;
            font-size: 120px;
        }

        #geografie .map-placeholder::after {
            font-size: 20px;
            padding: 10px 25px;
        }
    }

    @media (max-width: 480px) {
        #geografie {
            padding: 60px 15px;
        }

        #geografie .section-header {
            margin-bottom: 50px;
        }

        #geografie .section-header h2 {
            font-size: 32px;
        }

        #geografie .section-header p {
            font-size: 17px;
        }

        #geografie .section-icon-large {
            width: 60px;
            height: 60px;
            font-size: 30px;
        }

        #geografie .geo-content {
            padding: 30px 25px;
        }

        #geografie .geo-content h3 {
            font-size: 26px;
        }

        #geografie .geo-content h3::before {
            font-size: 30px;
        }

        #geografie .geo-content > p {
            font-size: 17px;
        }

        #geografie .geo-highlights {
            gap: 15px;
        }

        #geografie .geo-highlight {
            padding: 16px 20px;
            font-size: 15px;
        }

        #geografie .map-placeholder {
            min-height: 300px;
            font-size: 100px;
        }

        #geografie .map-placeholder::after {
            font-size: 18px;
            padding: 8px 20px;
            bottom: 20px;
        }

        #geografie .mehr-erfahren-btn {
            padding: 14px 30px;
            font-size: 16px;
            width: 100%;
            justify-content: center;
        }
    }











/* ===================== Natur & Kultur ===================== */





     /* Natur & Landschaft Section - Füge dies zu deinem bestehenden CSS hinzu */
    
    #natur {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        padding: 80px 20px;
    }

    #natur .section-container {
        max-width: 1400px;
        margin: 0 auto;
    }

    #natur .section-header {
        text-align: center;
        margin-bottom: 60px;
        animation: fadeInDown 0.8s ease;
    }

    #natur .section-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        border-radius: 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        margin-bottom: 20px;
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }

    #natur .section-header h2 {
        font-size: 48px;
        color: white;
        margin-bottom: 15px;
        font-weight: 700;
    }

    #natur .section-header p {
        font-size: 20px;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto;
    }

    #natur .nature-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        padding: 20px 0;
        max-width: 1200px;
        margin: 0 auto;
    }

    #natur .nature-card {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        overflow: hidden;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: fadeInUp 0.8s ease;
        position: relative;
    }

    #natur .nature-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    #natur .nature-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    #natur .nature-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    #natur .nature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
    }

    #natur .nature-card-image {
        height: 220px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 80px;
    }

    #natur .nature-card:nth-child(1) .nature-card-image {
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    }

    #natur .nature-card:nth-child(2) .nature-card-image {
        background: linear-gradient(135deg, #10b981 0%, #047857 100%);
    }

    #natur .nature-card:nth-child(3) .nature-card-image {
        background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    }

    #natur .nature-card:nth-child(4) .nature-card-image {
        background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    }

    #natur .nature-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    #natur .nature-card-image::before {
        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: shimmer 3s infinite;
    }

    #natur .nature-card-content {
        padding: 30px;
    }

    #natur .nature-card-content h3 {
        font-size: 28px;
        color: white;
        margin-bottom: 15px;
        font-weight: 600;
    }

    #natur .nature-card-content p {
        font-size: 16px;
        color: #cbd5e1;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    #natur .mehr-erfahren-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 28px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        text-decoration: none;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 500;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    #natur .mehr-erfahren-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    #natur .mehr-erfahren-btn:hover::before {
        left: 100%;
    }

    #natur .mehr-erfahren-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
        border-color: rgba(255, 255, 255, 0.3);
    }

    #natur .arrow {
        transition: transform 0.3s ease;
    }

    #natur .mehr-erfahren-btn:hover .arrow {
        transform: translateX(5px);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes shimmer {
        0%, 100% {
            transform: translate(-50%, -50%) rotate(0deg);
        }
        50% {
            transform: translate(-50%, -50%) rotate(180deg);
        }
    }

    @media (max-width: 768px) {
        #natur .section-header h2 {
            font-size: 36px;
        }

        #natur .section-header p {
            font-size: 18px;
        }

        #natur .nature-cards {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        #natur .nature-card-content h3 {
            font-size: 24px;
        }

        #natur .section-icon {
            width: 60px;
            height: 60px;
            font-size: 30px;
        }
    }

    @media (max-width: 480px) {
        #natur {
            padding: 60px 15px;
        }

        #natur .section-header {
            margin-bottom: 40px;
        }

        #natur .section-header h2 {
            font-size: 28px;
        }

        #natur .section-header p {
            font-size: 16px;
        }

        #natur .nature-card-image {
            height: 180px;
            font-size: 60px;
        }

        #natur .nature-card-content {
            padding: 25px;
        }

        #natur .nature-card-content h3 {
            font-size: 22px;
        }

        #natur .nature-card-content p {
            font-size: 15px;
        }
    }




/* ===================== Kultur ===================== */





/* Kultur & Traditionen Section */
    
    #kultur {
        background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
        padding: 100px 20px;
        position: relative;
        overflow: hidden;
    }

    #kultur::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    #kultur .section-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    #kultur .section-header {
        text-align: center;
        margin-bottom: 70px;
        animation: fadeInDown 0.8s ease;
    }

    #kultur .section-icon-large {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
        border-radius: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        margin-bottom: 25px;
        box-shadow: 0 15px 40px rgba(168, 85, 247, 0.4);
        animation: float 3s ease-in-out infinite;
    }

    #kultur .section-header h2 {
        font-size: 52px;
        color: white;
        margin-bottom: 18px;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    #kultur .section-header p {
        font-size: 22px;
        color: #c4b5fd;
        max-width: 600px;
        margin: 0 auto;
    }

    #kultur .culture-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 1200px;
        margin: 0 auto;
    }

    #kultur .culture-item {
        background: rgba(255, 255, 255, 0.06);
        border-radius: 28px;
        padding: 50px 40px;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        animation: fadeInUp 0.8s ease;
    }

    #kultur .culture-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    #kultur .culture-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    #kultur .culture-item::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    #kultur .culture-item:hover::before {
        opacity: 1;
    }

    #kultur .culture-item:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 30px 60px rgba(168, 85, 247, 0.3);
        border-color: rgba(168, 85, 247, 0.5);
        background: rgba(255, 255, 255, 0.08);
    }

    #kultur .culture-icon {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 60px;
        margin: 0 auto 30px;
        box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
        transition: all 0.4s ease;
        position: relative;
    }

    #kultur .culture-icon::after {
        content: '';
        position: absolute;
        inset: -3px;
        border-radius: 24px;
        background: linear-gradient(135deg, #a855f7, #ec4899, #f472b6);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    #kultur .culture-item:hover .culture-icon {
        transform: rotateY(360deg) scale(1.1);
        box-shadow: 0 20px 45px rgba(236, 72, 153, 0.5);
    }

    #kultur .culture-item:hover .culture-icon::after {
        opacity: 1;
        animation: rotate 3s linear infinite;
    }

    #kultur .culture-item h3 {
        font-size: 32px;
        color: white;
        margin-bottom: 20px;
        font-weight: 700;
        text-align: center;
        letter-spacing: -0.5px;
    }

    #kultur .culture-item p {
        font-size: 18px;
        color: #d8b4fe;
        line-height: 1.8;
        text-align: center;
        margin-bottom: 30px;
    }

    #kultur .mehr-erfahren-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 36px;
        background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
        color: white;
        text-decoration: none;
        border-radius: 14px;
        font-size: 17px;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(168, 85, 247, 0.3);
        margin: 0 auto;
        display: flex;
        width: fit-content;
    }

    #kultur .mehr-erfahren-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.5s ease;
    }

    #kultur .mehr-erfahren-btn:hover::before {
        left: 100%;
    }

    #kultur .mehr-erfahren-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(236, 72, 153, 0.5);
    }

    #kultur .arrow {
        transition: transform 0.3s ease;
    }

    #kultur .mehr-erfahren-btn:hover .arrow {
        transform: translateX(5px);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-15px);
        }
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    @media (max-width: 992px) {
        #kultur {
            padding: 80px 20px;
        }

        #kultur .culture-grid {
            gap: 30px;
        }

        #kultur .culture-item {
            padding: 40px 30px;
        }

        #kultur .culture-item h3 {
            font-size: 28px;
        }

        #kultur .culture-icon {
            width: 100px;
            height: 100px;
            font-size: 50px;
        }
    }

    @media (max-width: 768px) {
        #kultur {
            padding: 70px 20px;
        }

        #kultur .section-header h2 {
            font-size: 40px;
        }

        #kultur .section-header p {
            font-size: 19px;
        }

        #kultur .section-icon-large {
            width: 70px;
            height: 70px;
            font-size: 35px;
        }

        #kultur .culture-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        #kultur .culture-item {
            padding: 40px 30px;
        }

        #kultur .culture-item h3 {
            font-size: 28px;
        }

        #kultur .culture-icon {
            width: 100px;
            height: 100px;
            font-size: 50px;
        }
    }

    @media (max-width: 480px) {
        #kultur {
            padding: 60px 15px;
        }

        #kultur .section-header {
            margin-bottom: 50px;
        }

        #kultur .section-header h2 {
            font-size: 32px;
        }

        #kultur .section-header p {
            font-size: 17px;
        }

        #kultur .section-icon-large {
            width: 60px;
            height: 60px;
            font-size: 30px;
        }

        #kultur .culture-item {
            padding: 35px 25px;
        }

        #kultur .culture-item h3 {
            font-size: 26px;
        }

        #kultur .culture-item p {
            font-size: 16px;
        }

        #kultur .culture-icon {
            width: 90px;
            height: 90px;
            font-size: 45px;
        }

        #kultur .mehr-erfahren-btn {
            padding: 14px 30px;
            font-size: 16px;
        }
    }








/* ===================== Religion ===================== */


    /* Religion & Gesellschaft Section */
    
    #religion {
        background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0c4a6e 100%);
        padding: 100px 20px;
        position: relative;
        overflow: hidden;
    }

    #religion::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 15% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 85% 80%, rgba(34, 211, 238, 0.15) 0%, transparent 50%);
        pointer-events: none;
    }

    #religion .section-container {
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    #religion .section-header {
        text-align: center;
        margin-bottom: 70px;
        animation: fadeInDown 0.8s ease;
    }

    #religion .section-icon-large {
        width: 90px;
        height: 90px;
        background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
        border-radius: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 45px;
        margin-bottom: 25px;
        box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
        animation: pulse 2s ease-in-out infinite;
    }

    #religion .section-header h2 {
        font-size: 52px;
        color: white;
        margin-bottom: 18px;
        font-weight: 700;
        background: linear-gradient(135deg, #ffffff 0%, #bae6fd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    #religion .section-header p {
        font-size: 22px;
        color: #7dd3fc;
        max-width: 600px;
        margin: 0 auto;
    }

    #religion .religion-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
    }

    #religion .religion-text {
        background: rgba(255, 255, 255, 0.08);
        padding: 50px;
        border-radius: 28px;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.15);
        transition: all 0.5s ease;
        animation: fadeInLeft 0.8s ease;
    }

    #religion .religion-text:hover {
        transform: translateX(-10px);
        box-shadow: 0 25px 50px rgba(14, 165, 233, 0.3);
        border-color: rgba(14, 165, 233, 0.5);
        background: rgba(255, 255, 255, 0.1);
    }

    #religion .religion-text h3 {
        font-size: 36px;
        color: white;
        margin-bottom: 25px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    #religion .religion-text h3::before {
        content: '🕌';
        font-size: 40px;
        animation: bounce 2s ease-in-out infinite;
    }

    #religion .religion-text p {
        font-size: 19px;
        color: #bae6fd;
        line-height: 1.9;
    }

    #religion .religion-stats {
        background: rgba(255, 255, 255, 0.08);
        padding: 50px;
        border-radius: 28px;
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.15);
        animation: fadeInRight 0.8s ease;
    }

    #religion .stat-item {
        margin-bottom: 35px;
    }

    #religion .stat-item:last-child {
        margin-bottom: 0;
    }

    #religion .stat-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 600;
    }

    #religion .stat-label span:first-child {
        color: white;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    #religion .stat-label span:first-child::before {
        content: '';
        width: 12px;
        height: 12px;
        background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
        border-radius: 50%;
        display: inline-block;
        box-shadow: 0 0 15px rgba(14, 165, 233, 0.6);
        animation: glow 2s ease-in-out infinite;
    }

    #religion .stat-label span:last-child {
        color: #0ea5e9;
        font-size: 24px;
        font-weight: 700;
    }

    #religion .stat-bar {
        height: 16px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        overflow: hidden;
        position: relative;
        box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    #religion .stat-bar::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 2s infinite;
    }

    #religion .stat-fill {
        height: 100%;
        background: linear-gradient(90deg, #0ea5e9 0%, #06b6d4 50%, #22d3ee 100%);
        border-radius: 12px;
        position: relative;
        transition: width 2s ease-out;
        animation: fillBar 2s ease-out;
        box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
    }

    #religion .stat-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shine 3s infinite;
    }

    #religion .mehr-erfahren-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 36px;
        background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
        color: white;
        text-decoration: none;
        border-radius: 14px;
        font-size: 17px;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
        margin-top: 30px;
    }

    #religion .mehr-erfahren-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.5s ease;
    }

    #religion .mehr-erfahren-btn:hover::before {
        left: 100%;
    }

    #religion .mehr-erfahren-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(14, 165, 233, 0.5);
    }

    #religion .arrow {
        transition: transform 0.3s ease;
    }

    #religion .mehr-erfahren-btn:hover .arrow {
        transform: translateX(5px);
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
    }

    @keyframes bounce {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }

    @keyframes glow {
        0%, 100% {
            box-shadow: 0 0 15px rgba(14, 165, 233, 0.6);
        }
        50% {
            box-shadow: 0 0 25px rgba(14, 165, 233, 1);
        }
    }

    @keyframes shimmer {
        0% {
            transform: translateX(-100%);
        }
        100% {
            transform: translateX(100%);
        }
    }

    @keyframes fillBar {
        from {
            width: 0;
        }
    }

    @keyframes shine {
        0% {
            transform: translateX(-100%);
        }
        100% {
            transform: translateX(100%);
        }
    }

    @media (max-width: 992px) {
        #religion {
            padding: 80px 20px;
        }

        #religion .religion-content {
            gap: 40px;
        }

        #religion .religion-text,
        #religion .religion-stats {
            padding: 40px;
        }

        #religion .religion-text h3 {
            font-size: 32px;
        }
    }

    @media (max-width: 768px) {
        #religion {
            padding: 70px 20px;
        }

        #religion .section-header h2 {
            font-size: 40px;
        }

        #religion .section-header p {
            font-size: 19px;
        }

        #religion .section-icon-large {
            width: 70px;
            height: 70px;
            font-size: 35px;
        }

        #religion .religion-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        #religion .religion-text:hover {
            transform: translateX(0);
            transform: translateY(-10px);
        }

        #religion .religion-text,
        #religion .religion-stats {
            padding: 35px;
        }

        #religion .religion-text h3 {
            font-size: 30px;
        }

        #religion .stat-label {
            font-size: 18px;
        }

        #religion .stat-label span:last-child {
            font-size: 22px;
        }
    }

    @media (max-width: 480px) {
        #religion {
            padding: 60px 15px;
        }

        #religion .section-header {
            margin-bottom: 50px;
        }

        #religion .section-header h2 {
            font-size: 32px;
        }

        #religion .section-header p {
            font-size: 17px;
        }

        #religion .section-icon-large {
            width: 60px;
            height: 60px;
            font-size: 30px;
        }

        #religion .religion-text,
        #religion .religion-stats {
            padding: 30px 25px;
        }

        #religion .religion-text h3 {
            font-size: 26px;
        }

        #religion .religion-text h3::before {
            font-size: 30px;
        }

        #religion .religion-text p {
            font-size: 17px;
        }

        #religion .stat-label {
            font-size: 17px;
        }

        #religion .stat-label span:last-child {
            font-size: 20px;
        }

        #religion .mehr-erfahren-btn {
            padding: 14px 30px;
            font-size: 16px;
            width: 100%;
            justify-content: center;
        }
    }
































/* ===================== Responsive ===================== */
@media(max-width: 968px){
    .geo-grid, .religion-content {
        flex-direction: column;
    }

    .facts-container {
        flex-direction: column;
        gap: 20px;
    }

    .nature-cards, .culture-grid {
        flex-direction: column;
        gap: 20px;
    }
}
