/* Dynamic background animation using your exact brand colors */
.dynamic-scroll-bg {
	background: linear-gradient(-45deg, #1f3f94, #337ab7, #4a4a4b, #8e9194);
	background-size: 400% 400%;
	animation: gradientShift 15s ease infinite;
	padding: 3rem 0;
	border-radius: 8px;
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Clean white cards to float over the dynamic background */
.about-card {
	background: #ffffff;
	padding: 2.5rem;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	margin-bottom: 2rem;
	color: #333333;
}

.about-card h1, .about-card h2 {
	margin-top: 0;
	color: #1f3f94; /* Brand primary blue for headers */
}

/* Action card specific styles */
.action-card {
	text-align: center;
	border-top: 4px solid #337ab7; 
}
.action-card .btn {
	margin: 0.5rem;
}

/* Newsletter Embed Container */
.newsletter-box {
	background-color: #f9f9f9;
	border: 1px solid #e3e3e3;
	border-radius: 6px;
	padding: 2rem;
	margin-top: 3rem;
	text-align: left; /* Restores left-alignment inside the centered action card */
}
.newsletter-box h3 {
	margin-top: 0;
	color: #1f3f94;
	font-weight: bold;
}

.social-note {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #f2f2f2;
	color: #4a4a4b;
}