* {
	box-sizing: border-box;
}

body {
	margin: 0;
}

#iau9 {
	font-family: Arial, Helvetica, sans-serif;
	background-image: linear-gradient(90deg, rgba(22, 34, 62, 1) 10%, rgba(49, 25, 135, 1) 90%);
	background-position: 0px 0px;
	background-size: 100% 100%;
	background-repeat: repeat;
	background-attachment: scroll;
	background-origin: padding-box;
	color: #475569;
}

body {
	font-family: 'Roboto', sans-serif;
	background: linear-gradient(135deg, #000 0%, #101010 100%);
	color: #d1cde0;
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Header with a gradient background & animated logo fade */
header {
	background: linear-gradient(90deg, 
		#111 0%, 
		#131313 10%, 
		#151515 20%, 
		#161616 30%, 
		#181818 40%, 
		#1a1a1a 50%, 
		#1c1c1c 60%, 
		#1e1e1e 70%, 
		#202020 80%, 
		#212121 90%, 
		#222 100%);
	text-align: center;
	padding: 50px 20px;
	position: relative;
	overflow: hidden;
}

header::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, 
		transparent 0%,
		rgba(0, 170, 255, 0.05) 20%,
		rgba(0, 170, 255, 0.3) 50%,
		rgba(0, 170, 255, 0.05) 80%,
		transparent 100%);
	transform: skewX(-25deg);
	animation: slide 2s infinite;
}

@keyframes slide {
	0% {
		left: -100%;
	}
	50% {
		left: 100%;
	}
	100% {
		left: 200%;
	}
}

header img {
	width: 100%;
	max-width: 650px;
	position: relative;
	z-index: 1;
	animation: fadeIn 1.5s ease-out;
}

/* Section Layouts */
.section {
	margin: 60px auto;
	padding: 40px;
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 30px rgba(0, 170, 255, 0.2);
}

/* Different background themes for variety */
.section.theme-dark {
	background: rgba(26, 26, 26, 0.95);
}

.section.theme-light {
	background: rgba(20, 20, 20, 0.9);
}

.section.theme-gradient {
	background: linear-gradient(135deg, #1a1a1a, #333);
}

/* Financial CTA section special style */
.section.financial-cta {
	border-left: 5px solid #00aaff;
	border-right: 5px solid #00aaff;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 34, 51, 0.95));
	position: relative;
}

.section.financial-cta strong {
	color: #00aaff;
	font-size: 1.1rem;
}

.section.financial-cta .cta button {
	background: linear-gradient(135deg, #00aaff, #0088cc);
	font-size: 1.2rem;
	padding: 15px 30px;
}

.section.financial-cta .cta button:hover {
	background: linear-gradient(135deg, #0088cc, #006699);
	box-shadow: 0 10px 20px rgba(0, 170, 255, 0.3);
}

/* Updated merged section styling */
.section.financial-cta.get-started {
  background: linear-gradient(135deg, #000, #1a1a1a);
  border-left: 5px solid #00aaff;
  border-right: 5px solid #00aaff;
  text-align: center;
  padding: 50px 40px;
}

.section.financial-cta.get-started h2 {
  color: #00aaff;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.section.financial-cta.get-started .financial-benefits {
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.section.financial-cta.get-started p.interested {
  color: #00aaff;
  font-size: 1.3rem;
  margin: 30px 0;
}

.section.financial-cta.get-started .cta-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.section.financial-cta.get-started .cta {
  margin: 10px 0;
}

/* Headings with shadow and animation */
h1,
h2 {
	color: #00aaff;
	margin-bottom: 20px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

h1 {
	font-size: 2.8rem;
	font-weight: 700;
}

h2 {
	font-size: 2.2rem;
	font-weight: 400;
}

h3 {
	color: #00aaff;
	font-size: 1.5rem;
	margin-bottom: 10px;
	font-weight: 700;
}

p {
	margin-bottom: 15px;
	font-size: 1.1rem;
}

/* Feature Boxes with Grid Layout */
.feature-box {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 20px;
}

.feature {
	background: rgba(34, 34, 34, 0.9);
	padding: 20px;
	border-left: 5px solid #00aaff;
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.feature:hover {
	transform: scale(1.03);
}

/* Call to Action Button */
.cta {
	margin-top: 30px;
	text-align: center;
}

.cta button {
	background: #00aaff;
	color: #000;
	border: none;
	padding: 15px 40px;
	font-size: 1.1rem;
	font-weight: bold;
	cursor: pointer;
	border-radius: 50px;
	box-shadow: 0 8px 15px rgba(0, 170, 255, 0.2);
	transition: background 0.3s ease, transform 0.3s ease;
}

.cta button:hover {
	background: #0088cc;
	transform: translateY(-3px);
}

/* Get Started section special style */
.section.get-started {
	background: linear-gradient(135deg, #000, #222);
	color: #00aaff;
	text-shadow: none;
}

/* Footer with a subtle neon border */
footer {
	text-align: center;
	padding: 20px;
	background: #111;
	border-top: 2px solid #00aaff;
	font-size: 0.9rem;
	margin-top: 60px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
	h1 {
		font-size: 2.2rem;
	}
	h2 {
		font-size: 1.8rem;
	}
	.section {
		margin: 40px 20px;
		padding: 30px;
	}
}