/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    background-color: #1e2a38;
    padding: 20px;
    text-align: center;
    color: white;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.header h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* Main Styles */
.main {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #f4f4f4;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Section Styles */
section {
    margin-bottom: 40px;
}

section h1, section h2, section h3, section h4 {
    color: #1e2a38;
}

.intro h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.definitions h2, .data-collection h2, .use-of-data h3, .data-retention h2, .data-transfer h2, .data-disclosure h2, .security h2, .contact h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #1e2a38;
    padding-bottom: 10px;
}

.definitions h3, .data-collection h3, .data-disclosure h3, .security h2 {
    font-size: 1.8rem;
    margin-top: 15px;
}

.definitions h4, .data-collection h4 {
    font-size: 1.6rem;
    margin-top: 10px;
}

section p {
    font-size: 1rem;
    margin-bottom: 20px;
}

section ul {
    list-style-type: disc;
    padding-left: 20px;
}

section ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}

section a {
    color: #007bff;
    text-decoration: none;
}

section a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.contact ul li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Enhanced Styling for Elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .logo-container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 10px;
    }

    .main {
        padding: 20px;
    }
}

/* Styles du Pied de Page */
.footer {
    background-color: #1e2a38;
    color: white;
    padding: 20px;
    text-align: center;
}

.footer a {
    color: #f4f4f4;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}