body {
	font-family: 'Inter', sans-serif;
	background-color: #FFFFFF; /* White background */
	color: #083d5a; /* RIA Blue for text */
}
.ria-blue { color: #083d5a; }
.bg-ria-blue { background-color: #083d5a; }
.ria-red { color: #db2146; }
.bg-ria-red { background-color: #db2146; }
.border-ria-red { border-color: #db2146; }
.border-ria-blue { border-color: #083d5a; }

.cta-whatsapp {
	background-color: #25D366; /* WhatsApp Green */
	color: #FFFFFF;
	transition: background-color 0.3s ease;
}
.cta-whatsapp:hover {
	background-color: #1DAE54; /* Darker WhatsApp Green */
}
.section-title {
	font-size: 2.25rem; /* 36px */
	line-height: 2.5rem; /* 40px */
	font-weight: 800;
	color: #083d5a; /* RIA Blue */
	text-align: center;
	margin-bottom: 2rem; /* 32px */
}
.section-intro {
	font-size: 1.125rem; /* 18px */
	line-height: 1.75rem; /* 28px */
	color: #4A5568; /* Gray-700 */
}
.card {
	background-color: #FFFFFF;
	border-radius: 0.75rem; /* 12px */
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.nav-link {
	color: #083d5a;
	font-weight: 600;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	border-radius: 0.375rem;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
	background-color: #083d5a;
	color: #FFFFFF;
}
.nav-link-cta {
	background-color: #db2146;
	color: #FFFFFF;
}
.nav-link-cta:hover {
	 background-color: #083d5a;
	 color: #FFFFFF;
}

.ria-button-red, .ria-button-red-hover-blue {
	background-color: #db2146; /* RIA Red */
	color: #FFFFFF; /* White text */
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: background-color 0.3s ease;
	text-align: center;
}
.ria-button-red:hover, .ria-button-red-hover-blue:hover {
	background-color: #083d5a; /* RIA Blue */
}

.ria-button-blue {
	background-color: #083d5a; /* RIA Blue */
	color: #FFFFFF; /* White text */
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	font-weight: 600;
	transition: background-color 0.3s ease;
	text-align: center;
}
.ria-button-blue:hover {
	background-color: #db2146; /* RIA Red */
}

.hero-slide-image {
	transition: opacity 1s ease-in-out;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
::-webkit-scrollbar-thumb { background: #083d5a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #db2146; }

/* Styling for the map container div, which will hold the iframe */
.map-container { 
	height: 400px; 
	border-radius: 0.5rem; 
	overflow: hidden; /* To ensure iframe corners are also rounded */
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
}

.values-list li {
	position: relative;
	padding-left: 1.75rem; 
	margin-bottom: 0.75rem; 
}
.values-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.25rem; 
	width: 1rem; 
	height: 1rem; 
	background-color: #db2146; 
	mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /></svg>');
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
}
.progress-bar-bg {
	background-color: #e5e7eb; /* gray-200 */
	border-radius: 0.375rem; /* rounded-md */
	overflow: hidden;
	height: 1.5rem; /* h-6 */
	position: relative;
}
.progress-bar-fill {
	background-color: #083d5a; /* ria-blue */
	height: 100%;
	transition: width 0.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 0.75rem; /* text-xs */
	font-weight: 600;
}
 .progress-bar-text {
	position: absolute;
	width: 100%;
	text-align: center;
	line-height: 1.5rem; /* same as progress-bar-bg height */
	font-size: 0.75rem; /* text-xs */
	font-weight: 600;
	color: #4b5563; /* gray-600, or white if on dark fill */
}
.progress-bar-fill .progress-bar-text-on-fill {
	 color: white;
}

.pagination a, .pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.375rem;
	margin: 0 0.25rem;
	font-weight: 600;
	transition: all 0.3s ease;
}
.pagination a {
	color: #083d5a;
	background-color: #fff;
	border: 1px solid #e5e7eb;
}
.pagination a:hover {
	background-color: #f3f4f6;
	border-color: #d1d5db;
}
.pagination .active {
	background-color: #083d5a;
	color: #fff;
	border: 1px solid #083d5a;
}
.pagination .disabled {
	color: #9ca3af;
	background-color: #f9fafb;
	cursor: not-allowed;
}

/* Basic styles for article content */
.article-content h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #083d5a;
	margin-top: 2.5rem;
	margin-bottom: 1.25rem;
}
.article-content p {
	line-height: 1.75;
	margin-bottom: 1.5rem;
}
.article-content ul {
	list-style-position: inside;
	list-style-type: disc;
	margin-bottom: 1.5rem;
	padding-left: 1rem;
}
.article-content li {
	margin-bottom: 0.75rem;
}
.article-content blockquote {
	border-left: 4px solid #db2146;
	padding-left: 1.5rem;
	margin: 2rem 0;
	font-style: italic;
	color: #4A5568;
	font-size: 1.125rem;
}



/* Form styling */
.form-input {
	margin-top: 0.25rem;
	display: block;
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #D1D5DB; /* gray-300 */
	border-radius: 0.375rem; /* rounded-md */
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
	transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.form-input:focus {
	outline: none;
	border-color: #083d5a; /* ria-blue */
	box-shadow: 0 0 0 3px rgba(8, 61, 90, 0.3);
}