        /* CSS Reset & Variables */
        :root {
            --bg-light: #f7fbff;
            --text-main: #2d3748;
            --text-muted: #4a5568;
            --primary: #26bfff;
            --white: #ffffff;
            --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 20px 25px rgba(38, 191, 255, 0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        a {
            color: var(--primary);
          } 
          
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            overflow-x: hidden;
            animation: fadeIn 0.8s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Language Switcher */
        .lang-switch {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 100;
            background: rgba(255, 255, 255, 0.8);
            padding: 8px 16px;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(5px);
        }
        .lang-switch a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.9rem;
            margin: 0 5px;
            transition: var(--transition);
        }
        .lang-switch a:hover, .lang-switch a.active {
            color: var(--primary);
            text-decoration: underline;
        }
        .lang-switch a.active {
            color: var(--text-main);
            text
        }
        .lang-switch a .short { display:none; }



        /* --- Language Dropdown Styles --- */
        .lang-dropdown {
            /*
            position: relative;
            display: inline-block;
            margin: 10px;
            z-index: 1000;
            */
            
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 100;
            background: rgba(0, 0, 0, 0.2);
            padding: 0px 6px;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(5px);
        }

        .dropdown-btn {
            background: none;
            border: none;
            padding: 0;
            cursor: pointer;
            /*display: flex;*/
            display:block;
            align-items: center;
            justify-content: center;
            outline: none;
        }

      /* Coloring the SVG with a specific hex code */
      .lang-icon {
          display: inline-block;
          width: 50px;  /* Adjust icon size here */
          height: 50px; /* Adjust icon size here */
          background-color: #fff; /* <--- actual icon color */
          
          /* This treats your SVG as a mask/stencil */
          -webkit-mask-image: url('language-icon.svg');
          mask-image: url('language-icon.svg');
          
          -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
          -webkit-mask-size: contain;
          mask-size: contain;
          -webkit-mask-position: center;
          mask-position: center;
          
          transition: transform 0.3s ease;
          margin-bottom:-10px;
      }
      .lang-icon-text {
          display:block;
          font-size:9px;
          padding-bottom:6px;
          opacity:0.7;
          color:#fff;
      }

        .lang-dropdown:hover .lang-icon {
            transform: scale(1.1);
        }

        .dropdown-menu {
            display: none; /* Hidden by default */
            position: absolute;
            top: 100%;
            right: 0; /* Aligns menu to the right of the icon */
            background-color: #ffffff; /* Change to your theme color */
            min-width: 140px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            padding: 8px 0;
            margin: 0px 0 0 0;
            list-style: none;
            border-radius: 8px;
            overflow: hidden;
            z-index: 9999;
        }

        /* Show menu when 'show' class is added via JS */
        .dropdown-menu.show {
            display: block;
        }

        .dropdown-menu li a {
            color: var(--primary); /* Text color */
            padding: 6px 10px;
            text-decoration: none;
            display: block;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            transition: background 0.2s ease;
        }

        .dropdown-menu li a:hover {
            background-color: #f1f1f1;
            color: #000;
        }

        /* Highlight the current language */
        .dropdown-menu li a.selected {
            background-color: #f8f8f8;
            font-weight: 600;
            color: #000;
            pointer-events: none; /* Make current lang unclickable */
        }


        /* Hero Area (Full Width) */
        .hero-section {
            width: 100%;
            position: relative;
            background: linear-gradient(to top, #d4efff 13%, #a2deff 46%, #26bfff 85%, #36acff 100%);
            display: flex;
            justify-content: center;
            align-items: flex-end; /* Align image to bottom */
            min-height: 50vh;
            padding-top: 80px;
        }

        .hero-section picture {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .hero-img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
            /* No shadow requested for hero image */
        }

        .hero-wave {
            position: absolute;
            bottom: -1px; /* Overlap to prevent thin lines */
            left: 0;
            width: 100%;
            height: 60px;
            background-image: url('images/hero-wave-transition.png');
            background-repeat: repeat-x;
            background-position: bottom;
            background-size: 1000px 100%;
            z-index: 10;
        }

        /* Breakpoints for Main Body Container */
        .container {
            width: 320px; /* smaller than 360px, default */
            margin: 0 auto;
            padding: 10px 15px;
            position: relative;
            z-index: 11;
        }

        @media (min-width: 360px) {
            .container { width: 360px; }
            .lang-switch a .short { display:inline-block; }
            .lang-switch a .long { display:none; }
        }
        @media (min-width: 600px) {
            .container { width: 600px; }
            .lang-switch a .short { display:inline-block; }
            .lang-switch a .long { display:none; }
        }
        @media (min-width: 1024px) {
            .container { width: 1024px; padding: 20px 15px; }
            .lang-switch a .long { display:inline-block; }
            .lang-switch a .short { display:none; }
        }
        @media (min-width: 1600px) {
            .container { width: 1600px; padding: 30px 15px; }
            .lang-switch a .long { display:inline-block; }
            .lang-switch a .short { display:none; }
        }

        /* Typography & Header inside Main */
        .app-header {
            text-align: center;
            margin-bottom: 40px;
        }

        h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
        }

        .subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 30px;
        }

        /* Store Buttons */
        .store-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }

        .store-btn {
            display: inline-block;
            transition: var(--transition);
        }

        .store-btn img {
            height: 50px;
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
        }

        .store-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        /* Feature Cards Layout */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
            margin-bottom: 50px;
        }

        @media (min-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .card {
            background: var(--white);
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid rgba(38, 191, 255, 0.1);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .card h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .card p, .card ul {
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .card ul {
            padding-left: 20px;
        }

        .card ul li {
            margin-bottom: 8px;
        }

        /* Extra Questions Section */
        .questions-section {
            text-align: center;
            background: linear-gradient(0deg, #f6ffee 0%, #e6f6ff 100%);
            padding: 40px;
            border-radius: 20px;
            /*box-shadow: var(--shadow-md);*/
            margin-bottom: 50px;
        }
        
        .questions-section p {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.8;
        }

        /* Extra support_text Section */
        .support-section {
            text-align: center;
            background: linear-gradient(0deg, #f6ffee 0%, #e6f6ff 100%);
            padding: 40px;
            border-radius: 20px;
            /*box-shadow: var(--shadow-md);*/
            margin-bottom: 50px;
        }
        
        .support-section p {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-main);
            line-height: 1.8;
        }
        
        /* Footer */
        footer {
            text-align: center;
            padding: 30px 15px;
            border-top: 1px solid rgba(0,0,0,0.05);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        footer p {
            margin-bottom: 5px;
        }
        
        footer .policies {
            font-size:11px; 
            padding-bottom:20px;
        }
        
        footer .policies a {
            color: #8fc794;
            text-decoration:none;
        }
        
        footer .policies a:hover {
            text-decoration:underline;
        }
        
        /* Cookies Banner */
        .cookie-banner {
            position: fixed;
            display: block;
            /* top: 50%; */
            bottom: 10%;
            left: 50%;
            width: auto;
            min-width: 300px;
            background: #fff;
            padding: 30px;
            text-align: center;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.3), 0 0 190px rgba(27, 90, 128, 0.5), 0 0 190px rgba(27, 90, 128, 0.5);
            border-radius: 15px;
            line-height: 1.5em;
            transform: translateX(-50%);
            z-index: 999;
            font-size:15px;
            cursor:pointer;
        }
        
        .cookie-banner .cookieEmoji {
            font-size:30px;
        }
        
        .cookie-banner button {
            padding: 12px;
            margin-left: 5px;
            margin-right: 5px;
            margin-top: 15px;
            background: #4f9adb;
            border: 1px solid #4f9adb;
            box-sizing: border-box;
            border-radius: 8px;
            color: #fff;
            font-size: 15px;
        }
        .cookie-banner button:hover
        {
            background: #226cac;
        }
        .cookie-banner button.reject {
            background: #ffffff;
            color: #4f9adb;
        }
        .cookie-banner button.reject:hover {
            background: #e8f4ff;
        }
