
.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
    z-index: 999;
}

.card.sticky-top {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.content-page {
    margin-top: 100px;
}

.input-group {
    max-width: 400px;
}

.input-group .form-control {
    height: 45px;
    border-radius: 25px 0 0 25px !important;
    border-right: none;
    padding: 0.75rem 1.25rem;
}

.input-group .btn {
    height: 45px;
    width: 50px;
    border-radius: 0 25px 25px 0 !important;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-group .btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .input-group .form-control {
        height: 40px;
        padding: 0.5rem 1rem;
    }
    
    .input-group .btn {
        height: 40px;
        width: 45px;
    }
}

@media (max-width: 992px) {
    .sticky-top {
        position: static;
        top: auto;
    }
    
    .card.sticky-top {
        max-height: none;
        overflow-y: visible;
    }
}
.info-title {
    color: var(--dark-green);
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: 600;
}
        
.contact-details {
    margin-bottom: 40px;
}
        
.contact-item {
    display: flex;
    margin-bottom: 25px;
}
        
.contact-icon {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-right: 20px;
    min-width: 30px;
}
        
        .contact-text h4 {
            color: var(--dark-green);
            font-size: 1.1rem;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .contact-text p, 
        .contact-text a {
            color: var(--gray);
            margin: 0;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .contact-text a:hover {
            color: var(--primary-green);
        }
        
        .map-container {
            margin-top: 30px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .map-container iframe {
            width: 100%;
            height: 250px;
            border: none;
        }
        
        @media (max-width: 992px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .contact-section {
                padding: 40px 0;
            }
            
            .contact-title {
                font-size: 2rem;
            }
            
            .form-title,
            .info-title {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .contact-title {
                font-size: 1.8rem;
            }
            
            .contact-form {
                padding: 30px 20px;
            }
            
            .breadcrumb {
                font-size: 0.8rem;
            }
        }
        


        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
        }

        .breadcrumb-item.active {
            color: white;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }


        /* Détails actualité */
        .news-detail {
            padding: 60px 0;
        }
        
        .news-header {
            margin-bottom: 40px;
        }
        
        .news-category {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
            display: inline-block;
        }
        
                .news-title {
                    font-size: 2.2rem;
                    font-weight: 700;
                    margin-bottom: 20px;
                    color: var(--dark-green);
                }
        
                .news-meta {
                    display: flex;
                    align-items: center;
                    margin-bottom: 30px;
                    color: var(--gray);
                }
        
                .news-meta-item {
                    display: flex;
                    align-items: center;
                    margin-right: 20px;
                }
        
                .news-meta-item i {
                    margin-right: 8px;
                    color: var(--primary-green);
                }
        
                .news-image {
                    margin-bottom: 30px;
                    border-radius: 10px;
                    overflow: hidden;
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                }
        
                .news-image img {
                    width: 100%;
                    height: auto;
                    object-fit: cover;
                }
        
                .news-content {
                    line-height: 1.8;
                    font-size: 1.1rem;
                    color: #555;
                }
        
                .news-content p {
                    margin-bottom: 20px;
                }
        
                .news-content h2, 
                .news-content h3 {
                    color: var(--dark-green);
                    margin: 30px 0 20px;
                    font-weight: 600;
                }
        
                .news-content blockquote {
                    border-left: 4px solid var(--primary-green);
                    padding-left: 20px;
                    font-style: italic;
                    color: #666;
                    margin: 30px 0;
                }
        
                .news-tags {
                    display: flex;
                    flex-wrap: wrap;
                    margin: 40px 0;
                }
        
                .news-tag {
                    background-color: #f1f1f1;
                    color: #555;
                    padding: 5px 15px;
                    border-radius: 50px;
                    margin-right: 10px;
                    margin-bottom: 10px;
                    font-size: 0.9rem;
                    transition: all 0.3s;
                }
        
                .news-tag:hover {
                    background-color: var(--primary-green);
                    color: white;
                    text-decoration: none;
                }
        
                .news-share {
                    display: flex;
                    align-items: center;
                    margin: 40px 0;
                    padding: 20px 0;
                    border-top: 1px solid #eee;
                    border-bottom: 1px solid #eee;
                }
        
                .news-share-title {
                    margin-right: 15px;
                    font-weight: 600;
                    color: var(--dark-green);
                }
        
                .news-share-item {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 40px;
                    height: 40px;
                    border-radius: 50%;
                    background-color: #f1f1f1;
                    color: #555;
                    margin-right: 10px;
                    transition: all 0.3s;
                }
        
                .news-share-item:hover {
                    color: white;
                    text-decoration: none;
                }
        
                .news-share-facebook:hover {
                    background-color: #3b5998;
                }
        
                .news-share-twitter:hover {
                    background-color: #1da1f2;
                }
        
                .news-share-linkedin:hover {
                    background-color: #0077b5;
                }
        
                .news-share-whatsapp:hover {
                    background-color: #25d366;
                }
        
                .author-card {
                    display: flex;
                    align-items: center;
                    background-color: #f9f9f9;
                    padding: 30px;
                    border-radius: 10px;
                    margin: 60px 0;
                }
        
                .author-avatar {
                    width: 100px;
                    height: 100px;
                    border-radius: 50%;
                    overflow: hidden;
                    margin-right: 30px;
                    flex-shrink: 0;
                }
        
                .author-avatar img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
        
                .author-info h4 {
                    font-weight: 600;
                    color: var(--dark-green);
                    margin-bottom: 10px;
                }
        
                .author-info p {
                    color: #666;
                    margin-bottom: 15px;
                }
        
                .author-social a {
                    color: var(--primary-green);
                    margin-right: 15px;
                    font-size: 1.2rem;
                }
        
        
                @media (max-width: 768px) {
                    .news-title {
                        font-size: 1.8rem;
                    }
                    
                    .news-meta {
                        flex-direction: column;
                        align-items: flex-start;
                    }
                    
                    .news-meta-item {
                        margin-bottom: 10px;
                    }
                    
                    .author-card {
                        flex-direction: column;
                        text-align: center;
                    }
                    
                    .author-avatar {
                        margin-right: 0;
                        margin-bottom: 20px;
                    }
                    
                    .news-share {
                        flex-direction: column;
                        align-items: flex-start;
                    }
                    
                    .news-share-title {
                        margin-bottom: 15px;
                    }
                }
        
                @media (max-width: 576px) {
                    .news-title {
                        font-size: 1.5rem;
                    }
                    
                    .news-content {
                        font-size: 1rem;
                    }
                }