/* Base Styles */
:root {
    --primary-color: #253785;
    --primary-light: #3a4fa0;
    --secondary-color: #f5873f;
    --text-color: #333333;
    --light-text: #666666;
    --white-text: #ffffff;
    --bg-color: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --blue-light: #e6f0ff;
    --green-light: #e6fff0;
    --beige-light: #fff8e6;
    --red-light: #ffebeb;
    --radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

section {
    padding: 60px 0;
}

/* Buttons */
.btn-primary,
.btn-strategy,
.btn-tool,
.btn-story,
.btn-forum {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    font-size: 16px;
}

.btn-primary:hover {
    background: #e07530;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 135, 63, 0.3);
    color: white;
}

.btn-strategy {
    background-color: white;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    font-size: 14px;
    padding: 10px 20px;
}

.btn-strategy:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-tool {
    background-color: var(--primary-light);
    color: white;
    font-size: 14px;
    padding: 10px 20px;
}

.btn-tool:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-tool.btn-orange {
    background-color: var(--secondary-color);
}

.btn-tool.btn-orange:hover {
    background-color: #e07530;
}

.btn-tool.btn-purple {
    background-color: #9c59b6;
}

.btn-tool.btn-purple:hover {
    background-color: #8e44ad;
}

.btn-story {
    color: var(--primary-color);
    padding: 8px 16px;
    font-size: 14px;
    background: transparent;
    border: none;
    text-decoration: underline;
}

.btn-story:hover {
    color: var(--secondary-color);
}

.btn-forum {
    background-color: white;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    width: 100%;
    margin-top: 20px;
}

.btn-forum:hover {
    background-color: var(--light-bg);
}

/* Header */
.header {
    background-color: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: white;
    font-style: italic;
}

.nav-menu .menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu .menu li a {
    color: white;
    font-weight: 500;
}

.nav-menu .menu li a:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu li a {
    display: block;
    padding: 8px 0;
    color: white;
    font-weight: 500;
}

.mobile-menu li a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(37, 55, 133, 0.9), rgba(37, 55, 133, 0.9)), url('https://via.placeholder.com/1920x1080/253785/253785');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(to right, #a8e063, #f9d423);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Section Headers */
h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    color: var(--light-text);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Concepts Section */
.concepts {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.concepts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.concept-card {
    border-radius: var(--radius);
    padding: 30px;
    color: var(--text-color);
    transition: var(--transition);
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blue-card {
    background-color: var(--blue-light);
}

.green-card {
    background-color: var(--green-light);
}

.beige-card {
    background-color: var(--beige-light);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.concept-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Démystification Section */
.demystification {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.myth-reality-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.myth-reality-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.myth-card, .reality-card {
    padding: 25px;
    border-radius: var(--radius);
}

.myth-card {
    background-color: var(--red-light);
}

.reality-card {
    background-color: var(--green-light);
}

.myth-header, .reality-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.myth-header i {
    color: #e74c3c;
    font-size: 1.2rem;
}

.reality-header i {
    color: #2ecc71;
    font-size: 1.2rem;
}

.myth-header h3, .reality-header h3 {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Parcours Section */
.parcours {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
}

.parcours h2, .parcours .section-description {
    color: white;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.strategy-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    transition: var(--transition);
}

.strategy-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.strategy-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.strategy-features {
    margin: 20px 0;
    list-style-type: disc;
    padding-left: 20px;
}

.strategy-features li {
    margin-bottom: 5px;
}

.orange-card .card-icon {
    color: var(--secondary-color);
}

.blue-card .card-icon {
    color: #3498db;
}

.green-card .card-icon {
    color: #2ecc71;
}

/* Histoires Section */
.histoires {
    background-color: var(--light-bg);
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.story-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-quote {
    font-style: italic;
    margin-bottom: 10px;
}

.story-author {
    font-weight: 600;
    margin-bottom: 20px;
}

/* Outils Section */
.outils {
    background-color: var(--bg-color);
    padding: 80px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tool-card {
    background-color: var(--light-bg);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
    background-color: white;
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.tool-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.tool-card p {
    margin-bottom: 20px;
}

/* Communauté Section */
.communaute {
    background: linear-gradient(135deg, #f5873f, #e94057);
    padding: 80px 0;
    color: white;
}

.communaute h2, .communaute .section-description {
    color: white;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.forum-box, .newsletter-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
}

.forum-box h3, .newsletter-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.forum-topics {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.forum-topic {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.topic-icon {
    font-size: 1.5rem;
    color: white;
}

.topic-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.topic-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

.newsletter-features {
    margin: 20px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.feature i {
    color: #2ecc71;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
}

.form-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 10px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    padding: 20px;
    text-align: center;
}

.cookie-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-accept-cookies, .btn-refuse-cookies {
    padding: 10px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-accept-cookies {
    background-color: var(--secondary-color);
    color: white;
}

.btn-accept-cookies:hover {
    background-color: #e07530;
}

.btn-refuse-cookies {
    background-color: transparent;
    color: var(--text-color);
}

.btn-refuse-cookies:hover {
    background-color: var(--light-bg);
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    display: none;
}

.success-modal.active {
    display: flex;
}

.success-content {
    background-color: white;
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.success-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.success-content p {
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: #121b30;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
    font-style: italic;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links-container {
    flex: 2;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Policy Pages */
.policy-page {
    padding: 80px 0;
}

.policy-page h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.5rem;
    text-align: left;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .community-content {
        grid-template-columns: 1fr;
    }
    
    .myth-reality-pair {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .concepts-grid,
    .strategy-grid,
    .stories-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
}