/* Responsive image styles for homepage */
.homepage-image {
	width: 100%;
	height: auto;
	max-width: 100vw;
	display: block;
	margin-left: auto;
	margin-right: auto;
	border-radius: 8px;
}

@media (max-width: 600px) {
	.homepage-image {
		max-width: 100vw;
		height: auto;
		border-radius: 6px;
	}
}

/* --- Modern Chase Bank–Inspired Styles --- */

body {
	font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
	background: #f4f7fa;
	color: #1a2a40;
	margin: 0;
	padding: 0;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(120deg, #0a3c74 60%, #1976d2 100%);
	color: #fff;
	padding: 80px 0 60px 0;
	text-align: center;
	border-radius: 0 0 32px 32px;
	box-shadow: 0 4px 24px rgba(10,60,116,0.08);
}
.hero-content h1 {
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	letter-spacing: -1px;
}
.hero-content .lead {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	font-weight: 400;
}
.btn-primary {
	background: #fff;
	color: #0a3c74;
	padding: 0.9rem 2.2rem;
	border-radius: 24px;
	font-size: 1.1rem;
	font-weight: 600;
	border: none;
	box-shadow: 0 2px 8px rgba(10,60,116,0.08);
	transition: background 0.2s, color 0.2s;
	text-decoration: none;
	display: inline-block;
}
.btn-primary:hover {
	background: #1976d2;
	color: #fff;
}

/* Features Section */
.features-section {
	background: #fff;
	margin-top: -40px;
	border-radius: 24px;
	box-shadow: 0 4px 24px rgba(10,60,116,0.06);
	padding: 48px 0 32px 0;
	position: relative;
	z-index: 2;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}
.feature-card {
	background: #f4f7fa;
	border-radius: 18px;
	box-shadow: 0 2px 8px rgba(10,60,116,0.04);
	padding: 2rem 1.2rem;
	text-align: center;
	transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
	box-shadow: 0 8px 32px rgba(25,118,210,0.12);
	transform: translateY(-6px) scale(1.03);
}
.feature-card h3 {
	color: #0a3c74;
	font-size: 1.3rem;
	margin-bottom: 0.7rem;
	font-weight: 600;
}
.feature-card p {
	color: #1a2a40;
	font-size: 1rem;
	margin: 0;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(90deg, #1976d2 60%, #0a3c74 100%);
	color: #fff;
	padding: 56px 0 48px 0;
	text-align: center;
	border-radius: 24px;
	margin: 48px 0 0 0;
	box-shadow: 0 4px 24px rgba(10,60,116,0.08);
}
.cta-content h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}
.btn-secondary {
	background: #fff;
	color: #1976d2;
	padding: 0.8rem 2rem;
	border-radius: 24px;
	font-size: 1.1rem;
	font-weight: 600;
	border: none;
	box-shadow: 0 2px 8px rgba(25,118,210,0.08);
	transition: background 0.2s, color 0.2s;
	text-decoration: none;
	display: inline-block;
}
.btn-secondary:hover {
	background: #0a3c74;
	color: #fff;
}

@media (max-width: 700px) {
	.hero-section {
		padding: 48px 0 32px 0;
	}
	.features-section {
		padding: 32px 0 16px 0;
	}
	.cta-section {
		padding: 32px 0 24px 0;
	}
	.hero-content h1 {
		font-size: 2rem;
	}
	.cta-content h2 {
		font-size: 1.3rem;
	}
}
