
.blog-comments {
    padding: 20px;
    background-color: #f9f9fb;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
#comment_blog_authorName,
#comment_blog_content {
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 10px;
}

.blog-comments h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.comment {
    padding: 15px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.comment-author {
    font-weight: bold;
    margin-bottom: 5px;
    color: #444;
}

.comment-content {
    margin-bottom: 8px;
    color: #222;
    line-height: 1.4;
}

.comment-date {
    font-size: 0.85rem;
    color: #999;
}
/* Pagination styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-list {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.pagination-list li {
    border-radius: 6px;
    overflow: hidden;
}

.pagination-list li a {
    display: inline-block;
    padding: 8px 14px;
    background-color: #e6ebff;
    color: #333;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.pagination-list li a:hover {
    background-color: #d0daff;
}

.pagination-list li.active a {
    background-color: #6d91ec;
    color: white;
}

.blog-comment-form {
    margin-top: 30px;
    padding: 20px;
    background-color: #f1f5ff;
    border: 1px solid #d3e0ff;
    border-radius: 10px;
}

.blog-comment-form h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.blog-comment-form .form-group {
    margin-bottom: 15px;
}

.blog-comment-form input[type="text"],
.blog-comment-form textarea {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.blog-comment-form textarea {
    min-height: 100px;
}

.blog-comment-form button {
    background-color: #6d91ec;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.blog-comment-form button:hover {
    background-color: #5a7fd0;
}














.blog-filter-form {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 20px;
    background: #f9f9fb;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.blog-filter-form input[type="text"],
.blog-filter-form select {
    appearance: none;
    font-size: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #d0d7e6;
    background-color: #fff;
    color: #333;
    transition: border-color 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.blog-filter-form input[type="text"]:focus,
.blog-filter-form select:focus {
    border-color: #6d91ec;
    outline: none;
}

.blog-filter-form button {
    background: #6d91ec;
    border: none;
    color: #fff;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.blog-filter-form button:hover {
    background: #5475d2;
}

.like-button {
    background-color: #ffeef4;
    color: #d6336c;
    border: none;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    cursor: pointer;
}

.like-button:hover:not(.already-liked) {
    background-color: #ffdce8;
    transform: scale(1.02);
}

.like-button:active:not(.already-liked) {
    transform: scale(0.98);
}

.like-button.already-liked {
    background-color: #f0f0f0;
    color: #888;
    cursor: default;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px #ccc;
    cursor: pointer;
}

.like-status {
    margin-left: 8px;
    color: #28a745;
    font-weight: 500;
}

@keyframes fadeInLike {
    from { opacity: 0; transform: translateY(-3px); }
    to { opacity: 1; transform: translateY(0); }
}

.blog-texteditor .tox-edit-area {
    font-weight: normal !important;
}


/* login */

.login-container {
    max-width: 480px;
    margin: 80px auto;
    background-color: #f8f9fc;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .login-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .login-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .form-group {
    margin-bottom: 25px;
    text-align: left;
  }

  
  .form-group input:focus {
    border-color: #86A3EE;
    outline: none;
  }
  
  .remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.95rem;
  }
  
  .form-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #86A3EE;
    cursor: pointer;
  }
  
  .login-btn {
    background-color: #86A3EE;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease;
  }
  
  .login-btn:hover {
    background-color: #6d91ec;
  }


/* SECTION D'INSCRIPTION */
.register-section {
    background: #ffffff;
    padding: 80px 20px;
  }
  
  .register-container {
    max-width: 620px;
    margin: 0 auto;
    background: #f7f8fc;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  }
  
  .register-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .register-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .form-group label {
    font-weight: 500;
    margin-bottom: 6px;
    color: #333;
  }
  
  .form-group input {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ededed;
    font-size: 1rem;
    background-color: #fff;
    transition: border 0.3s;
  }

  .form-group input:not([type="checkbox"]) {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ededed;
    font-size: 1rem;
    background-color: #f7f8fc;
    transition: border 0.3s;
  }
  
  .form-group input:focus {
    border-color: #86A3EE;
    outline: none;
  }
  
  .form-group input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 8px;
  }
  
  .btn-register {
    background-color: #86A3EE;
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  
  .btn-register:hover {
    background-color: #6d91ec;
  }
  
  .alert-error {
    background: #ffe2e2;
    color: #c0392b;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
  }

/* === FAQ STYLES === */


.faq-section {
    background: #ffffff;
    padding: 80px 20px;
  }
  
  .faq-container {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  
  .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
  }
  
  .faq-intro {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 50px;
  }
  
  /* === Accordéon moderne === */
  .accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Bloc général */
  .accordion-item {
    background: #f7f8fc;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  /* En-tête */
  .accordion-header {
    background: #f1f4fc;
    color: #333;
    padding: 18px 24px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease, padding 0.3s ease;
  }
  
  .accordion-header:hover {
    background: #e4ebff;
    padding-left: 28px;
  }
  
  /* Supprime ::after — on utilise .accordion-icon à la place */
  .accordion-header::after {
    display: none;
  }
  
  /* Icône personnalisée (+ ou −) */
  .accordion-icon {
    font-size: 1.4rem;
    font-weight: 600;
    margin-left: 12px;
    transition: transform 0.3s ease;
  }
  
  /* Contenu */
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    background: #fff;
    transition: max-height 0.5s ease, padding 0.3s ease;
  }
  
  .accordion-item.active .accordion-content {
    max-height: 400px; /* ajustable selon la taille du contenu */
  }
  
  .accordion-content p {
    padding: 18px 0;
    margin: 0;
    color: #444;
    line-height: 1.7;
    font-size: 1rem;
  }
  
  .accordion-content a {
    color: #86A3EE;
    text-decoration: underline;
  }




.flash {
    padding: 12px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
}

.flash-success {
    background-color: #d4edda;
    color: #155724;
}

.flash-error {
    background-color: #f8d7da;
    color: #721c24;
}

.toast-flash {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 500;
    color: #155724;
    background-color: #d4edda;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease, top 0.5s ease;
}

.toast-flash.show {
    opacity: 1;
    top: 95px;
}

.toast-flash.hide {
    opacity: 0;
    top: 20px;
    pointer-events: none;
}


/* === contact STYLES === */


.contact-section {
    background: #ffffff;
}

.container.contact-container{
    padding: 80px 20px;
    border-radius: 0;
    margin: 0 auto;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.contact-info h1 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}
.contact-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ededed;
    background: #f7f8fc;
    transition: border 0.3s;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #86A3EE;
    background: #fff;
}
.contact-form button {
    background: #86A3EE;
    color: white;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.contact-form button:hover {
    background: #6b8cdf;
}




.contact-extra {
    background: #f9f9f9;
    padding: 60px 20px;
}

.contact-extra-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.contact-col {
    flex: 1;
    min-width: 280px;
}

.contact-col h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
}

.contact-col p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.contact-quote {
    font-style: italic;
    color: #444;
    background: #fff;
    padding: 20px 25px;
    border-left: 4px solid #86A3EE;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    line-height: 1.6;
}

.contact-faq {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #555;
    text-align: center;
}

.contact-faq a {
    color: #86A3EE;
    text-decoration: underline;
}

h2.faq-category {
    text-align: start;
    margin-bottom: 20px;
}

.faq-group{
    margin-bottom: 40px;
}









.logo-img {
    height: 50px; /* ou ajuste selon ton besoin */
    width: auto;
    max-width: 100%;
    display: block;
}


/* === HEADER STYLES === */
header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Structure flex entre logo / menu / bouton + switch */
.container.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.logo a {
    font-weight: 700;
    font-size: 1.3rem;
    color: #86A3EE;
    text-decoration: none;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #86A3EE;
}

/* Bouton et switch */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-header {
    padding: 10px 18px;
    font-size: 0.9rem;
}

/* Switch + hamburger si tu veux l'activer plus tard */
.switch {
    cursor: pointer;
}

/* Optionnel : cacher le menu burger sur desktop */
.hamburger {
    display: none;
}





/* === Article de blog moderne === */

.blog-article-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Partie principale */
.blog-main-content {
    flex: 1 1 700px;
    min-width: 0;
    order: 1;

}

.blog-cover-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.blog-cover-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: start;
}

.blog-meta-svg-text {
    display: flex;
    align-items: center;
}

.blog-meta-svg-text.blog-meta-svg-text-1 {
    margin-right: 20px;
}

.blog-meta svg {
    margin-right: 5px;
}

.svg-eye {
    fill : #86A3EE;
}

.svg-heart {
    fill : #ff6b6b;
}

.blog-content p {
    font-size: 1.15rem;
    line-height: 2;
    color: #444;
    margin-bottom: 28px;
    text-align: justify;
}

.blog-content h2 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: #111;
    font-weight: 600;
}

.blog-content img {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

.blog-content a {
    color: #86A3EE;
}

/* === Sidebar === */
.blog-sidebar {
    width: 300px;
    position: sticky;
    top: 100px; /* ajustable selon la hauteur de ta navbar */
    align-self: flex-start;
    padding-left: 20px;
    flex-shrink: 0;
    order: 2;

  }

.sidebar-author {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 20px;

}

.sidebar-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.sidebar-author h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.sidebar-author p {
    font-size: 0.9rem;
    color: #666;
}

.author-description {
    font-size: 0.8rem;
}

.sidebar-socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.sidebar-socials a {
    font-size: 1.2rem;
    color: #333;
    transition: color 0.3s;
}

.sidebar-socials a:hover {
    color: #86A3EE;
}

/* Articles populaires */
.sidebar-popular {
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
}

.sidebar-popular h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.sidebar-popular-article {
    margin-bottom: 15px;
}

.sidebar-popular-article span {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.sidebar-popular-article a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
}

.sidebar-popular-article a:hover {
    color: #86A3EE;
}


/* Responsive */
@media (max-width: 991px) {
    .blog-article-container {
        flex-direction: column;
    }

    .blog-sidebar {
        order: -1;
    }
}

@media (min-width: 1024px) {
    .sticky-sidebar {
        position: sticky;
        top: 120px; /* distance à partir du haut, ajustable selon ta navbar */
        align-self: start;
    }

    .blog-article-container {
        display: flex;
        gap: 40px;
    }

    .blog-main-content {
        flex: 1;
    }

    .blog-sidebar {
        width: 300px;
        flex-shrink: 0;
    }
}

.related-articles {
    padding: 20px 20px 60px 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.related-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.related-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.related-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-info {
    padding: 20px;
}

.related-info h3 {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #333;
}

.related-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom:20px;
}

.related-date {
    font-size: 0.8rem;
    color: #888;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    font-size: 0.9rem;
    color: #86A3EE;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .blog-sidebar {
        width: 100%;
        padding: 20px;
        margin-top: 40px;
        border-left: none;
        border-radius: 12px;
        position: static;
        order: 3;
    }

    .sidebar-author,
    .sidebar-popular {
        text-align: center;
    }

    .sticky-sidebar {
        position: static; /* plus de sticky sur mobile */
        top: auto;
    }
}








/* Importer la police Poppins localement en TTF */
@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

#banner-stars {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.banner-star {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: floatUp 6s ease-in-out infinite alternate;
}

@keyframes floatUp {
    0% { transform: translateY(0); opacity: 0.6; }
    100% { transform: translateY(-5px); opacity: 0.9; }
}

.banner-tracker-section {
    overflow: hidden;
    padding: 20px 0 0 0;
    position: relative;
    /*background: linear-gradient(135deg, #86A3EE, #7599e8);
    background-size: 400% 400%; 
    background: url('/bg-1.PNG') center center / cover no-repeat;
   */
   
    animation: gradientFlow 20s ease infinite;
    margin-left: -20px;
    margin-right: -20px;
}



@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
  
  .banner-tracker-item {
    /* width: 280px; */
    margin: 0 10px;
    padding: 1rem;
    border-radius: 8px;
    font-size: 29px;
    flex-shrink: 0;
    color: #FFFFFF;
    text-align: center;
    /* background: rgba(255, 255, 255, 0.15); */
}

.banner-tracker-item.svg-19 svg {
    width: 20px;
    fill:#ffffff;
    margin-right: 10px;
}

.banner-tracker-item.svg-20 svg {
    width: 20px;
    fill:#ffffff;
    margin-right: 10px;
}

.banner-tracker-item.svg-23 svg {
    width: 25px;
    fill:#ffffff;
    margin-right: 10px;
}

.banner-tracker-item.svg-25 svg {
    width: 25px;
    fill:#ffffff;
    margin-right: 10px;
}


  .banner-text {
    padding: 10px 40px;
    background: #ffffff2e;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-tracker {
    position: relative;
    z-index: 1;
    display: flex;
    width: max-content;
    animation: bannerslider 30s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

@keyframes bannerslider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}






  


.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.stars span {
    position: absolute;
    display: block;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255,255,255,0.7);
    animation: sparkle-js 3s infinite alternate ease-in-out;
}

@keyframes sparkle-js {
    0% { opacity: 0.3; transform: scale(0.6); }
    50% { opacity: 1; transform: scale(1.4); }
    100% { opacity: 0.3; transform: scale(0.6); }
}



.shooting-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.shooting-star {
    position: absolute;
    left: -100px; /* hors écran à gauche */
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), white);
    opacity: 0;
    border-radius: 50%;
    animation: shoot-across 1.2s linear forwards; /* ici on passe à 2s pour vitesse réaliste */
}

.shooting-star::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 8px white;
}

@keyframes shoot-across {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translateX(120vw); opacity: 0; }
}


.stars span.sparkle::before,
.stars span.sparkle::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    filter: drop-shadow(0 0 4px rgba(255,255,255,0.6));
}

.stars span.sparkle::before {
    width: 170%;
    height: 1.2px;
    top: 50%;
    left: -35%;
    transform: translateY(-50%);
}

.stars span.sparkle::after {
    width: 1.2px;
    height: 170%;
    left: 50%;
    top: -35%;
    transform: translateX(-50%);
}

.stars span.sparkle {
    box-shadow: 0 0 16px rgba(255,255,255,0.95);
    animation: sparkle-js 3s infinite alternate ease-in-out;
}










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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

/* HEADER */
header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.container.header-content {
    padding: 20px 30px;
}

/* iOS-style Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.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: 0.4s;
    border-radius: 34px;
}

/* Pastille + icône */
.slider:before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
    z-index: 1;
}

/* Icône dans la pastille */
.slider .icon {
    position: absolute;
    left: 7px;
    bottom: 5px;
    font-size: 11px;
    z-index: 3;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Quand activé */
.switch input:checked + .slider {
    background-color: #86A3EE;
}

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

.switch input:checked + .slider .icon {
    transform: translateX(22px);
}

/* Shadow pour la boule */
.slider:before {
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* Hamburger icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #86A3EE;
    transition: all 0.3s ease;
}

/* Animations scroll */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-reveal.reveal {
    opacity: 1;
    transform: translateY(0);
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #86A3EE;
}

/* Par défaut sur desktop */
nav {
    display: block;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #86A3EE;
}

/* Bouton principal */
.btn-primary {
    background: #ffffff;
    color: #86A3EE;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
    font-weight: 600;
    border: none;
    outline: none;
}

.btn-primary:hover {
    background: #ffffffe0;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(135deg, #86A3EE, #7599e8); */

    background: url('../images/background/background-hero.webp') center  / cover no-repeat;
    
    padding: 100px 20px;
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(134 163 238 / 37%); /* Très léger voile blanc */
    z-index: 0;
}



/* Aura centrale (halo) */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    animation: pulse 10s ease-in-out infinite;
    z-index: 0;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.hero-text {
    max-width: 500px;
}

.hero h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.hero p {
    color: #f0f0f0;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: center;
}

.hero-image img {
    max-width: 300px;
}



.hero-image img {
    width: 300px;
    margin-top: 20px;
}

.container-btn-hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ABOUT */
.about {
    padding: 80px 20px;
    background: #fff;
}

.about-features .about-item svg {
    fill : #86A3EE;
    margin-right: 5px;
}

.about-features .about-item .svg-20{
    width: 20px;
}
.about-features .about-item .svg-25{
    width: 25px;
}





  .offline-icon-container {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
  
  .offline-icon-container svg {
    position: absolute;
    width: 100%;
    height: 100%;
    fill: #444;
  }
  
  .offline-slash {
    transform: rotate(-20deg);
    opacity: 0.85;
    fill: #c00; /* tu peux ajuster la couleur ici */
  }
  

























.about-image img {
    border-radius: 12px;
    max-width: 400px;
    transform: scaleX(-1);
    width: 100%;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    color: #333333;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-text p {
    max-width: 600px;
    margin-bottom: 30px;
    color: #555;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center; /* optionnel, pour centrer */
  }
  

.about-item {
    flex: 1 1 200px; /* ou 160px si tu veux plus petit */
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(111, 146, 236, 0.1); /* juste pour debug, tu peux retirer */
    padding: 8px 12px;
    border-radius: 8px;
  }
  

.about-item img {
    width: 32px;
    height: 32px;
}

/* FEATURES */
.features {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    padding: 40px 20px 30px 20px;
}

#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../images/background/bg-1.webp') center center / cover no-repeat;
}

#vanta-bg:after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(134 163 238 / 10%); /* Filtre blanc */
    z-index: 1;
  }

.features .container-features {
    position: relative;
    z-index: 1;
    justify-content: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}

.feature-header {
    grid-column: 1 / -1; /* Étend sur toutes les colonnes automatiquement */
    text-align: center;
    margin-bottom: 10px;
}

.features h2 {
    text-align: center;
    color: #333333;
    margin-bottom: 10px;
    font-size: 2.5rem;
}
/* 
.features h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #2c3e50;
    margin: 10px auto 0 auto;
} */

.feature-card {
    background: linear-gradient(135deg, rgb(238 244 255 / 80%), rgb(255 238 244 / 80%));
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    min-width: 0; /* Ajoute ça absolument */

}

.feature-card svg{
    width:20px;
    fill: #86A3EE;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    color: #666;
}

.scrolling-banner {
    overflow: hidden;
    background: linear-gradient(135deg, #86A3EE, #a7c4f7);
    padding: 15px 0;
}


/* MISSION */
.mission {
    background: #fff;
    padding: 80px 20px;
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.mission-text h2 {
    color: #333333;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.mission-text p {
    color: #555;
    margin-bottom: 20px;
}

blockquote {
    font-style: italic;
    color: #333;
    background: #f1f5ff;
    padding: 15px 20px;
    border-radius: 12px;
}

.mission-image img {
    max-width: 400px;
    border-radius: 12px;
    transform: scaleX(-1);
}

#vanta-birds-testimonials {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/background/bg-0.webp');
    background-repeat: no-repeat;
    background-size: cover;
}



.testimonials-section {
    padding: 80px 20px;
    background: #f9f9f9;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials-header, .container-testimonials {
    position: relative;
    z-index: 1;
}

#vanta-fog {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .testimonials-section {
    position: relative;
    overflow: hidden;
  }
  .testimonials-section .container-testimonials,
  .testimonials-section .testimonials-header {
    position: relative;
    z-index: 1;
  }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
}


.testimonials-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    margin-left: -20px;
    margin-right: -20px;
}
.container.container-testimonials {
    padding: 0;
    max-width: unset;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 60s linear infinite;
    will-change: transform;
}

.testimonial {
    min-width: 280px;
    max-width: 320px;
    margin: 0 0.5rem;
    padding: 1.5rem;
    background: #f0f4f8d1;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover pause + effet zoom */
.testimonials-slider:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Texte */
.testimonial p {
    font-style: italic;
    color: #444;
    line-height: 1.5;
}

.testimonial cite {
    display: block;
    margin-top: 0.75rem;
    font-weight: bold;
    color: #222;
    font-style: normal;
}

/* Animation infinie */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .testimonial {
        min-width: 240px;
        padding: 1rem;
        font-size: 0.95rem;
    }

    .feature-header {
        grid-column: 1 / -1;
    }
}


.cta-section {
    background-size: 150%;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.01);
    pointer-events: none;
}

.cta-header {
    margin-bottom: 40px;
}

.badge-bg-white {
    display: inline-block;
    background:#ffeef4;
    color: #86A3EE;
    font-size: 0.80rem;
    padding: 6px 20px;
    border-radius:12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
    font-weight: 600;
}

.badge-bg-blue {
    display: inline-block;
    background: rgb(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 0.80rem;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
    border: 1.5px solid #ffffff ;
    font-weight: 600;
    
}



.cta-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0;
    color: #333333;
}

.cta-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.step {
    background: linear-gradient(135deg, rgb(238 244 255 / 80%), rgb(255 238 244 / 80%));
    border-radius: 12px;
    padding: 25px;
    width: 300px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.20);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step .icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step p {
    font-size: 0.95rem;
    color: #34495e;
}

















.blog-section {
    padding: 60px 20px;
    background-color: #ffffff;
    text-align: center;
}

.container-blog {
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-section .section-header {
    margin-bottom: 40px;
}

.blog-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color:#333333;
}

.blog-section .section-description {
    color: #34495e;
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.blog-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.blog-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.blog-content p {
    font-size: 14px;
    color: #34495e;
    margin-bottom: 15px;
}

.blog-link {
    color: #86A3EE;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.blog-footer {
    text-align: center;
    margin-top: 40px;
}


.btn-secondary {
    background-color: #86A3EE;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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









/* FOOTER */
footer {
    background: #f9f9f9;
    color: #333;
    padding: 50px 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;


}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a,
.footer-credits {
    color: #333;
}


.footer-links a:hover {
    color: #86A3EE;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    transition: background 0.3s;
}

.footer-socials a:hover {
    background: #86A3EE;
}

.footer-credits {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* === Remplace image par SVG stylé === */
.footer-icon-link svg {
    width: 20px;
    height: 20px;
    fill: #333;
    transition: fill 0.3s;
}

.footer-icon-link:hover svg {
    fill: white;
}



.dark-toggle span {
    font-size: 22px;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

/* Petite rotation au clic */
.dark-toggle.rotate span {
    transform: rotate(180deg);
}

/* Dark mode styles */
body.dark-mode {
    background: #1e1e1e;
    color: #f1f1f1;
}

body.dark-mode header,
body.dark-mode .nav-links,
body.dark-mode footer,
body.dark-mode .about,
body.dark-mode .features,
body.dark-mode .mission,
body.dark-mode .testimonials,
body.dark-mode .blog-section,
body.dark-mode .contact-container,
body.dark-mode .contact-extra{
    background: #333;
}


body.dark-mode .btn-primary {
    background: #86A3EE;
    color: white;
}


body.dark-mode .feature-card,
body.dark-mode .testimonial-card {
    background: #393939;
    color: #f1f1f1;
}


body.dark-mode blockquote {
    background: #2c365e;
}

body.dark-mode .hero::after {
    background: rgb(0 0 0 / 37%);
}

body.dark-mode .nav-links a {
    color:#e0e0e0
}

body.dark-mode .cta-section::after{
    background: rgb(0 0 0 / 37%);
}

body.dark-mode .cta-header h2,
body.dark-mode .cta-header,
body.dark-mode .cta-steps,
body.dark-mode .cta-section a{
    position: relative;
    z-index: 1;
}

body.dark-mode .nav-links a,
body.dark-mode .about-text h2,
body.dark-mode .about-text p,
body.dark-mode .features h2,
body.dark-mode .feature-card h3,
body.dark-mode .feature-card p,
body.dark-mode .mission-text h2,
body.dark-mode .mission-text p,
body.dark-mode blockquote,
body.dark-mode .cta-header h2,
body.dark-mode .blog-section h2,
body.dark-mode .blog-section .section-description,
body.dark-mode .blog-content h3,
body.dark-mode .blog-content p,
body.dark-mode .testimonials-section h2,
body.dark-mode .testimonial p,
body.dark-mode .testimonial cite,
body.dark-mode .footer-links a,
body.dark-mode .footer-credits,
body.dark-mode .contact-info h1,
body.dark-mode .contact-info p,
body.dark-mode .form-group label,
body.dark-mode .contact-col h2,
body.dark-mode .contact-col p,
body.dark-mode .blog-title,
body.dark-mode .sidebar-popular h4,
body.dark-mode .sidebar-popular a,
body.dark-mode .related-info h3{
    color: #e0e0e0;
}

body.dark-mode .related-info p {
    color: #888888;
}

body.dark-mode .hamburger span,
body.dark-mode .form-group input:not([type="checkbox"]),
body.dark-mode .contact-form input, 
body.dark-mode .contact-form textarea,
body.dark-mode .blog-filter-form input[type="text"], 
body.dark-mode .blog-filter-form select{
    background: #e0e0e0;
}


body.dark-mode .blog-card,
body.dark-mode blockquote.testimonial,
body.dark-mode .blog-comments,
body.dark-mode .blog-comment-form,
body.dark-mode .sidebar-author, 
body.dark-mode .sidebar-popular,
body.dark-mode .related-card,
body.dark-mode .blog-filter-form {
 background: #393939;
 border: none;
}

body.dark-mode #vanta-bg:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgb(0 0 0 / 40%);
}

body.dark-mode .testimonials-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: rgb(0 0 0 / 40%);
}

body.dark-mode .features h2::after,
body.dark-mode .testimonials-section h2::after{
    background: #E0E0E0;
}

body.dark-mode footer {
    border-top: 1px solid #1e1e1e;
}

/* desktop, tablette */
@media (min-width: 768px) {

    .header-actions {
        gap: 10px;
    }
    
    .hero-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-text {
        max-width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .hero-image img {
        width: 400px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 0 auto;
    }

    /* Desktop : nav toujours visible */
    nav {
        display: block !important;
    }

       /* Bouton principal réactivé sur desktop */
    .btn-header {
        display: inline-block;
    }

     /* Masquer le burger sur desktop */
    .hamburger {
        display: none !important;
    }


      /* Nav links inline sur desktop */
      .nav-links {
        position: static;
        background: transparent;
        flex-direction: row;
        gap: 20px;
        box-shadow: none;
        display: flex !important;
        padding: 0;
    }

    .mission-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .about-content {
        flex-direction: row;
        justify-content: space-between;
    }
    .about-text {
        flex: 1;
    }
    .about-image {
        flex: 1;
        text-align: center;
    }
}

/* ordinateur */
@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1100px;
    }
    .feature-header {
        grid-column: span 3;
    }
}

/* mobile */
@media (max-width: 767px) {

    .blog-sidebar {
        padding:0;
    }
    .toast-flash.show {
        width: 90%;
    }

    .faq-title {
        font-size: 1.8rem;
      }
    
      .faq-item h3 {
        font-size: 1.1rem;
      }
    
      .faq-intro {
        font-size: 1rem;
      }
    
      .faq-container {
        padding: 0 10px;
      }


    .contact-columns {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
        text-align: center;
    }

    .contact-col {
        min-width: 100%;
    }

    .contact-col h2 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .contact-col p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-quote {
        font-size: 0.95rem;
        padding: 18px 20px;
        border-left: 3px solid #86A3EE;
    }

    .contact-faq {
        font-size: 0.9rem;
        padding: 0 10px;
    }



    .container.hero-content {
        justify-content: center;
    }

    .mission-image img {
        width: 100%; 
    }

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

    .hero h1 {
        font-size : 1.9rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content{
        flex-direction: column-reverse;
    }

    .step{
        width: 100%;
    }
    .features-grid,
    .container-features,
    .container-blog{
        padding: 0;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #fff;
        padding: 20px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        flex-direction: column;
        display: none;
        z-index: 1000;
        min-width: 150px;
        animation: fadeIn 0.3s ease;
    }

    .btn-header {
        display: none;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
        display: block;
    }

    .header-actions {
        gap: 8px;
    }
    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: #86A3EE;
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-5px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-links a {
        font-size: 1rem;
        font-weight: 500;
        color: #333;
    }

    .footer-socials {
        display: flex;
        gap: 16px;
        justify-content: center;
    }

    .footer-socials a img {
        width: 28px;
        height: 28px;
    }

    .footer-credits {
        font-size: 0.85rem;
        text-align: center;
        color: #888;
    }

}
@media (max-width: 1023px) and (min-width: 768px) {
    .blog-sidebar {
        width: 100%;
        padding: 20px;
        margin-top: 40px;
        border-left: none;
        border-radius: 12px;
        position: static;
        order: 3;
    }
}