@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ============================================================================
   Design System — CSS Custom Properties
   ========================================================================== */
:root {
	/* Brand colors */
	--gs-navy: #1B3A5C;
	--gs-teal: #0097A7;
	/* Gray scale */
	--gs-gray-50: #f8f9fb;
	--gs-gray-100: #f1f3f5;
	--gs-gray-200: #e5e7eb;
	--gs-gray-300: #d1d5db;
	--gs-gray-400: #9ca3af;
	--gs-gray-500: #6b7280;
	--gs-gray-600: #4b5563;
	--gs-gray-700: #374151;
	--gs-gray-800: #1f2937;
	--gs-gray-900: #111827;

	/* Semantic text */
	--gs-text-primary: #111827;
	--gs-text-secondary: #4b5563;
	--gs-text-muted: #6b7280;
	--gs-text-inverse: #ffffff;

	/* Spacing (8px base) */
	--gs-space-1: 4px;
	--gs-space-2: 8px;
	--gs-space-3: 12px;
	--gs-space-4: 16px;
	--gs-space-5: 20px;
	--gs-space-6: 24px;
	--gs-space-8: 32px;
	--gs-space-10: 40px;
	--gs-space-12: 48px;
	--gs-space-16: 64px;
	--gs-space-20: 80px;
	--gs-space-24: 96px;

	/* Typography scale */
	--gs-text-xs: 12px;
	--gs-text-sm: 14px;
	--gs-text-base: 16px;
	--gs-text-lg: 18px;
	--gs-text-xl: 20px;
	--gs-text-2xl: 24px;
	--gs-text-3xl: 30px;
	--gs-text-4xl: 36px;
	--gs-text-5xl: 48px;
	--gs-text-6xl: 60px;

	/* Shadows */
	--gs-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
	--gs-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
	--gs-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
	--gs-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
	--gs-shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.06);

	/* Radii */
	--gs-radius-sm: 6px;
	--gs-radius: 8px;
	--gs-radius-md: 10px;
	--gs-radius-lg: 16px;
	--gs-radius-xl: 24px;

	/* Transitions */
	--gs-transition-fast: 0.15s ease;
	--gs-transition: 0.2s ease;
	--gs-transition-slow: 0.3s ease;
}

/* Font smoothing */
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Balance headings */
h1, h2, h3, .mainheadline, .headline, .headline-black, .subhead-purple {
	text-wrap: balance;
}

/* ============================================================================
   Utility Classes — Layout
   ========================================================================== */

/* Full-width breakout from .gridContainer */
.gs-full-width {
	width: 100vw !important;
	max-width: none !important;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	float: none !important;
	clear: both;
	box-sizing: border-box;
}

/* Re-constrain content inside full-width sections */
.gs-section-inner {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
	box-sizing: border-box;
}

/* ============================================================================
   Utility Classes — Backgrounds
   ========================================================================== */
.gs-bg-white { background-color: #fff; }
.gs-bg-gray { background-color: var(--gs-gray-50); }
.gs-bg-navy { background-color: var(--gs-navy); }
.gs-bg-teal { background-color: var(--gs-teal); }

.gs-bg-gradient-hero {
	background: linear-gradient(135deg, var(--gs-navy) 0%, #153250 40%, #0e3a54 70%, var(--gs-teal) 100%);
}
.gs-bg-gradient-cta {
	background: linear-gradient(135deg, var(--gs-teal) 0%, #00838f 50%, var(--gs-navy) 100%);
}

/* ============================================================================
   Utility Classes — Cards
   ========================================================================== */
.gs-card {
	background: #fff;
	border: 1px solid var(--gs-gray-200);
	border-radius: var(--gs-radius-md);
	padding: var(--gs-space-6);
	transition: transform var(--gs-transition), box-shadow var(--gs-transition), border-color var(--gs-transition);
}
.gs-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--gs-shadow-lg);
	border-color: var(--gs-teal);
}
a.gs-card-link {
	display: block;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}
a.gs-card-link h3 {
	color: var(--gs-navy);
}
a.gs-card-link:hover h3 {
	color: var(--gs-teal);
}

/* ============================================================================
   Utility Classes — Grids
   ========================================================================== */
.gs-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gs-space-8);
}
.gs-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gs-space-8);
}
@media (max-width: 768px) {
	.gs-grid-2, .gs-grid-3 {
		grid-template-columns: 1fr;
	}
}

/* ============================================================================
   Utility Classes — Stats
   ========================================================================== */
.gs-stats-row {
	padding: var(--gs-space-12) 0;
	text-align: center;
}
.gs-stat {
	text-align: center;
}
.gs-stat-number {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-5xl);
	font-weight: 700;
	color: var(--gs-teal);
	line-height: 1.1;
	letter-spacing: -0.02em;
}
.gs-stat-label {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-base);
	color: var(--gs-text-secondary);
	margin-top: var(--gs-space-2);
	font-weight: 500;
}

/* ============================================================================
   Utility Classes — Scroll Animations
   ========================================================================== */
.gs-animate {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.gs-animate.gs-visible {
	opacity: 1;
	transform: translateY(0);
}
.gs-animate-delay-1 { transition-delay: 0.1s; }
.gs-animate-delay-2 { transition-delay: 0.2s; }
.gs-animate-delay-3 { transition-delay: 0.3s; }
.gs-animate-delay-4 { transition-delay: 0.4s; }

/* ============================================================================
   Homepage Hero
   ========================================================================== */
#Main.gs-hero {
	background-image: none !important;
	background: linear-gradient(135deg, var(--gs-navy) 0%, #153250 40%, #0e3a54 70%, var(--gs-teal) 100%) !important;
	max-height: none !important;
	position: relative;
	overflow: hidden;
	padding: var(--gs-space-24) 0 var(--gs-space-20);
}
/* Animated radial glow */
#Main.gs-hero::before {
	content: '';
	position: absolute;
	top: -40%;
	left: -20%;
	width: 80%;
	height: 180%;
	background: radial-gradient(ellipse, rgba(0,151,167,0.15) 0%, transparent 70%);
	animation: gs-hero-glow 8s ease-in-out infinite alternate;
	pointer-events: none;
}
@keyframes gs-hero-glow {
	0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
	100% { transform: translate(10%, -5%) scale(1.1); opacity: 1; }
}
/* Grid pattern overlay */
#Main.gs-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}

.gs-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 var(--gs-space-6);
	text-align: center;
}
.gs-hero-eyebrow {
	display: inline-block;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-sm);
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gs-teal);
	background: rgba(0,151,167,0.12);
	padding: var(--gs-space-2) var(--gs-space-4);
	border-radius: 100px;
	margin-bottom: var(--gs-space-6);
}
.gs-hero-title {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 var(--gs-space-6) 0;
}
.gs-hero-subtitle {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: clamp(1rem, 2.5vw, 1.25rem);
	color: rgba(255,255,255,0.75);
	line-height: 1.6;
	max-width: 680px;
	margin: 0 auto var(--gs-space-10);
}
.gs-hero-actions {
	display: flex;
	gap: var(--gs-space-4);
	justify-content: center;
	flex-wrap: wrap;
}
.gs-hero-actions .gs-cta-btn-outline {
	color: rgba(255,255,255,0.9) !important;
	border-color: rgba(255,255,255,0.3);
}
.gs-hero-actions .gs-cta-btn-outline:hover {
	background-color: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.6);
	color: #fff !important;
}

/* ============================================================================
   Homepage Feature Icon Cards
   ========================================================================== */
.gs-icon-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--gs-space-6);
	padding: 0 var(--gs-space-6);
	max-width: 1000px;
	margin: 0 auto;
}
.gs-icon-card {
	background: #fff;
	border: 1px solid var(--gs-gray-200);
	border-radius: var(--gs-radius-md);
	padding: var(--gs-space-6);
	text-align: center;
	transition: transform var(--gs-transition), box-shadow var(--gs-transition), border-color var(--gs-transition);
}
.gs-icon-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--gs-shadow-lg);
	border-color: var(--gs-teal);
}
.gs-icon-card a {
	display: block;
}
.gs-icon-card img {
	max-width: 100%;
	height: auto;
}
@media (max-width: 768px) {
	.gs-icon-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.gs-icon-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================================================
   Homepage Industry Section
   ========================================================================== */
.gs-industry-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gs-space-6);
	max-width: 1000px;
	margin: var(--gs-space-8) auto 0;
	padding: 0 var(--gs-space-6) var(--gs-space-10);
}
.gs-industry-card {
	background: #fff;
	border: 1px solid var(--gs-gray-200);
	border-radius: var(--gs-radius-md);
	padding: var(--gs-space-5);
	text-align: center;
	transition: transform var(--gs-transition), box-shadow var(--gs-transition);
}
.gs-industry-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--gs-shadow-md);
}
.gs-industry-card a {
	display: block;
}
.gs-industry-card img {
	max-width: 100%;
	height: auto;
}
.gs-industry-label {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-sm);
	font-weight: 500;
	color: var(--gs-text-secondary);
	margin-top: var(--gs-space-2);
}
@media (max-width: 768px) {
	.gs-industry-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ============================================================================
   Quote Enhancement
   ========================================================================== */
#quotes {
	position: relative;
}
#quotesOuter #quotes::before {
	content: '\201C';
	position: absolute;
	top: -10px;
	left: 16px;
	font-size: 80px;
	line-height: 1;
	color: var(--gs-teal);
	opacity: 0.25;
	font-family: Georgia, 'Times New Roman', serif;
	pointer-events: none;
}

/* ============================================================================
   CTA Band
   ========================================================================== */
.gs-cta-band {
	padding: var(--gs-space-16) var(--gs-space-6);
	text-align: center;
}
.gs-cta-band-inner {
	max-width: 700px;
	margin: 0 auto;
}
.gs-cta-band h2 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-4xl);
	font-weight: 700;
	color: #fff;
	margin: 0 0 var(--gs-space-4);
	letter-spacing: -0.01em;
	line-height: 1.2;
}
.gs-cta-band p {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-lg);
	color: rgba(255,255,255,0.8);
	margin: 0 0 var(--gs-space-8);
	line-height: 1.6;
}
.gs-cta-band .gs-cta-btn-white {
	display: inline-block;
	padding: 14px 36px;
	background-color: #fff;
	color: var(--gs-teal) !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	border-radius: var(--gs-radius);
	transition: transform var(--gs-transition), box-shadow var(--gs-transition);
	cursor: pointer;
}
.gs-cta-band .gs-cta-btn-white:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0,0,0,0.2);
	text-decoration: none;
	color: var(--gs-navy) !important;
}

/* ============================================================================
   Footer
   ========================================================================== */
.gs-footer {
	background-color: var(--gs-navy) !important;
	color: rgba(255,255,255,0.7);
	padding: var(--gs-space-16) 0 0 !important;
	text-align: left !important;
}
.gs-footer-inner {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 var(--gs-space-6);
}
.gs-footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--gs-space-10);
	padding-bottom: var(--gs-space-12);
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.gs-footer-col h4 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-sm);
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 0 0 var(--gs-space-5);
	padding: 0;
}
.gs-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
}
.gs-footer-col li {
	display: block;
	margin: 0;
	padding: 0;
	text-indent: 0;
}
/* Override staticPage.css bullet ::before */
.gs-footer-col li::before {
	content: none !important;
	display: none !important;
}
.gs-footer-col li a {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-sm);
	color: rgba(255,255,255,0.6) !important;
	text-decoration: none;
	line-height: 2.2;
	transition: color var(--gs-transition-fast);
}
.gs-footer-col li a:hover {
	color: #fff !important;
}
.gs-footer-social {
	display: flex;
	gap: var(--gs-space-4);
	margin-top: var(--gs-space-2);
}
.gs-footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	transition: background var(--gs-transition-fast);
}
.gs-footer-social a:hover {
	background: rgba(255,255,255,0.18);
}
.gs-footer-social img {
	width: 18px;
	height: 18px;
	opacity: 0.7;
	transition: opacity var(--gs-transition-fast);
	border-radius: 0;
}
.gs-footer-social a:hover img {
	opacity: 1;
}
.gs-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--gs-space-6) 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-sm);
	color: rgba(255,255,255,0.4);
	flex-wrap: wrap;
	gap: var(--gs-space-4);
}
.gs-footer-bottom a {
	color: rgba(255,255,255,0.4) !important;
	text-decoration: none;
	margin-left: var(--gs-space-5);
	transition: color var(--gs-transition-fast);
}
.gs-footer-bottom a:hover {
	color: rgba(255,255,255,0.8) !important;
}
@media (max-width: 768px) {
	.gs-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--gs-space-8);
	}
}
@media (max-width: 480px) {
	.gs-footer-grid {
		grid-template-columns: 1fr;
	}
	.gs-footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* ============================================================================
   Page Heroes (inner pages)
   ========================================================================== */
.gs-page-hero {
	background: linear-gradient(135deg, var(--gs-navy) 0%, #153250 50%, var(--gs-teal) 100%);
	padding: var(--gs-space-16) var(--gs-space-6);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.gs-page-hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	pointer-events: none;
}
.gs-page-hero h1 {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	color: #fff;
	margin: 0 0 var(--gs-space-4);
	letter-spacing: -0.02em;
	position: relative;
	z-index: 1;
}
.gs-page-hero p {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: var(--gs-text-lg);
	color: rgba(255,255,255,0.75);
	margin: 0;
	position: relative;
	z-index: 1;
}

/* ============================================================================
   Content Sections (alternating bands)
   ========================================================================== */
.gs-content-section {
	padding: var(--gs-space-12) var(--gs-space-6);
}
.gs-content-section:nth-child(even) {
	background-color: var(--gs-gray-50);
}

/* ============================================================================
   About page image
   ========================================================================== */
.gs-about-image {
	border-radius: var(--gs-radius-lg);
	box-shadow: var(--gs-shadow-lg);
	overflow: hidden;
	display: inline-block;
}
.gs-about-image img {
	display: block;
	border-radius: var(--gs-radius-lg);
}

/* ============================================================================
   Feature sections (aboutDAP alternating layout)
   ========================================================================== */
.gs-feature-section {
	padding: var(--gs-space-10) 0;
}
.gs-feature-layout {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: var(--gs-space-8);
	align-items: start;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 var(--gs-space-6);
}
.gs-feature-section-alt {
	background-color: var(--gs-gray-50);
	padding: var(--gs-space-10) 0;
}
.gs-feature-section-alt .gs-feature-layout {
	grid-template-columns: 1fr 200px;
}
.gs-feature-section-alt .gs-feature-icon {
	order: 2;
}
.gs-feature-section-alt .gs-feature-content {
	order: 1;
}
.gs-feature-icon {
	text-align: center;
}
.gs-feature-icon img {
	max-width: 100%;
	height: auto;
}
@media (max-width: 768px) {
	.gs-feature-layout,
	.gs-feature-section-alt .gs-feature-layout {
		grid-template-columns: 1fr;
	}
	.gs-feature-section-alt .gs-feature-icon {
		order: 0;
	}
	.gs-feature-section-alt .gs-feature-content {
		order: 0;
	}
	.gs-feature-icon {
		max-width: 150px;
		margin: 0 auto;
	}
}

/* ============================================================================
   Industry page cards
   ========================================================================== */
.gs-industry-cards-page {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--gs-space-8);
	padding: var(--gs-space-10) var(--gs-space-6);
	max-width: 1100px;
	margin: 0 auto;
}
.gs-industry-page-card {
	background: #fff;
	border: 1px solid var(--gs-gray-200);
	border-radius: var(--gs-radius-lg);
	padding: var(--gs-space-10) var(--gs-space-8);
	text-align: center;
	transition: transform var(--gs-transition), box-shadow var(--gs-transition);
}
.gs-industry-page-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--gs-shadow-lg);
}
.gs-industry-page-card img {
	max-width: 120px;
	margin-bottom: var(--gs-space-5);
}
.gs-industry-page-card .subhead-purple {
	text-align: center;
	border-left: none;
	padding-left: 0;
	font-size: var(--gs-text-2xl);
	margin-bottom: var(--gs-space-4);
}
.gs-industry-page-card p {
	text-align: left;
	font-size: var(--gs-text-base);
	line-height: 1.65;
	color: var(--gs-text-secondary);
	padding: 0;
}
.gs-industry-page-card-full {
	grid-column: 1 / -1;
	max-width: 550px;
	margin: 0 auto;
	width: 100%;
}
@media (max-width: 768px) {
	.gs-industry-cards-page {
		grid-template-columns: 1fr;
	}
}


.whoContainer {

    position: relative;
    width: 100%;
}

.whoContainer > div {
 	width: 200px;
    position: absolute;
}

.vidContainer {
    position: relative;
    width: 100%;
}
.vidContainer > div {
 	width: 560px;
 	height : 315px;
    position: absolute;
}

/* Responsive video embed wrapper */
.gs-video-wrap {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.gs-video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.right {
	text-align: right;
	vertical-align: top;
	padding-left: 50%;
	z-index: 3;
}

.headline-black {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 36px;
	color: #000;
	letter-spacing: -0.01em;
}

.mainheadline {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 44px;
	text-align: center;
	/*margin-top: 30px;*/
	padding-top: 0em;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.center {
	text-align: center;
}

.headline {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 36px;
	text-align: center;
	color: #0097A7;
	margin-top: 20px;
	text-align: center;
	letter-spacing: -0.01em;
}

.subhead {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 24px;
	text-align: center;
	color: #000;
}
.subhead-purple {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 30px;
	text-align: left;
	color: #1B3A5C;
	margin-top: 8px;
	margin-bottom: 12px;
	line-height: 1.3;
	letter-spacing: -0.01em;
	padding-left: 16px;
	border-left: 4px solid #0097A7;
}
.subhead-purple-withicon {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 30px;
	text-align: left;
	color: #1B3A5C;
	margin-top: 0px;
	margin-bottom: 20px;
	padding-left: 40px;
}

.monthsCost {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 14px;
	color: #000;
}
.monthsCostAsOf {
	padding-top: 5px;
	font-size: 10px;
}


.bodytext {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 18px;
	text-align: left;
	padding-left: 48px;
	padding-right: 48px;
	text-indent: 0px;
	line-height: 1.65;
}
.bullets {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 18px;
	text-align: left;
	line-height: 1.65;
	margin-bottom: 6px;
	padding-left: 20px;
	padding-right: 40px;
	text-indent: 0px;
	float: none;
	margin-left: 30px;
}
.GreenNav {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 24px;
	text-align: left;
	color: #0097A7;
}
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img,object,embed,video {
	max-width: 100%;
	text-align: left;
	float: none;
	right: 0px;
    margin-top: 0px;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width: 100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%; 
	padding-left : .05%;
	padding-right: .05%;
	max-width: 1140px;
	background-color: #FFF;
}

#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	text-align: center;
}

#Nav {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

#Main {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	max-height: 400px;
}

#sixicons {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	padding-bottom: 4px;
	text-align: center;
}

#Industry {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	background-color: #f8f9fb;
	padding-top: 40px;
	/*padding-bottom: 20px;*/
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}
#quotesOuter {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	padding-top: 48px;
	padding-bottom: 32px;
	min-height : 50px;
	background-color: #FFF;
}
#quotes {
	max-width: 820px;
	margin: 0 auto;
	padding: 32px 40px;
	background-color: #f8f9fb;
	border-radius: 12px;
	border-left: 4px solid #0097A7;
	box-shadow: 0 1px 4px rgba(0,0,0,0.06);
	font-size: 18px;
	line-height: 1.6;
	text-align: left;
	color: #1B3A5C;
	font-style: italic;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#footer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	padding-top: 60px;
	background-color: #1B3A5C;
	padding-bottom: 60px;
	text-align: center;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 13px;
	color: #FFF;
	letter-spacing: 0.05em;
}

#MainIcons {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	padding-bottom: 40px;
	text-align: center;
}

#mobile {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

#mobiledivarea {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	text-align: right;
	margin-top: -400px;
}
#maintext {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
	.gridContainer {
		width: 90.675%;
		padding-left: 1.1625%;
		padding-right: 1.1625%;
	}
	#LayoutDiv1 {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		background-color: #FFF;
	}
	#Nav {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		background-color: #FFF;
	}
	#Main {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		background-image: url(../images/gs2/homePage.jpg);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		
	}
	#sixicons {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		text-align: center;
		background-color: #FFF;
	}
	#Industry {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
	}

	#footer {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		text-align: center;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		font-size: 14px;
		color: #FFF;
	}
	#MainIcons {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		text-align: center;
		background-color: #FFF;
	}
	#mobile {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
	}
	#mobiledivarea {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
	}
	#maintext {
	clear: both;
	float: left;
	margin-left: 14px;
	width: 96%;
	display: block;
	background-color: #FFF;
	padding-left: 0px;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
	.gridContainer {
		width: 1080px;
		width: 87.36%; 
		max-width: 100%;
		padding-left: 0%;
		padding-right: 0%;
		margin: auto;
		padding-top: 0px;
		background: #ffffff;
	}
	#LayoutDiv1 {
		clear: both;
		float: left;
		margin-left: 0;
		width: 30%;
		display: block;
		padding-top: 10px;
		text-align: left;
	}
	#Nav {
		clear: none;
		float: none;
		margin-left: 0%;
		width: 100%;
		display: block;
		padding-top: 59px;
		padding-left: 0px;
		background-color: #FFF;
		margin-bottom: 0px;
	}
	#Main {
		clear: both;
		float: left;
		margin-left: 0px;
		width: 100%;
		display: block;
		background-image: url(../images/gs2/homePage.jpg);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		text-align: center;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		font-size: 44px;
		padding-top: 0px;
		margin-top: 0px;
	}
	#sixicons {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		text-align: center;
		padding-top: 0px;
		background-color: #FFF;
		text-align: center;
	}
	#Industry {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
	}

	#footer {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		text-align: center;
		font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		color: #FFF;
		font-size: 14px;
	}
	#footer a:link {
		text-decoration: none;
		color: #FFF;
	}
	#footer a:visited {
		text-decoration: none;
		color: #FFFFFF;
	}
	#MainIcons {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		text-align: center;
		padding-bottom: 20px;
		background-color: #FFF;
		cursor: pointer;
	}
	#mobile {
		clear: both;
		float: left;
		margin-left: 0;
		width: 100%;
		display: block;
		text-align: right;
		background-image: url(../images/gs2/homePage.jpg);
		background-size: 100% 100%;
		background-repeat: no-repeat;
}
	#mobiledivarea {
		clear: none;
		float: left;
		margin-left: 2.0408%;
		width: 100%;
		display: block;
	}
	#maintext {
	clear: both;
	float: left;
	margin-left: 0px;
	width: 100%;
	display: block;
	background-color: #FFF;
	padding: 0;
	padding-top: 20px;
	padding-bottom: 40px;
}
}

/* ============================================================================
   Modern UI Additions
   ========================================================================== */

/* CTA Button Classes */
.gs-cta-btn {
	display: inline-block;
	padding: 14px 36px;
	background-color: #0097A7;
	color: #fff !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	border-radius: 8px;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 151, 167, 0.3);
	cursor: pointer;
}
.gs-cta-btn:hover {
	background-color: #007d8a;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(0, 151, 167, 0.4);
	text-decoration: none;
	color: #fff !important;
}
.gs-cta-btn-outline {
	display: inline-block;
	padding: 14px 36px;
	background-color: transparent;
	color: #1B3A5C !important;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-decoration: none;
	border-radius: 8px;
	border: 2px solid #1B3A5C;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
	cursor: pointer;
}
.gs-cta-btn-outline:hover {
	background-color: #1B3A5C;
	color: #fff !important;
	transform: translateY(-1px);
	text-decoration: none;
}

/* Modern Table Styling */
#maintext table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	margin: 16px 0 24px;
	font-size: 16px;
	line-height: 1.5;
}
#maintext table th {
	background-color: #1B3A5C;
	color: #fff;
	text-align: left;
	padding: 14px 16px;
	font-weight: 600;
	font-size: 15px;
}
#maintext table td:not(.sqllink) {
	padding: 12px 16px;
	border-top: 1px solid #e5e7eb;
	vertical-align: top;
}
#maintext table.resources tr:nth-child(even) td:not(.sqllink) {
	background-color: #f8f9fb;
}
#maintext table.resources tr:hover td:not(.sqllink) {
	background-color: #eef6f7;
}

/* Link Hover Transitions */
a {
	transition: color 0.15s ease;
}
.GreenLinks, #maintext a {
	color: #0097A7;
	text-decoration: none;
	transition: color 0.15s ease;
}
.GreenLinks:visited, #maintext a:visited {
	color: #1B3A5C;
}
.GreenLinks:hover, #maintext a:hover {
	color: #007d8a;
	text-decoration: underline;
}

/* Feature/Industry Icon Hover Effects */
#MainIcons img, #Industry img {
	transition: transform 0.2s ease, opacity 0.2s ease;
	border-radius: 8px;
}
#MainIcons img:hover, #Industry img:hover {
	transform: scale(1.05);
}

/* Footer Link Spacing */
#footer span {
	display: inline-block;
	margin: 0 8px;
}
#footer img {
	opacity: 0.8;
	transition: opacity 0.2s ease;
}
#footer img:hover {
	opacity: 1;
}

/* Selection Styling */
::selection {
	background-color: #0097A7;
	color: #fff;
}
::-moz-selection {
	background-color: #0097A7;
	color: #fff;
}

/* DB Import Wizard: column role grid row highlighting */
.gs-import-timestamp-row { background-color: #FFF8E1 !important; }
.gs-import-timestamp-row .x-grid-cell { color: #E65100; }
.gs-import-compid-row { background-color: #E8F5E9 !important; }