* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	line-height: 1.7;
	color: #333;
	background: #fff;
}

/* Chatbox placement */
body #closeChatButton {
	display:none; /* Hidden to start */
}

body #openChatButton,
body #closeChatButton {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
	
}

body #openChatButton:hover,
body #closeChatButton:hover {
	cursor:pointer;
}

body #chatBox {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 20px;
    right: 90px;
    z-index: 1000;
	border-radius:8px;
	border:solid 2px #E3E3E3;
	
}

/* Header & Navigation - clean design */
body .rounded-button {
	background-color: var(--green-primary);
	color:#EEE;
	padding: 4px 14px;
	border-radius:25px;
	text-transform: uppercase;
	font-weight:700;
	font-size:0.8rem;
	letter-spacing: 1px;
	text-decoration: none;
}

body .rounded-button:hover {
	cursor:pointer;
}

header nav ul {
	margin-bottom:0;
}

header {
	background: #000;
	/* color: #333; */
	color: #FFF;
	padding: 0;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	border-bottom: 1px solid #e5e5e5;
}

nav {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 0rem;
}

.logo {
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #DDD;
	font-family: 'Merriweather', serif;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 2.5rem;
}

.nav-links a {
	color: #DDD;
	text-decoration: none;
	font-weight: 400;
	font-size: 0.95rem;
	transition: color 0.2s;
	position: relative;
}

.nav-links a:hover {
	color: #FFF;
}

.nav-links a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -8px;
	left: 0;
	background-color: #000;
	transition: width 0.3s;
}

.nav-links a:hover::after {
	width: 100%;
}

/* Hero Section - clean header */
.hero {
	background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
	color: #333;
	padding: 160px 3rem 40px;
	text-align: left;
	border-bottom: 1px solid #e5e5e5;
}

.hero-content,
.webinars-content {
	max-width: 1400px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	font-weight: 300;
	line-height: 1.2;
	color: #000;
	max-width: 800px;
	font-family: 'Merriweather', serif;
}

.webinars{
	padding: 60px 0;
}

.hero h3,
.webinars h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	font-weight: 300;
	line-height: 1.2;
	color: #000;
	max-width: 800px;
	font-family: 'Merriweather', serif;
}

.hero p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	color: #555;
	max-width: 700px;
	line-height: 1.6;
}

.badge {
	display: inline-block;
	background: #000;
	color: white;
	padding: 0.4rem 1.2rem;
	border-radius: 3px;
	font-weight: 500;
	margin-bottom: 1.5rem;
	font-size: 0.8rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn {
	padding: 0.9rem 2rem;
	font-size: 0.95rem;
	border: 2px solid;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 500;
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s;
	letter-spacing: 0.3px;
}

.btn-primary {
	background: #000;
	color: white;
	border-color: #000;
}

.btn-primary:hover {
	background: #333;
	border-color: #333;
}

.btn-secondary {
	background: transparent;
	color: #000;
	border-color: #000;
}

.btn-secondary:hover {
	background: #000;
	color: white;
}

/* Services Section - Card grid */
.services {
	padding: 40px 3rem;
	background: #fff;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
}

.section-header {
	text-align: left;
	margin-bottom: 3rem;
	max-width: 800px;
}

.section-header h2 {
	font-size: 2.5rem;
	color: #000;
	margin-bottom: 1rem;
	font-weight: 300;
	font-family: 'Merriweather', serif;
}

.section-header p {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.6;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.service-card {
	background: #fff;
	padding: 2rem;
	border-radius: 4px;
	border: 1px solid #e5e5e5;
	transition: all 0.2s;
}

.service-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	border-color: #000;
}

.service-icon {
	width: 50px;
	height: 50px;
	background: #f5f5f5;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
	color: #000;
}

.service-card h3 {
	font-size: 1.25rem;
	color: #000;
	margin-bottom: 0.8rem;
	font-weight: 400;
	font-family: 'Merriweather', serif;
}

.service-card p {
	color: #666;
	line-height: 1.7;
	font-size: 0.95rem;
}

/* Stats Section - data presentation */
.stats-section {
	background: #f8f9fa;
	padding: 80px 3rem;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	max-width: 1400px;
	margin: 0 auto;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: 300;
	color: #000;
	margin-bottom: 0.5rem;
	font-family: 'Merriweather', serif;
}

.stat-label {
	font-size: 0.95rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* About Section */
.about {
	padding: 80px 3rem;
	background: #fff;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	align-items: start;
	max-width: 1400px;
	margin: 0 auto;
}

.about-text h2 {
	font-size: 2.5rem;
	color: #000;
	margin-bottom: 1.5rem;
	font-weight: 300;
	font-family: 'Merriweather', serif;
}

.about-text p {
	color: #666;
	margin-bottom: 1.5rem;
	font-size: 1rem;
	line-height: 1.8;
}

.about-highlights {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.highlight-item {
	background: #f8f9fa;
	padding: 1.8rem;
	border-radius: 4px;
	border-left: 3px solid #000;
}

.highlight-item h4 {
	color: #000;
	margin-bottom: 0.6rem;
	font-size: 1.1rem;
	font-weight: 500;
	font-family: 'Merriweather', serif;
}

.highlight-item p {
	color: #666;
	font-size: 0.95rem;
	margin: 0;
	line-height: 1.6;
}

/* Content Section with Image */
.content-with-image {
	padding: 80px 3rem;
	background: #f8f9fa;
}

.content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 5rem;
	max-width: 1400px;
	margin: 0 auto;
	align-items: center;
}

.content-text h2 {
	font-size: 2.2rem;
	color: #000;
	margin-bottom: 1.5rem;
	font-weight: 300;
	font-family: 'Merriweather', serif;
}

.content-text p {
	color: #666;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.content-text ul {
	list-style: none;
	padding: 0;
}

.content-text li {
	padding: 0.8rem 0;
	border-bottom: 1px solid #e5e5e5;
	color: #555;
}

.content-text li:last-child {
	border-bottom: none;
}

.content-text li::before {
	content: "✓";
	color: #000;
	font-weight: bold;
	margin-right: 1rem;
}

.content-image img {
	object-fit:contain;
	height:400px;
	width:auto;
	border-radius:inherit;
}

.content-image {
	width: fit-content;
	height: 400px;
	/* background: linear-gradient(135deg, #000 0%, #333 100%); */
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: black;
	font-size: 1.2rem;
}

.content-image .webinar-selection .webinar-list-item {
	color:var(--green-primary);
}

.content-image .webinar-selection {
	padding: 30px 25px;
	border-radius:8px;
	border-color: #2E8B57;
	border-width: 12px 1px 1px 1px;
	border-style:solid;
	font-size: 1rem;
}


.content-image .webinar-selection .webinar-header-title {
	font-size:2.4rem;
	border-bottom: solid 2px #000;
	padding: 0;

}

.content-image .webinar-selection .webinar-header-caption {
	padding: 8px 0 4px;
}

.content-image .webinar-selection hr {
	height:3px;
	background-color:var(--green-primary);
	width:80%;
	margin: 3px auto 14px;
}

.content-image .webinar-selection .webinar-line {
	margin-top: 8px;
}

.content-image .webinar-selection .webinar-line label {
	font-size:0.9rem;
	margin-left:10px;
}

.content-image .webinar-selection input[type="checkbox"] {
	width:15px;
	height:15px;
	border-radius:4px;
	border-color:#DDD;
}


/* CTA Section */
.cta-section {
	background: #fff;
	color: #333;
	padding: 80px 3rem;
	text-align: center;
	border-top: 1px solid #e5e5e5;
}

.cta-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	font-weight: 300;
	color: #000;
	font-family: 'Merriweather', serif;
}

.cta-section p {
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	color: #666;
}

/* Footer */
footer {
	background: #f8f9fa;
	color: #666;
	padding: 3rem 3rem 2rem;
	border-top: 1px solid #e5e5e5;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: #000;
	font-weight: 400;
	font-size: 1rem;
	font-family: 'Merriweather', serif;
}

.footer-section p,
.footer-section a {
	color: #666;
	text-decoration: none;
	display: block;
	margin-bottom: 0.6rem;
	font-size: 0.9rem;
	line-height: 1.6;
}

.footer-section a:hover {
	color: #000;
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #ddd;
	color: #999;
	font-size: 0.85rem;
	max-width: 1400px;
	margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.about-content,
	.content-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	nav {
		padding: 1rem 1.5rem;
	}

	.logo {
		font-size: 1.2rem;
		font-weight: 700;
		letter-spacing: 0.5px;
		font-family: 'Merriweather', serif;
	}
	
	.hero {
		padding: 140px 1.5rem 30px;
	}

	.webinars {
		padding: 60px 1.5rem 30px;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.hero p {
		font-size: 1.1rem;
	}

	.services,
	.about,
	.stats-section,
	.content-with-image,
	.cta-section {
		padding: 30px 1.5rem;
	}

	.services-grid {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.nav-links {
		gap: 1.2rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 0.8rem;
		font-weight: 700;
		letter-spacing: 0.5px;
		font-family: 'Merriweather', serif;
	}

	.nav-links a {
		font-size: 0.75rem;
	}

	.content-image {
		height:fit-content;
	}
	
	.rounded-button {
		font-size:1rem;
	}
	
	.content-image img {
		object-fit:contain;
		height:280px;
		width:auto;
		border-radius:inherit;
	}

}

:root {
  --green-primary: #2E8B57; /* Global variable Sea Green */
}