
        /* -----------------------------
            Root & Variables
        ----------------------------- */
        :root {
            --primary-color: #f97316;
            --bg-color: #FDFBF8;
            --text-color: #1f2937;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --white: #ffffff;
        }

        /* -----------------------------
            Global Styles
        ----------------------------- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        /* -----------------------------
            Container
        ----------------------------- */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* -----------------------------
            Filter Section Styling
        ----------------------------- */
        .filter-container {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .filter-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-button {
            width: 100%;
            background-color: #f3f4f6;
            color: var(--gray-700);
            font-weight: 500;
            padding: 0.75rem 1rem;
            border-radius: 0.375rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.2s;
        }

        .dropdown-button:hover {
            background-color: #e5e7eb;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.25rem;
            width: 100%;
            background-color: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 0.375rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            z-index: 20;
            display: none;
            flex-direction: column;
        }

        .dropdown-menu.active {
            display: flex;
        }
        
        .dropdown-menu > ul > li {
            padding: 0.75rem 1rem;
            cursor: pointer;
            transition: background-color 0.2s;
            position: relative;
        }

        .dropdown-menu > ul > li:hover {
            background-color: #f9fafb;
        }

        .dropdown-menu > ul > li.has-submenu::after {
            content: '>';
            position: absolute;
            right: 1rem;
            color: var(--gray-500);
        }

        .dropdown-menu .submenu {
            display: none;
            flex-direction: column;
            background-color: #f9fafb;
            border-left: 2px solid var(--primary-color);
            padding-left: 1rem;
            margin-top: 0.5rem;
        }

        .dropdown-menu .submenu li {
            padding: 0.5rem 0.5rem;
            cursor: pointer;
        }

        .dropdown-menu .submenu li:hover {
            background-color: #f3f4f6;
        }
        
        /* -----------------------------
            Footer
        ----------------------------- */
        footer {
            background-color: var(--gray-800);
            color: var(--white);
            padding: 3rem 0;
        }

        footer .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            align-items: center;
        }

        footer .logo h2 {
            color: var(--white);
            font-weight: 800;
        }

        footer .logo .icon svg {
            color: var(--primary-color);
        }

        footer nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        footer nav a {
            color: #d1d5db;
            transition: color 0.3s;
            font-weight: 500;
            position: relative;
        }

        footer nav a:hover {
            color: white;
        }

        footer nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease-in-out;
        }

        footer nav a:hover::after {
            width: 100%;
        }


        footer .copyright {
            margin-top: 2rem;
            border-top: 1px solid #374151;
            padding-top: 2rem;
            text-align: center;
            color: #9ca3af;
            font-size: 0.875rem;
        }
        
        /* -----------------------------
            Responsive
        ----------------------------- */
        @media(max-width: 768px) {
            nav {
                display: none;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .menu-btn {
                display: inline-block;
            }

            .telegram-cards {
                grid-template-columns: 1fr;
            }

            .highlight-cards {
                grid-template-columns: 1fr;
            }

            .institutions-logos {
                gap: 1rem;
            }

            .institutions-logos img {
                height: 3rem;
            }
        }


#about, #contact {
  display: block; /* Makes each link a block-level element, forcing them onto a new line */
  margin: 4px 0; /* Creates vertical space between the links */
  padding: 6px 12px;
  text-align: right;/* Aligns the text within each link to the right */
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

#about:hover, #contact:hover {
  color: #ffaa33;
}

/* Responsive */
@media (max-width: 768px) {
  #about, #contact {
    font-size: 16px;
    padding: 8px 10px;
  }
}

        