        /* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f8fa;
            transition: all 0.3s ease;
        }

        /* Header */
        header {
            background-color: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            padding: 1rem;
            position: fixed;
            top: 10px;
            right: 10px;
            width: 100%;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between; /* Space out the elements */
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }
        
        .logo {
            flex-shrink: 0; /* Prevent the logo from shrinking */
            display: flex;               /* Use Flexbox for layout */
            align-items: center;         /* Vertically center the items (or flex-start for top alignment) */
            gap: 1rem;  
    
        }
        .logo img {
            width: 50px;                 /* Adjust image size */
            height: 50px;                /* Adjust image size */
        }

        .logo .logo-text {
            font-size: 1.2rem;           /* Adjust text size */
            font-weight: bold;           /* Optional: make the text bold */
            color: white;                /* Text color */
            text-align: left;            /* Ensure text aligns left */
            color: #2c3e50;
        }

        
        .nav-links {
            display: flex;
            /* position: absolute;
            left: 50%; */
            transform: translateX(-50%); /* Center the nav-links */
            background-color: white; /* Add a background to the navbar */
            padding: 0.5rem 1rem; /* Add some padding around the navbar */
            border-radius: 5px; /* Round the corners of the navbar */
            /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); Add a subtle shadow */
        }


        .nav-links a {
            color: #2c3e50;
            text-decoration: none; /* Remove underline */
            font-size: 1rem; /* Adjust font size */
            font-weight: bold; /* Make the links stand out */
            padding: 0.5rem 1rem; /* Add padding to make links feel more like buttons */
            border-radius: 5px; /* Rounded corners for each link */
            transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
        }
        
        .nav-links a:hover {
            background-color: #34495e; /* Darker shade when hovered */
            color:white;
            transform: translateY(-2px); /* Slight lift on hover */
        }
        
        .nav-links a:active {
            background-color: #1abc9c; /* Change to a different color when clicked */
            transform: translateY(0); /* Reset on click */
        }
        
        
        .language-selector {
            background-color: #e0e0e0;
            color: black;
            /* padding: 0.5rem 0.5rem; */
            border-radius: 4px;
            position: absolute;
            top: 0;
            right: 0;
        }

        .language-selector button:hover {
            background-color: #34495e; /* New background color on hover */
            color: white; /* Change text color to white when hovered */
        }
        /* Main content */
        main {
            margin-top: 8rem;
            min-height: calc(100vh - 200px);
            padding: 2rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        /* FAQ page */
        .faq-container {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-top: 2rem;
        }

        .faq-accordion {
            margin: 2rem;

        }

        .faq-question {
            background-color: #d9d9f3;
            font-size: 16px;
            padding: 1rem;
            border-radius: 5px;
            cursor: pointer;
        }

        .faq-answer {
            font-size: 14px;
            line-height: 20px;
            padding: 1rem 0.5rem;
            margin-left: 0;
            background-color: #d9d9f3;
            border-radius: 5px;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: auto;
        }

        .social-links {
            margin-top: 1rem;
        }
        .social-links > a {
            color: #fff;
        }
        button{
            border-style: none;
            background: none;
        }

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

        page-enter-active, page-leave-active {
            animation: fadeIn 0.3s ease;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .nav-links a {
                margin-left: 1rem;
            }
            
            nav {
                flex-direction: column;
                align-items: flex-start;
            }
        }