/* ============================= */
/* RÉGLAGES GÉNÉRAUX */
/* ============================= */

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #333;
}

/* ============================= */
/* HEADER */
/* ============================= */

header {
    background-color: #dbeafe; /* bleu clair */
    padding: 20px 40px;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #1e3a8a; /* bleu foncé */
    margin: 0;
}

/* Navigation */
nav a {
    color: #1e3a8a;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
}

nav a:hover {
    color: #0f2c6b;
    text-decoration: underline;
}

/* ============================= */
/* CONTENU PRINCIPAL */
/* ============================= */

main.content {
    padding: 40px;
    max-width: 1200px;
}

/* ============================= */
/* TITRES */
/* ============================= */

.page-title {
    text-align: center;
    font-size: 32px;
    color: #1e3a8a;
    margin-bottom: 30px;
}

/* ============================= */
/* PARAGRAPHES */
/* ============================= */

main.content p {
    text-indent: 1em;
    margin-bottom: 30px;
}

/* ============================= */
/* 3 IMAGES DU HAUT */
/* ============================= */

.solutions-top {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.solutions-top img {
    width: 320px;
    height: auto;
    object-fit: cover;
}

/* ============================= */
/* SECTION BAS */
/* ============================= */

.solutions-bottom-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Texte gauche */
.solutions-text ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.solutions-text li {
    margin-bottom: 15px;
    font-size: 16px;
}

.solutions-text li::before {
    content: "• ";
    color: #1e3a8a;
    font-weight: bold;
}

/* Images droite */
.solutions-images {
    display: flex;
    gap: 20px;
}

.solutions-images img {
    width: 250px;
    height: auto;
}



/* ============================= */
/* PAGE SÉCURITÉ 1 */
/* ============================= */

.security-image {
    margin-bottom: 30px;
}

.security-image img {
    width: 100%;
    height: auto;
 
}

.security2-image img {
    width: 100%;
    height: auto;
     object-fit: cover;
}




.security-list ul {
    list-style: none;
    padding-left: 0;
}

.security-list li {
    margin-bottom: 12px;
}

.security-list li::before {
    content: "• ";
    color: #1e3a8a;
    font-weight: bold;
}

/* ============================= */
/* PAGE SÉCURITÉ 2 */
/* ============================= */

.security-section {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* Texte gauche */
.security-text {
    flex: 1;
}

.security-text ul {
    list-style: none;
    padding-left: 0;
}

.security-text li {
    margin-bottom: 12px;
}

.security-text li::before {
    content: "• ";
    color: #1e3a8a;
    font-weight: bold;
}

/* Images droite */
.security-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.security-section {
	display: flex;
	gap: 25px
	align-item: flex-start:
}

.security-text {
	flext: 1.2;
}

.security-row {
    display: flex;
    gap: 20px;
}

.security-row img {
    width: 260px;
    height: 200px;
    object-fit: cover;
	object-position: center;
}

.security-row img[src*="securite4"] {
    width: 260px;
	height: 200px;
	object-fit: cover;
	object-position: 15% center;
}

.images-caption{
	text-align: center;
	margin-top: 40px;
	font-style: italic;
	color: #555;
}



/* ============================= */
/* PAGE CONTACT STRUCTURÉE */
/* ============================= */

.contact-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Colonnes */

.contact-left {
    flex: 1;
}

.contact-right {
    flex: 1.2;
}

/* Formulaire */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 50px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    width: 150px;
    padding: 10px;
    background-color: #1e3a8a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0f2c6b;
}

.form-note {
    font-size: 14px;
    color: #555;
}

/* Image principale droite */

.contact-right img {
    width: 300px;
    height: 220px;
    object-fit: cover;
    margin-bottom: 25px;
}

/* Bloc texte droite */

.contact-info p {
    margin-bottom: 18px;
    line-height: 1.6;
}

/* Images du bas */

.contact-bottom-images {
    display: flex;
    gap: 60px;
    margin: 25px 0 25px 0;
}

.contact-bottom-images img {
    width: 220px;
    height: 170px;
    object-fit: contain;
	background-color: #fff;
}

/* Adresse */

/* Utilitaire pour empêcher un retour à la
 ligne */
.no-break{
	white-space:nowrap;
}


.address {
    margin-top: 20px;
    line-height: 1.6;
}


/* ============================= */
/* FOOTER */
/* ============================= */

footer {
    margin-top: 60px;
    padding: 20px 40px;
    font-size: 14px;
    color: #555;
}

