/* Import des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Paytone+One&display=swap');
/* Variables CSS pour les couleurs et styles */
:root {
    --primary-blue: rgb(28, 37, 110);
    --primary-blue-hover: rgb(70, 75, 113);
    --text-color: rgb(16, 15, 15);
    --background-color: white;
    --section-background: #f6faff;
    --shadow-light: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styles de base */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Classes utilitaires */
.blue-text {
    color: var(--primary-blue);
}

.highlight {
    font-weight: bold;
    color: #2c3e50;
}

/* Contenu principal */
.main-content {
    margin-top: 80px;
}

/* Titres de section */
.section-title {
    text-align: left;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 600;
    max-width: 1200px;
    margin:0 auto;
}