/* --- Modern Blue Landing Page Inspired by COVID Example --- */
body {
	background: #eaf2fb !important;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	color: #1a2a3a;
	margin: 0;
	padding: 0;
}

.main-hero {
	background: linear-gradient(120deg, #009fe3 60%, #009fe3 100%);
	color: #fff;
	text-align: center;
	padding: 60px 20px 48px 20px;
	border-radius: 0 0 32px 32px;
	position: relative;
	overflow: hidden;
}
.main-hero h1 {
	font-size: 2.6rem;
	font-weight: 800;
	margin-bottom: 18px;
	letter-spacing: 1px;
}
.main-hero p {
	font-size: 1.2rem;
	margin-bottom: 32px;
	color: #eaf6ff;
}
.main-hero .hero-btn {
	background: #fff;
	color: #009fe3;
	font-weight: 700;
	border: none;
	border-radius: 24px;
	font-size: 1.1rem;
	padding: 14px 38px;
	box-shadow: 0 2px 12px rgba(0,91,187,0.10);
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
	text-decoration: none;
	display: inline-block;
}
.main-hero .hero-btn:hover {
	background: #009fe3;
	color: #fff;
}

.section-card {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0,91,187,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
	margin: 32px auto;
	padding: 36px 28px;
	max-width: 700px;
}
.section-card h2 {
	color: #009fe3;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 18px;
}
.section-card p {
	color: #1a2a3a;
	font-size: 1.08rem;
	margin-bottom: 18px;
}
.section-card .card-btn {
	background: #009fe3;
	color: #fff;
	border: none;
	border-radius: 24px;
	font-size: 1rem;
	padding: 12px 32px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(0,91,187,0.10);
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s;
	display: inline-block;
}
.section-card .card-btn:hover {
	background: #009fe3;
}

.section-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: center;
	margin: 32px auto;
	max-width: 900px;
}
.section-col {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(0,91,187,0.08);
	flex: 1 1 320px;
	min-width: 280px;
	max-width: 420px;
	padding: 28px 22px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.section-col img {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 18px;
}
.section-col h3 {
	color: #009fe3;
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 10px;
}
.section-col p {
	color: #1a2a3a;
	font-size: 1rem;
	margin-bottom: 10px;
}
.section-col .col-btn {
	background: #009fe3;
	color: #fff;
	border: none;
	border-radius: 24px;
	font-size: 1rem;
	padding: 10px 26px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(0,91,187,0.10);
	cursor: pointer;
	text-decoration: none;
	transition: background 0.2s;
	display: inline-block;
}
.section-col .col-btn:hover {
	background: #005bbb;
}

.about-section {
	background: #009fe3;
	color: #fff;
	border-radius: 24px;
	margin: 40px auto 0 auto;
	padding: 48px 24px 36px 24px;
	max-width: 900px;
	text-align: center;
}
.about-section h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 18px;
}
.about-section p {
	color: #eaf6ff;
	font-size: 1.1rem;
	margin-bottom: 0;
}

.footer-socials {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-bottom: 10px;
}
.footer-social-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,91,187,0.10);
	transition: transform 0.18s, box-shadow 0.18s;
	object-fit: cover;
	background: #fff;
}
.footer-social-icon:hover {
	transform: scale(1.12);
	box-shadow: 0 4px 16px rgba(0,91,187,0.18);
}

@media (max-width: 900px) {
	.section-columns {
		flex-direction: column;
		gap: 18px;
		max-width: 98vw;
	}
	.section-col {
		max-width: 98vw;
	}
	.main-hero {
		padding: 38px 8px 28px 8px;
		border-radius: 0 0 18px 18px;
	}
	.about-section {
		padding: 28px 8px 18px 8px;
		border-radius: 12px;
	}
}
/* Footer Socials */
.footer-socials {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	margin-bottom: 10px;
}
.footer-social-icon {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,91,187,0.10);
	transition: transform 0.18s, box-shadow 0.18s;
	object-fit: cover;
	background: #fff;
}
.footer-social-icon:hover {
	transform: scale(1.12);
	box-shadow: 0 4px 16px rgba(0,91,187,0.18);
}
/* --- Modern Corporate Design --- */
body {
	background: #f4f7fb !important;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	color: #222;
}

.container, .mobile-shell {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 24px rgba(0,91,187,0.08), 0 1.5px 6px rgba(0,0,0,0.04);
	margin-top: 32px;
	margin-bottom: 32px;
}

/* Header */
.text-header {
	font-size: 13px;
	color: #005bbb;
	letter-spacing: 1px;
	font-weight: 700;
}

/* Editorial box: déjà stylisé plus haut */

/* Section Titles */
.h1, .h2, .h3 {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: 700;
	color: #005bbb;
	margin-bottom: 10px;
}
.h1 { font-size: 32px; line-height: 1.2; }
.h2 { font-size: 26px; line-height: 1.2; }
.h3 { font-size: 20px; line-height: 1.3; }

/* Paragraphs */
p, .text, .text-footer1, .text-footer2, .text-footer3 {
	font-size: 15px;
	color: #333;
	line-height: 1.7;
}

/* Buttons */
.text-button, .text-button2 {
	background: linear-gradient(90deg, #009fe3 0%, #005bbb 100%);
	color: #fff !important;
	border: none !important;
	border-radius: 24px;
	font-weight: 700;
	font-size: 15px;
	padding: 12px 32px;
	box-shadow: 0 2px 8px rgba(0,91,187,0.10);
	transition: background 0.2s;
}
.text-button a, .text-button2 a {
	color: #fff !important;
	text-decoration: none;
}
.text-button:hover, .text-button2:hover {
	background: linear-gradient(90deg, #005bbb 0%, #009fe3 100%);
}

/* Cards & Columns */
.p30, .p30-15, .p40 {
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(0,91,187,0.06);
	background: #fff;
}
.pb10, .pb20, .pb25, .pb30 {
	margin-bottom: 10px;
}
.fluid-img img, .fluid-img {
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0,91,187,0.07);
	max-width: 100%;
	height: auto;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(90deg, #eaf6ff 0%, #f4f7fb 100%);
	border-radius: 18px;
	box-shadow: 0 2px 12px rgba(0,91,187,0.06);
	padding: 40px 30px;
	margin: 32px 0;
}

/* Footer */
.text-footer1 {
	font-size: 17px;
	color: #005bbb;
	font-weight: 700;
}
.text-footer2, .text-footer3 {
	color: #7a7a7a;
	font-size: 13px;
}
.link3-u {
	color: #009fe3;
	text-decoration: underline;
}

/* Social Icons */
.img a img {
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,91,187,0.10);
	transition: transform 0.2s;
}
.img a img:hover {
	transform: scale(1.08);
	box-shadow: 0 4px 16px rgba(0,91,187,0.18);
}

/* Responsive improvements */
@media only screen and (max-width: 700px) {
	.container, .mobile-shell {
		width: 98% !important;
		min-width: 98% !important;
		margin: 10px auto !important;
		border-radius: 12px;
	}
	.editorial-box, .cta-section {
		padding: 18px 8px !important;
		border-radius: 10px;
	}
	.h1 { font-size: 22px; }
	.h2 { font-size: 18px; }
	.h3 { font-size: 15px; }
}
/* --- Editorial Section --- */
.editorial-box {
	background: #fff;
	border-radius: 18px;
	box-shadow: 0 4px 18px rgba(0, 91, 187, 0.10), 0 1.5px 6px rgba(0,0,0,0.04);
	padding: 32px 32px 22px 32px;
	margin: 32px 0 24px 0;
	position: relative;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	border-left: 6px solid #005bbb;
}
.editorial-header {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.editorial-icon {
	width: 36px;
	height: 36px;
	margin-right: 12px;
	opacity: 0.85;
}
.editorial-title {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #005bbb;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
.editorial-headline {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 22px;
	color: #222;
	margin: 8px 0 18px 0;
	line-height: 1.3;
	font-weight: 700;
}
.editorial-text {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #333;
	line-height: 1.7;
	margin-bottom: 18px;
}
.editorial-signature {
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #005bbb;
	font-weight: 500;
	border-top: 1px solid #e0e7ef;
	padding-top: 10px;
	margin-top: 10px;
}
.editorial-name {
	font-weight: 700;
	color: #005bbb;
}
.editorial-org {
	color: #7a7a7a;
	font-size: 13px;
}
/* Fichier CSS extrait de corporate.html */
body { padding:0 !important; margin:0 !important; display:block !important; min-width:100% !important; width:100% !important; background:#ffffff; -webkit-text-size-adjust:none }
a { color:#009fe3; text-decoration:none }
p { padding:0 !important; margin:0 !important } 
img { -ms-interpolation-mode: bicubic; /* Allow smoother rendering of resized image in Internet Explorer */ }
.mcnPreviewText { display: none !important; }

/* Mobile styles */
@media only screen and (max-device-width: 480px), only screen and (max-width: 480px) {
	.mobile-shell { width: 100% !important; min-width: 100% !important; }
	.bg { background-size: 100% auto !important; -webkit-background-size: 100% auto !important; }
	.text-header,
	.m-center { text-align: center !important; }
	.center { margin: 0 auto !important; }
	.container { padding: 0px 10px 10px 10px !important }
	.td { width: 100% !important; min-width: 100% !important; }
	.text-nav { line-height: 28px !important; }
	.p30 { padding: 15px !important; }
	.m15 { height: 15px !important; }
	.p30-15 { padding: 30px 15px !important; }
	.p40 { padding: 20px !important; }
	.m-td,
	.m-hide { display: none !important; width: 0 !important; height: 0 !important; font-size: 0 !important; line-height: 0 !important; min-height: 0 !important; }
	.m-block { display: block !important; }
	.fluid-img img { width: 100% !important; max-width: 100% !important; height: auto !important; }
	.column,
	.column-top,
	.column-empty,
	.column-empty2,
	.column-dir-top { float: left !important; width: 100% !important; display: block !important; }
	.column-empty { padding-bottom: 10px !important; }
	.column-empty2 { padding-bottom: 20px !important; }
	.content-spacing { width: 15px !important; }
}
