/* CSS Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Base Styles */
body {
	font-family: 'Red Hat Display', Arial, Helvetica, sans-serif;
	line-height: 1.6;
	color: #ffffff;
	background: #204492; /* Fallback */
	background: -webkit-linear-gradient(135deg, #204492 0%, #58148E 35%, #9F21E3 70%, #00A6FB 100%);
	background: -moz-linear-gradient(135deg, #204492 0%, #58148E 35%, #9F21E3 70%, #00A6FB 100%);
	background: -o-linear-gradient(135deg, #204492 0%, #58148E 35%, #9F21E3 70%, #00A6FB 100%);
	background: linear-gradient(135deg, #204492 0%, #58148E 35%, #9F21E3 70%, #00A6FB 100%);
	min-height: 100vh;
}

footer {
	color: black;
}

main {
	position: relative;
	z-index: 1;
}

section {
	padding: 60px 20px;
	text-align: center;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	padding: 20px 0;
	background: rgba(5, 25, 35, 0.9);
}

.logo {
	font-size: 24px;
	font-weight: 800;
	color: #00A6FB;
}

/* Hero Section */
.hero {
	padding: 80px 0;
	text-align: center;
	position: relative;
}

.hero h1 {
	font-size: 3.5rem;
	font-weight: 900;
	margin-bottom: 20px;
	color: #00A6FB; /* Fallback */
	background: -webkit-linear-gradient(45deg, #00A6FB, #9F21E3);
	background: -moz-linear-gradient(45deg, #00A6FB, #9F21E3);
	background: -o-linear-gradient(45deg, #00A6FB, #9F21E3);
	background: linear-gradient(45deg, #00A6FB, #9F21E3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-background-clip: text;
	-moz-text-fill-color: transparent;
	background-clip: text;
}

.hero .subtitle {
	font-size: 1.3rem;
	font-weight: 400;
	margin-bottom: 40px;
	color: #ffffff;
	opacity: 0.9;
}

.hero p {
	max-width: 800px;
	margin: 0 auto 20px;
}

.intro .container{
	max-width: 800px;
}

/* CTA Buttons */
.cta-primary {
	display: inline-block;
	background: #F15A29; /* Fallback */
	background: -webkit-linear-gradient(45deg, #F15A29, #9F21E3);
	background: -moz-linear-gradient(45deg, #F15A29, #9F21E3);
	background: -o-linear-gradient(45deg, #F15A29, #9F21E3);
	background: linear-gradient(45deg, #F15A29, #9F21E3);
	color: white;
	padding: 0.5em 1em;
	text-decoration: none;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	margin: 10px;
	-webkit-transition: -webkit-transform 0.3s ease;
	-moz-transition: -moz-transform 0.3s ease;
	-o-transition: -o-transform 0.3s ease;
	transition: transform 0.3s ease;
}

.cta-primary:hover {
	-webkit-transform: translateY(-2px);
	-moz-transform: translateY(-2px);
	-o-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
}

.cta-secondary {
	display: inline-block;
	border: 2px solid #00A6FB;
	color: #00A6FB;
	padding: 16px 38px;
	text-decoration: none;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	font-weight: 700;
	font-size: 1.1rem;
	margin: 10px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.cta-secondary:hover {
	background: #00A6FB;
	color: #051923;
}

/* Section Titles */
.section-title,
section h2 {
	font-size: 2.5rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 20px;
	color: #00A6FB;
}

.section-subtitle {
	font-size: 1.2rem;
	text-align: center;
	margin-bottom: 60px;
	color: #ffffff;
	opacity: 0.8;
}

/* Background Sections */
.bg-dark {
	padding: 80px 0;
	background: rgba(5, 25, 35, 0.8);
}

/* Cards */
.cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
	margin-top: 40px;
}

.card {
	height: auto !important;
}

.card h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.card ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.card ul li::before {
	content: "✓ ";
	color: #00A6FB;
	font-weight: bold;
	margin-right: 0.25em;
}

/* Comparison Grid */
.comparison-grid {
	display: flex;
	flex-flow: row wrap;
	width: 850px;
	max-width: 100%;
	align-items: stretch;
	justify-content: center;
	margin: 2rem auto;
}

.comparison-column {
	flex-basis: 40%;
	display: flex;
	flex-flow: column;
	flex-grow: 1;
	background: rgba(255, 255, 255, 0.05);
	padding: 40px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	color: white;
}

.comparison-column > *:last-child {
	flex-grow: 1;
}

.comparison-column.standard {
	border: 1px solid rgba(241, 90, 41, 0.3);
}

.comparison-column.premium {
	border: 1px solid rgba(0, 166, 251, 0.5);
	background: rgba(0, 166, 251, 0.1);
}

.comparison-column h2 {
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 20px;
}

.standard h2 {
	color: #F15A29;
}

.premium h2 {
	color: #00A6FB;
}

/* Content Sections */
.who-attends {
	padding: 80px 0;
}

.credibility {
	padding: 80px 0;
	background: rgba(5, 25, 35, 0.9);
}

.credibility-content {
	text-align: center;
}

.mini-cards {
	justify-content: center;
	display: flex;
	flex-flow: row wrap;
}

.mini-cards div {
	height: auto;
	background: rgba(255, 255, 255, 0.95);
	padding: 15px;
	border-radius: 15px;
	border: 1px solid rgba(159, 33, 227, 0.3);
	backdrop-filter: blur(10px);
	margin: 1rem;
}

.mini-cards div h2,
.mini-cards div {
	font-size: 1.3rem;
	font-weight: 700;
}

/* Pricing */
.pricing {
	padding: 80px 0;
	background: rgba(5, 25, 35, 0.9);
}

/* FAQ */
.faq {
	padding: 80px 0;
}

/* Final CTA */
.final-cta {
	padding: 80px 0 200px;
	margin-bottom: -120px;
	text-align: center;
	background: rgba(5, 25, 35, 0.9);
}

/* Responsive Design */
@media (max-width: 767px) {
	.comparison-grid {
		flex-direction: column;
		align-items: center;
	}
	
	.comparison-column {
		flex-basis: 95%;
		width: 95%;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.comparison-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}