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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.4;
    color: #333;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4a154b;
    color: white;
}

.btn-primary:hover {
    background-color: #9100c7;
}

.btn-secondary {
    border: 1px solid #4a154b; /* Épaisseur et couleur de la bordure */
    background-color: transparent;
    color: #4a154b;
    padding: 10px 20px; /* Ajustez si nécessaire */
    border-radius: 4px; /* Conserve les coins arrondis */
}

.btn-secondary:hover {
    background-color: #f4f0f5;
}

.btn-white {
    background-color: white;
    color: #4a154b;
    border: 1px solid white;
}

.btn-white:hover {
    background-color: #f4f0f5;
    color: #4a154b;
}

.btn-large {
    padding: 12px 24px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo span {
    color: #4a154b;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: 500;
    color: #454245;
}

.nav-links a:hover {
    color: #4a154b;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero section */
.hero {
    padding: 100px 0 80px;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
}

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

.hero .subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-image {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Trusted by section */
.trusted-by {
    padding: 20px 0;
    text-align: center;
    background-color: #f4f0f5;
}

.trusted-by p {
    color: #454245;
    margin-bottom: 20px;
}

.logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.logos img {
    height:60px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logos img:hover {
    opacity: 1;
}

/* Features section */
.features {
    padding: 80px 0;
    text-align: center;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
}

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

.feature-card {
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: #4a154b;
    margin-bottom: 20px;
}

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

/* Product showcase */
.product-showcase {
    padding: 80px 0;
    background-color: #f4f0f5;
}

.product-showcase .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.showcase-content {
    flex: 1;
}

.showcase-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.showcase-image img {
    width: 100%;
    display: block;
}

.product-showcase h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.feature-list {
    margin: 25px 0;
}

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

.feature-list i {
    color: #4a154b;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
}

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

.testimonial-card {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #454245;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    border-radius: 50%;
}

.author .name {
    font-weight: 600;
}

.author .company {
    color: #696969;
    font-size: 0.9rem;
}

/* CTA section */
.cta-section {
    padding: 80px 0;
    background-color: #4a154b;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

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

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    font-size: 1.2rem;
    color: #aaa;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
    color: #aaa;
    font-size: 0.9rem;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .product-showcase .container {
        flex-direction: column;
    }
    
    .showcase-content, .showcase-image {
        flex: none;
        width: 100%;
    }
    
    .showcase-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .feature-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Hero Slider - Version corrigÃ©e */
.hero-slider {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
    background: #fffff;
    height: 90vh; /* DÃ©placer la hauteur ici */
    max-height: 800px;
    min-height: 400px;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.slide.active {
    opacity: 1;
}

.slide img {
    max-width: 90%; /* Laisse un petit espace */
    max-height: 90%;
      border-radius: 12px; 
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    
    
    /* Ajoutez ces nouvelles propriÃ©tÃ©s */
  /* Ajustez cette valeur selon vos prÃ©fÃ©rences */
    overflow: hidden; /* Important pour que le radius s'applique correctement */
   
}

/* ContrÃ´les du slider */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.slider-controls button {
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-controls button:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.05);
}

.dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.2);
}

.dot.active {
    background: #2c3e50;
    transform: scale(1.3);
    border-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 50vh;
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 40vh;
        min-height: 250px;
    }
}

/* Styles spÃ©cifiques pour les tableaux de bord */
.slide.active img {
    background: #fffff; /* Fond blanc pour les tableaux */
    padding: 20px;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .slides {
        height: 60vh;
    }
}

@media (max-width: 992px) {
    .slides {
        height: 50vh;
    }
}

@media (max-width: 768px) {
    .slides {
        height: 40vh;
        min-height: 300px;
    }
    
    .slider-controls button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .slides {
        height: 35vh;
        min-height: 250px;
    }
    
    .slide img {
        padding: 10px;
    }
    
    .slider-controls {
        bottom: 15px;
    }
}
/* Pricing Hero */
.pricing-hero {
    padding: 150px 0 60px;
    background-color: #4a154b;
    color: white;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-hero .subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    font-weight: 500;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #4a154b;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    background-color: #36c5f0;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Pricing Tables */
.pricing-tables {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.pricing-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border: 2px solid #4a154b;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #4a154b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0;
}

.price .amount {
    color: #4a154b;
}

.price .period {
    font-size: 1rem;
    font-weight: normal;
    color: #696969;
}

.pricing-header p {
    color: #696969;
}

.pricing-features {
    margin: 25px 0;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features i {
    color: #4a154b;
    margin-top: 3px;
}

.pricing-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    background-color: transparent;
    color: #4a154b;
    border: 1px solid #4a154b;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #f4f0f5;
}

.hidden {
    display: none;
}

/* FAQ */
.pricing-faq {
    margin-top: 80px;
    text-align: center;
}

.pricing-faq h2 {
    font-size: 2rem;
    margin-bottom: 50px;
}

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

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #4a154b;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 120px 0 40px;
    }
    
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .toggle-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .pricing-hero {
        padding: 100px 0 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
/* Demo Hero */
.demo-hero {
    padding: 150px 0 80px;
    background-color: #4a154b;
    color: white;
}

.demo-hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.demo-hero .hero-content {
    flex: 1;
}

.demo-hero .hero-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.demo-hero .hero-image img {
    width: 100%;
    display: block;
}

.demo-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.demo-hero .hero-buttons {
    display: flex;
    gap: 15px;
}

.demo-hero .btn i {
    margin-right: 8px;
}

/* Demo Benefits */
.demo-benefits {
    padding: 20px 0;
    text-align: center;
}

.demo-benefits h2 {
    font-size: 2rem;
    margin-bottom: 60px;
}

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

.benefit-card {
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card .icon {
    font-size: 2.5rem;
    color: #4a154b;
    margin-bottom: 20px;
}

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

/* Demo Form */
.demo-form-section {
    padding: 80px 0;
    background-color: #f4f0f5;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #4a154b;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #454245;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4a154b;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-submit {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

/* Demo Testimonials */
.demo-testimonials {
    padding: 80px 0;
    text-align: center;
}

.demo-testimonials h2 {
    font-size: 2rem;
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #454245;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author img {
    border-radius: 50%;
}

.author .name {
    font-weight: 600;
}

.author .company {
    color: #696969;
    font-size: 0.9rem;
}

/* Demo CTA */
.demo-cta {
    padding: 80px 0;
    background-color: #4a154b;
    color: white;
    text-align: center;
}

.demo-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.demo-cta .btn i {
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .demo-hero .container {
        flex-direction: column;
    }
    
    .demo-hero .hero-content,
    .demo-hero .hero-image {
        flex: none;
        width: 100%;
    }
    
    .demo-hero .hero-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .demo-hero {
        padding: 120px 0 60px;
    }
    
    .demo-hero h1 {
        font-size: 2rem;
    }
    
    .demo-hero .hero-buttons {
        flex-direction: column;
    }
    
    .demo-hero .btn {
        width: 100%;
        text-align: center;
    }
    
    .form-container {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .demo-hero {
        padding: 100px 0 40px;
    }
    
    .demo-hero h1 {
        font-size: 1.8rem;
    }
    
    .demo-hero .subtitle {
        font-size: 1rem;
    }
    
    .demo-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .demo-cta .btn {
        width: 100%;
        max-width: 250px;
    }
}
/* Animation texte rotatif */
.rotating-text {
    position: relative;
    display: inline-block;
    color: #9100c7; /* Couleur d'accent */
    min-width: 200px;
    text-align: left;
}

.rotating-text::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #4a154b;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
.rotating-text {
    transition: opacity 0.5s ease, color 0.3s ease;
    vertical-align: top;
    display: inline-block;
}
/* Conteneur principal */
.hero-container {
    background: linear-gradient(135deg, #d4effe 0%, #e5eeff 100%);
    color: #000000;
    padding: 60px 40px;
    border-radius: 12px;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Contenu texte */
.content {
    flex: 1;
    min-width: 300px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Bouton */
.cta-button {
    display: inline-block;
    background: white;
    color: #6e45e2;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    background: #f8fafc;
}

/* Image */
.slack-image {
    flex: 1;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    height: auto;
}

/* Menu compte */
.account-menu {
    margin-top: 30px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.account-menu strong {
    display: block;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .slack-image {
        max-width: 100%;
    }
    
    h1 {
        font-size: 2rem;
    }
}
.privacy-link {
    color: #4A154B; /* violet Corvix */
    text-decoration: underline;
    font-weight: 500;
}

.privacy-link:hover {
    color: #350D36; /* violet plus foncé */
    text-decoration: none;
}
.badge-bientot {
    font-size: 12px;
    color: white;
    background: #884EA0;
    padding: 2px 6px;
    border-radius: 6px;
    margin-left: 5px;
}

.nav-disabled {
    color: #aaa;
    cursor: not-allowed;
    margin-left: 15px;
    font-weight: 500;
}
