    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
      .faq-page {
            padding: 7rem 1.5rem 3rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-title {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 14px;
            padding: 0.5rem 1rem;
            color: #ffffff;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .faq-item summary {
            cursor: pointer;
            list-style: none;
            font-size: 1.05rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0.75rem 0.25rem;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: "▾";
            transition: transform 0.2s ease;
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0.25rem 0.25rem 0.9rem;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }
	.footer-container {
		max-width: 1400px;
		margin: 0 auto;
        padding: 0.9rem 1.5rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 2rem;
		flex-wrap: wrap;
	}

	.footer-brand {
		display: flex;
		align-items: center;
		gap: 1rem;
	}

	.footer-brand img {
		height: 42px;
		width: auto;
		filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
	}

	.brand-text {
		display: flex;
		flex-direction: column;
	}

	.brand-title {
		font-weight: 600;
		font-size: 1.05rem;
	}

	.brand-subtitle {
		font-size: 0.9rem;
		color: rgba(255, 255, 255, 0.7);
	}

	.footer-links {
		display: flex;
		gap: 1rem;
	}

	.footer-links a {
		color: #ffffff;
		text-decoration: none;
		padding: 0.45rem 1rem;
		border: 1px solid rgba(255, 255, 255, 0.2);
		border-radius: 10px;
		background: rgba(255, 255, 255, 0.12);
		transition: all 0.2s ease;
	}

	.footer-links a:hover {
		background: rgba(255, 255, 255, 0.22);
		transform: translateY(-2px);
	}

	.footer-meta {
		display: flex;
		flex-direction: column;
		gap: 0.25rem;
		font-size: 0.85rem;
		color: rgba(255, 255, 255, 0.75);
		text-align: right;
	}

	@media (max-width: 768px) {
		.footer-container {
			padding: 1.25rem 1.5rem;
			flex-direction: column;
			align-items: flex-start;
		}

		.footer-meta {
			text-align: left;
		}
	}
    :root {
        background-color: #121212;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    html {
        height: 100%;
    }

    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    #topbar {
        flex-shrink: 0;
    }

    #footer {
        margin-top: auto;
        position: relative;
    }

    .site-footer {
        position: fixed;
        bottom: 0.75rem;
        left: 1rem;
        right: 1rem;
        margin: 0;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        color: #ffffff;
        font-family: 'Poppins', sans-serif;
    }

    .topbar {
        position: fixed;
        top: 1rem;
        left: 1rem;
        right: 1rem;
        width: calc(100% - 2rem);
        z-index: 1000;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .topbar-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .topbar-logo {
        display: flex;
        align-items: center;
    }

    .topbar-logo img {
        height: 40px;
        width: auto;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    .topbar-nav {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-button {
        padding: 0.5rem 1.5rem;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: #fff;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        cursor: pointer;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        font-family: 'Poppins', sans-serif;
    }

    .nav-button:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav-dropdown {
        position: relative;
    }

    .dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .arrow {
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    .nav-dropdown:hover .arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 0;
        min-width: 200px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        display: block;
        padding: 0.75rem 1rem;
        color: #fff;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.2s ease;
        font-size: 0.95rem;
        font-family: 'Poppins', sans-serif;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(5px);
    }

    @media (max-width: 768px) {
        .topbar-container {
            padding: 1rem;
        }

        .topbar-nav {
            gap: 0.5rem;
        }

        .nav-button {
            padding: 0.4rem 1rem;
            font-size: 0.9rem;
        }

        .topbar-logo img {
            height: 32px;
        }
    }