  /* General Styles */
  body {
  	font-family: 'Roboto', sans-serif;
  	margin: 0;
  	padding: 0;
  	background-color: #F2F3F4;
  	/* Set background color for the body */
  	color: #333;
  	overflow-x: hidden;
	
  }

  /* Base header styling */
  header {
  	background-color: #003366;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	padding: 20px 30px;
  	/* Increased padding for a larger header */
  	position: relative;
  	z-index: 10;
  }

  .navbar {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	width: 100%;
  }

  .logo {
  	display: flex;
  	align-items: center;
  	cursor: pointer;
  }

  .logo-image {
  	width: 40px;
  	height: 40px;
  	margin-right: 10px;
  }

  .logo-text {
  	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 18px;
  	color: bisque;
  }

  .nav-menu {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  }

  .nav-list {
  	list-style: none;
  	margin: 0;
  	padding: 0;
  	display: flex;
  }

  .nav-item {
  	margin-right: 30px;
  }

  .nav-link {
  	font-family: "Montserrat", sans-serif;
  	font-weight: 600;
  	font-size: 16px;
  	color: bisque;
  	text-decoration: none;
  }

  .nav-link:hover {
  	color: #66B2FF;
  	/* Tomato color for hover effect */
  	text-shadow: none;
  }

  /* Menu Toggle Button for mobile */
  .menu-toggle {
  	display: none;
  	font-size: 30px;
  	background: none;
  	border: none;
  	color: bisque;
  	cursor: pointer;
  }
  
 
/* Base header styling */
header {
    background-color: #003366;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    position: relative;
    z-index: 10;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-image {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: bisque;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-item {
    margin-right: 30px;
    position: relative;
}

.nav-link {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: bisque;
    text-decoration: none;
}

.nav-link:hover {
    color: #66B2FF;
    text-shadow: none;
}

/* Dropdown menu styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #003366;
    padding: 10px 0;
    list-style: none;
    margin: 0;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.dropdown-item {
    margin: 0;
	
}

.dropdown-item .nav-link {
    padding: 10px 20px;
    display: block;
    color: bisque;
	
	
}

.dropdown-item .nav-link:hover {
    background-color: #0056b3;
}

/* Show dropdown menu on hover */
.nav-item:hover .dropdown-menu {
    display: block;
}

/* Menu Toggle Button for mobile */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: bisque;
    cursor: pointer;
}

/* Responsive styling */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #003366;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-item {
        margin: 10px 0;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .dropdown-item .nav-link {
        padding: 10px 20px;
    }
}


  /* Container for Content */
  .container {
  	max-width: 1000px;
  	margin: 30px auto;
  	padding: 0 20px;
  }

  h2 {
  	text-align: center;
  	color: #333;
  	margin-bottom: 20px;
  	font-size: 28px;
  }

  select#category-select {
  	width: 100%;
  	padding: 15px;
  	font-size: 18px;
  	border: 2px solid #ddd;
  	border-radius: 5px;
  }

  /* Option Container */
  .option-container {
  	margin-top: 40px;
  }

  /* Option Card Styles */
  .option {
  	background-color: #fff;
  	padding: 20px;
  	margin-bottom: 30px;
  	border-radius: 8px;
  	border: 2px solid #ddd;
  	/* Add border to make upper corners visible */
  	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .option h3 {
  	font-size: 22px;
  	margin-bottom: 15px;
  }

  .feature-table {
  	width: 100%;
  	border-collapse: collapse;
  	margin-bottom: 20px;
  }

  .feature-table th,
  .feature-table td {
  	padding: 10px;
  	text-align: left;
  	border-bottom: 1px solid #ddd;
  }

  /* Button Styles */
  .button {
  	background-color: #007bff;
  	color: white;
  	padding: 12px 24px;
  	text-align: center;
  	border-radius: 5px;
  	font-size: 16px;
  	display: inline-block;
  	/* Change from inline-block to block */
  	margin: 0 auto;
  	/* Add this to center the button horizontally */
  	text-decoration: none;
  	transition: background-color 0.3s ease;
  }

  .button:hover {
  	background-color: #0056b3;
  }

  /* Article Content Styles */
  .article-content {
  	/* max-width: 950px; */
  	/* margin: 40px auto; */
  	padding: 20px;
  	background-color: white;
  	border-radius: 8px;
  	border: 2px solid #ddd;
  	/* Add border to make upper corners visible */
  	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  	overflow-x: hidden;
  	/* Prevent horizontal scrolling */
  	word-wrap: break-word;
  	/* Ensure long words wrap */
  	white-space: normal;
  	/* Ensure text wraps normally */
	

  }

  .article-content h2 {
  	font-size: 28px;
  	margin-bottom: 20px;
  	color: #36344d;
  	text-align: left;
  }

  .article-content h3 {
  	font-size: 26px;
  	margin-bottom: 20px;
  	color: #333;
  	text-align: left;
  }

  .article-content h4 {
  	font-size: 24px;
  	margin-bottom: 20px;
  	color: #333;
  	text-align: left;
  }

  .article-content h5 {
  	font-size: 20px;
  	margin-bottom: 18px;
  	color: #333;
  	text-align: left;
  }

  .article-content p {
  	font-size: 18px;
  	line-height: 1.6rem;
  	color: #333;
  	margin-bottom: 20px;
  	text-align: justify;
  }

  .article-content ul {
  	font-size: 18px;
  	line-height: 1.6rem;
  	color: #333;
  	margin-bottom: 20px;
  	text-align: justify;
  }

  .article-content li {
  	margin-bottom: 10px;
  }

  .article-content strong {
  	color: #36344d;
  }

  .article-content ol {
  	counter-reset: list-items;
  	font-size: 18px;
  	line-height: 1.6rem;
  	color: #333;
  	margin-bottom: 20px;
  	text-align: justify;
  }

  .article-content img {
  	max-width: 100%;
  	/* Make image responsive */
  	height: auto;
  	/* Maintain aspect ratio */
  	margin: 20px auto;
  	/* Add margin to center image */
  	display: block;
  	/* Remove bottom space */
  	border-radius: 8px;
  	/* Match border radius of article content */
  	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  	/* Match box shadow of article content */
  }

  /* Footer Styles */
  footer {
  	background-color: #003366;
  	color: white;
  	padding: 10px;
  	text-align: center;
  	margin-top: 40px;
  }

  footer a {
  	color: #fff;
  	text-decoration: underline;
  	margin: 0 10px;
  }

  .ad-container {
  	width: 950px;
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	margin-top: 50px;
  	margin: 50px auto;
  	position: relative;
  	/* added this */
  }

  .ad-container::before {
  	content: "Sponsored";
  	position: absolute;
  	top: 0;
  	left: 0;
  	font-size: 12px;
  	color: #ccc;
  	background-color: #fff;
  	padding: 2px 5px;
  	z-index: 1;
  }

  .ad-container img {
  	width: 300px;
  	height: 250px;
  	object-fit: cover;
  	border: 1px solid #ccc;
  	margin-right: 20px;
  	align-items: center;
  }



  .recommended-badge {
  	background-color: #FFC107;
  	color: #000;
  	padding: 10px 20px;
  	/* Increased padding to make the badges larger */
  	border-radius: 50px;
  	/* Increased border radius to make the corners more rounded */
  	font-size: 18px;
  	/* Increased font size to make the text larger */
  	margin-right: 10px;
  	box-shadow: 0 0 5px rgba(0 0 0 / 50%);
  	/* Added box shadow to give a button-like effect */
  	font-weight: bold;
  	margin: 15px;
  	/* Added margin to the badge */
  	display: inline-block;
  }

  .alternative-badge {
  	background-color: #003366;
  	color: #fff;
  	padding: 10px 20px;
  	/* Increased padding to make the badges larger */
  	border-radius: 50px;
  	/* Increased border radius to make the corners more rounded */
  	font-size: 18px;
  	/* Increased font size to make the text larger */
  	margin-right: 10px;
  	margin: 15px;
  	box-shadow: 0 0 5px rgba(0 0 0 / 50%);
  	/* Added box shadow to give a button-like effect */
  	font-weight: bold;
  	display: inline-block;
  }

  /* Table of Contents Styles */
.toc {
    position: -webkit-sticky;
    position: sticky;
    top: 10px;
    width: 100%;
    max-height: 550px; /* Set the maximum height */
    overflow-y: auto; /* Enable vertical scrolling when content exceeds max height */
    padding: 10px;
    box-shadow: 0px 0px 5px rgba(0 0 0 / 10%);
    border-radius: 5px;
    background-color: #fff;
}

.toc h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.toc ul {
    list-style-type:disc;
	color: #0066ff;
    padding: 0;
}

.toc ul li {
    margin: 5px 0;
}

.toc ul li a {
    text-decoration: none;
    color: #007BFF;
}

.toc ul li a:hover {
    text-decoration: underline;
}

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

.toggle-btn {
    cursor: pointer;
    color: #007BFF;
    text-decoration: underline;
}

.toggle-btn:hover {
    text-decoration: none;
}

.hidden {
    display: none;
}


  /*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
  /* Scroll Top Button */
  .scroll-top {
  	position: fixed;
  	right: 15px;
  	bottom: 15px;
  	z-index: 99999;
  	background-color: #007bff;
  	/* Blue color */
  	width: 44px;
  	height: 44px;
  	border-radius: 50px;
  	transition: all 0.4s;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }

  .scroll-top svg {
  	width: 24px;
  	height: 24px;
  	stroke: #ffffff;
  	/* White color */
  }

  .scroll-top:hover {
  	background-color: #0069d9;
  	/* Darker blue color on hover */
  }

  .scroll-top.active {
  	bottom: 15px;
  }

  /* Basic styles for the normal-pop */
  .normal-pop {
  	position: fixed;
  	bottom: 20px;
  	right: 20px;
  	width: 300px;
  	padding: 25px;
  	background-color: #ffffff;
  	border: 2px solid #e1e1e1;
  	border-radius: 15px;
  	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  	z-index: 1000;
  	display: none;
  	/* Initially hidden */
  	animation: fadeIn 0.6s ease-out;
  	opacity: 0.95;
  }

  /* Smooth fade-in animation */
  @keyframes fadeIn {
  	from {
  		opacity: 0;
  		transform: translateY(50px);
  	}

  	to {
  		opacity: 1;
  		transform: translateY(0);
  	}
  }

  .normal-pop-header {
  	font-size: 20px;
  	font-weight: bold;
  	text-align: center;
  	margin-bottom: 15px;
  	color: #333;
  }

  .normal-pop-body {
  	text-align: center;
  	margin-bottom: 20px;
  }

  .normal-pop-body img {
  	width: 100%;
  	height: auto;
  	border-radius: 8px;
  }

  .normal-pop-body p {
  	margin: 15px 0;
  	font-size: 18px;
  	color: #555;
  }

  .normal-pop-countdown {
  	display: flex;
  	justify-content: center;
  	gap: 12px;
  	font-size: 18px;
  	color: #0033cc;
  }

  .normal-pop-countdown div {
  	display: flex;
  	flex-direction: column;
  	align-items: center;
  }

  .normal-pop-countdown span {
  	font-weight: bold;
  	font-size: 22px;
  }

  .normal-pop-footer {
  	text-align: center;
  	margin-top: 15px;
  }

  .normal-pop-footer a {
  	display: inline-block;
  	padding: 12px 30px;
  	background-color: #0066ff;
  	color: #ffffff;
  	text-decoration: none;
  	border-radius: 25px;
  	font-weight: bold;
  	transition: background-color 0.3s ease;
  }

  .normal-pop-footer a:hover {
  	background-color: #004bb5;
  }

  .normal-pop-close-btn {
  	position: absolute;
  	top: 10px;
  	right: 10px;
  	font-size: 20px;
  	cursor: pointer;
  	background-color: #f2f2f2;
  	border-radius: 50%;
  	padding: 5px 10px;
  	transition: background-color 0.3s ease;
  }

  .normal-pop-close-btn:hover {
  	background-color: #e74c3c;
  	color: #fff;
  }

  .toggle-buttons {
  	display: flex;
  	justify-content: center;
  	margin-bottom: 20px;
  }

  .toggle-button {
  	padding: 12px 30px;
  	margin: 0 10px;
  	border-radius: 30px;
  	/* Round buttons */
  	border: none;
  	cursor: pointer;
  	background-color: #e0e0e0;
  	color: #555;
  	font-size: 16px;
  	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  	transition: all 0.3s ease;
  	/* Smooth hover and click transition */
  }

  .toggle-button.active {
  	background-color: #007BFF;
  	color: white;
  	box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.4);
  }

  .toggle-button:hover {
  	background-color: #003366;
  	color: white;
  	box-shadow: 0px 4px 12px rgba(0, 123, 255, 0.4);
  }

  /* Media Queries for Responsive Design */
  /* Media queries for header */
  @media (max-width: 480px) {
  	.logo-image {
  		width: 25px;
  		height: 25px;
  	}

  	.logo-text {
  		font-size: 12px;
  	}

  	.container {
  		max-width: 400px;
  	}

  	.option {
  		padding: 8px;
  		margin-bottom: 15px;
  	}

  	.article-content {
  		padding: 8px;
  	}

  	.feature-table th,
  	.feature-table td {
  		padding: 4px;
  	}

  	.button {
  		padding: 8px 16px;
  	}

  	.option {
  		margin-bottom: 15px;
  		/* Styles for .option */
  	}

  	.article-content {
  		margin-bottom: 20px;
  		/* Styles for .article-content */
  		/* max-width: 330px; */
  		padding-left: 20px;
  		padding-right: 20px;
  	}

  	.ad-container {
  		display: none;
  	}
  }



  @media (max-width: 600px) {
  	.toc {
  		max-width: 100%;
  		/* margin: 10px; */
  		padding: 5px;
  	}

  	.toc h2 {
  		font-size: 20px;
  	}

  	.toc ul ul {
  		padding-left: 15px;
  	}

  	.toggle-btn {
  		font-size: 18px;
  	}
  }

  @media (max-width: 768px) {
  	.nav-menu {
  		position: absolute;
  		top: 70px;
  		/* Adjusted to reflect increased header size */
  		right: 0;
  		background-color: #003366;
  		flex-direction: column;
  		width: 100%;
  		display: none;
  		text-align: center;
  	}

  	.nav-list {
  		flex-direction: column;
  	}

  	.nav-item {
  		margin-bottom: 15px;
  		margin-right: 0;
  	}

  	.menu-toggle {
  		display: block;
  	}

  	.nav-menu.active {
  		display: flex;
  	}

  	.logo-image {
  		width: 30px;
  		height: 30px;
  	}

  	.logo-text {
  		font-size: 14px;
  	}

  	.container {
  		max-width: 600px;
  	}

  	.option {
  		padding: 10px;
  		margin-bottom: 20px;
  	}

  	.article-content {
  		padding: 10px;
  	}

  	.feature-table th,
  	.feature-table td {
  		padding: 6px;
  	}

  	.button {
  		padding: 10px 20px;
  	}

  	.option {
  		margin-bottom: 15px;
  	}

  	.article-content {
  		/* margin-bottom: 15px; */
  		/* max-width: 530px; */
  		padding-left: 20px;
  		padding-right: 20px;
  	}

  	.ad-container {
  		display: none;
  	}
  }

  /* For tablets and small laptops */
  @media (max-width: 1024px) {
  	.container {
  		max-width: 800px;
  	}

  	.option {
  		padding: 15px;
  	}

  	.article-content {
  		padding: 15px;
  	}

  	.feature-table th,
  	.feature-table td {
  		padding: 8px;
  	}

  	.article {
  		flex-direction: column;
	
  	}

  	.toc {
  		position: relative;
  		width: auto;
  	}

  	.ad-container,
  	.ad-container img {
  		width: 100%;
  	}
  }

  /* Add these styles to make cards stack neatly on smaller screens */
  .option {
  	margin-bottom: 20px;
  }

  .article {
  	display: flex;
  	padding: 30px;
  	gap: 30px;
  }

  mark {
  	padding: 10px 20px;
  	border-radius: 50px;
  	font-size: 18px;
  	box-shadow: 0 0 5px rgba(0 0 0 / 50%);
  	cursor: pointer;
  }

  .btn-container {
  	text-align: center;
  }

  .banner-ad {
  	max-width: 768px;
  	padding: 20px;
  	margin: 30px auto;
  }