/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f4ff 0%, #fff0ff 100%);
}

/* Main Content */
main {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
    padding-bottom: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D78EEC 0%, #C930CE 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(199, 48, 206, 0.1), rgba(215, 142, 236, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.divider2 {
    width: 150px;
    height: 3px;
    background: white;
    border: none;
    margin: 20px auto 30px;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.policy-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #C930CE, #D78EEC, #F127FF);
    border-radius: 20px 20px 0 0;
}

.section-title {
    color: #2d1b69;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #D78EEC;
    position: relative;
}

.subsection {
    margin-bottom: 35px;
}

.subsection h3 {
    color: #8b2eb5;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.subsection h4 {
    color: #C930CE;
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subsection p, .subsection li {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.subsection ul {
    margin: 15px 0;
    padding-left: 25px;
}

.subsection li {
    margin-bottom: 8px;
}

.subsection a {
    color: #C930CE;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.subsection a:hover {
    color: #8b2eb5;
    text-decoration: underline;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(215, 142, 236, 0.1), rgba(201, 48, 206, 0.05));
    border-left: 5px solid #D78EEC;
    padding: 20px;
    margin: 25px 0;
    border-radius: 0 10px 10px 0;
}

.important-note {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    border: 2px solid #FFD700;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.contact-info {
    background: linear-gradient(135deg, #2d1b69, #8b2eb5);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    border: 2px solid #D78EEC;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info h4 {
    margin-bottom: 15px;
    font-size: 20px;
    color: white;
    font-weight: 700;
}

.contact-info p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
    color: white;
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block;
    margin: 5px 0;
    border: 2px solid white;
}

.contact-info a:hover {
    color: white;
    text-decoration: underline;
}

/* Navigation rapide */
.quick-nav {
    position: sticky;
    top: 90px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    z-index: 100;
}

.quick-nav h3 {
    color: #2d1b69;
    font-size: 18px;
    margin-bottom: 15px;
}

.nav-links-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.nav-links-quick a {
    color: #8b2eb5;
    text-decoration: none;
    padding: 8px 15px;
    border: 2px solid #D78EEC;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-links-quick a:hover {
    background: #D78EEC;
    color: white;
}

/* Footer Styles */
.footer {
    background: #2d1b69;
    color: white;
    padding: 50px 20px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.footer-image {
    width: 60px;
    height: 60px;
}

.footer-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 700;
}

.footer-text p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-separator {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-right {
    display: flex;
    gap: 60px;
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #D78EEC;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #D78EEC;
}

/* Scroll fluide */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .content-section {
        padding: 40px 15px;
    }

    .policy-container {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .subsection h3 {
        font-size: 18px;
    }

    .subsection h4 {
        font-size: 14px;
    }

    .quick-nav {
        position: static;
        margin-bottom: 20px;
        padding: 15px;
    }

    .nav-links-quick {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links-quick a {
        text-align: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        text-align: center;
    }

    .footer-separator {
        width: 80%;
        height: 1px;
    }

    .footer-right {
        justify-content: center;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
        padding: 0 10px;
    }

    .policy-container {
        padding: 20px 15px;
    }

    .section-title {
        font-size: 20px;
    }

    .subsection h3 {
        font-size: 16px;
    }

    .subsection h4 {
        font-size: 13px;
    }

    .subsection p, .subsection li {
        font-size: 14px;
    }

    .highlight-box, .important-note {
        padding: 15px;
        margin: 20px 0;
    }

    .contact-info {
        padding: 20px;
    }

    .quick-nav {
        padding: 10px;
    }

    .nav-links-quick a {
        padding: 6px 12px;
        font-size: 12px;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}