 :root {
 	--primary: #ffffff;
 	--dark: #009977;
 	--light: #f8f9fa;
 	--radius: 16px;
 }
.section h1 {
	margin-top:30px;
	text-align: center !important;
}
.section-bg-1{
    background: #fffff2 !important;
}
.section-bg-2{
    background: #f2fffd !important;
}
.section-bg-3{
    background:#fbffef !important;
}

 * {
 	margin: 0;
 	padding: 0;
 	box-sizing: border-box;
 }
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000; /* adjust to your theme */
}
.logo img {
    height: 43px;
    width: auto;
    border-radius: 50%;
    margin-right: 9px;
}
 body {
 	font-family: 'Segoe UI', sans-serif;
 	background: var(--light);
 	color: #333;
 }

 a {
 	text-decoration: none;
 	color: inherit;
 }
/* MAIN SECTION STYLES */
.about-section {
	max-width:90%;
	margin: 0 auto;
	background-color: #f9f9f9;
	border-radius: 16px;
}
.section {
    margin-bottom:20px !important;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-top:30px !important;
}
.section h2 {
    color: #004aad;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.about-section h1 {
	font-size:25px;
	margin-bottom: 1rem;
	color: #333;
	text-align: center;
}

.about-content p {
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
	margin-bottom: 1rem;
}

.share-section {
	margin-top: 2rem;
	text-align: center;
}
.section p{
   line-height:30px;
}

.share-section h2 {
	font-size:18px;
	margin-bottom: 1rem;
	color: #333;
}

.share-icons a {
	display: inline-block;
	margin: 0 10px;
	transition: transform 0.3s ease;
}

.share-icons a:hover {
	transform: scale(1.2);
}

/* HEADER */
header {
	background: var(--dark);
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 1.5rem;
	position: sticky;
	top: 0;
	z-index: 999;
}

header img {
	height: 40px;
}

.menu-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.menu-btn div {
	width: 24px;
	height: 3px;
	background: white;
	transition: 0.3s;
}

nav {
	display: flex;
	gap: 1rem;
}

nav a {
	font-size: 18px;
	color: white;
	transition: 0.3s;
}

nav a:hover {
	color: var(--primary);
}
/* Logo Container */
.logo {
	display: flex;
	align-items: center;
	gap: 10px; /* spacing between image and text */
}

/* Logo Image */
.logo img {
	height: 40px; /* adjust size as needed */
	width: auto;
}

/* Logo Text */
.logo strong {
	font-size: 1.5rem;
	color:white;
	font-weight: bold;
}

/* Mobile Nav */
@media (max-width: 768px) {
	.menu-btn {
		display: flex;
	}

	nav {
		position: absolute;
		top: 60px;
		left: 0;
		background: var(--dark);
		width: 100%;
		flex-direction: column;
		display: none;
		padding: 1rem;
		animation: slideDown 0.3s ease;
	}

	nav.active {
		display: flex;
	}

	@keyframes slideDown {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}

.hero {
	background: linear-gradient(135deg, var(--primary), #0056b3);
	color: white;
	text-align: center;
	padding: 3rem 1.5rem;
}

.hero h1 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.hero p {
	font-size: 1rem;
}

.hero button {
	margin-top: 1.5rem;
	background: #fff;
	color: var(--primary);
	padding: 0.75rem 1.5rem;
	font-size: 18px;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	transition: 0.3s;
}

.hero button:hover {
	background: #f1f1f1;
}

.section {
	padding: 2rem 1rem;
	max-width: 1000px;
	margin: auto;
}

.section h2 {
	text-align: center;
	margin-bottom: 1rem;
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.5rem;
}

.card {
	background: white;
	padding: 1rem;
	border-radius: var(--radius);
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
}

.card h3 {
	margin-bottom: 0.5rem;
}

.card p {
	font-size: 16px;
}

footer {
	background: var(--dark);
	color: white;
	text-align: center;
	padding: 2rem 1rem;
}

footer a {
	color: var(--primary);
}

footer small {
	font-size: 16px;
	display: block;
	margin-top: 0.5rem;
}

/* Bottom Mobile Nav */
.bottom-nav {
	display: none;
}
.footer-disclaimer strong {
	display: block;
	margin-bottom: 5px;
}

.footer-links a {
	color:white;
	text-decoration: none;
	margin: 0 5px;
}

.footer-links a:hover {
	text-decoration: underline;
}

.footer-copy {
	text-align: center;
	font-size: 13px;
	color:white;
}

@media (max-width: 600px) {
	.footer-content {
		padding: 10px;
	}
}

@media (max-width: 768px) {
	.bottom-nav {
		display: flex;
		justify-content: space-around;
		align-items: center;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		background: var(--dark);
		height: 60px;
		z-index: 1000;
		border-top: 1px solid #444;
	}

	.bottom-nav a {
		flex: 1;
		text-align: center;
		color: white;
		font-size: 16px;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 5px 0;
		transition: 0.3s;
	}

	.bottom-nav a:hover {
		color: var(--primary);
	}
  .privacy {
            margin-top: 20px;
        }
        .privacy ul {
            list-style-type: disc;
            padding-left: 20px;
            text-align: left;
        }
        .privacy ul li {
            font-size: 12px;
            margin: 5px 0;
        }
	.bottom-nav svg {
		width: 20px;
		height: 20px;
		margin-bottom: 2px;
	}
}