body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: block;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #4c669f, #3b5998);
    color: #fff;
    padding: 0;
    line-height: 1.6;
}

header {
	color: #ffffff;
	padding: 1rem 0;
	text-align: center;
}

.container {
    text-align: center;
    margin-bottom: 20px;
	max-width: 850px;
	margin: 20px auto;
	padding: 0 20px;
}

/* .message {
	color: #ffffff;
}

 */

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ffd700;
    margin-bottom: 20px;
}

footer {
	text-align: center;
	margin-top: 40px;
	padding: 10px 0;
	background-color: linear-gradient(135deg, #4c669f, #3b5998);
	border-top: 1px solid #ddd;
}

footer a {
	color: #ffd700;
	text-decoration: none;
}

        /* Sidebar Styles */
        .sidebar {
            width: 250px;
            background-color: #2c3e50;
            color: #fff;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            display: flex;
            flex-direction: column;
            padding-top: 20px;
        }

        .sidebar h2 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.5em;
            color: #ecf0f1;
        }

        .sidebar ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar ul li {
            margin: 10px 0;
        }

        .sidebar ul li a {
            text-decoration: none;
            color: #ecf0f1;
            padding: 10px 20px;
            display: block;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .sidebar ul li a:hover {
            background-color: #34495e;
        }


        .faq-container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .faq {
            border-bottom: 1px solid #e0e0e0;
            padding: 15px 0;
        }

        .faq:last-child {
            border-bottom: none;
        }

        .faq-question {
            font-size: 1.2em;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question:hover {
            color: #3498db;
        }

        .faq-answer {
            display: none;
            margin-top: 10px;
            font-size: 1em;
            line-height: 1.6;
            color: #34495e;
        }

        .faq-icon {
            font-size: 1.5em;
            color: #3498db;
        }
