/*****************************************  <!-- Custom CSS --> */
:root {
    --primary-color: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary-color: #6c757d;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    border-bottom: 2px solid var(--primary-color) !important;
    /* background-color: #edf5fd !important; */
    font-weight: 600;
  }

/* Dropdown menu */
.dropdown-menu {
    padding: 10px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(13, 110, 253, 0.05);
    color: var(--primary-color);
}

.dropdown-item i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
}


.btn-register {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    margin-left: 10px;
}

.btn-loss {
    background-color: var(--primary-color);
    color: white;
}

.btn-find {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 660px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.hero-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 150px;
    color: white;
    margin-top: -35px;
}

.search-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.search-title {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-weight: 600;
    width: 100%;
}

.ads-carousel {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 15px;
    height: 300px;
}

.ads-carousel .carousel-item img {
    height: 270px;
    object-fit: cover;
    border-radius: 5px;
}

/* Regions Section */


/* Categories Section */
.categories-section {
    padding: 80px 0;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

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

.category-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.category-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.category-text {
    color: var(--secondary-color);
}

/* Recent Posts Section */
.recent-posts-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.post-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

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

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

.post-card-body {
    padding: 20px;
}

.post-card-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.post-card-text {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.post-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.post-date {
    color: var(--secondary-color);
    font-size: 14px;
}

.post-location {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
}

.post-card-details .fas,
.post-card-details .far,
.post-card-details .fab {
    color: #3498db;
}
.missing-person-info-item .div .fas{
    color: #3498db;
}

/* Users of the Month Section */
.users-section {
    padding: 80px 0;
}

.user-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-align: center;
    padding: 30px 20px;
}

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

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid var(--primary-color);
}

.user-name {
    font-weight: 600;
    margin-bottom: 10px;
}

.user-contribution {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.user-text {
    color: var(--secondary-color);
}

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

.stats-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.stats-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.stats-number {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stats-text {
    font-size: 18px;
    opacity: 0.8;
}

/* How It Works Section */
.how-it-works-section {
    padding: 80px 0;
}

.step-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    position: relative;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.step-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.step-text {
    color: var(--secondary-color);
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.partner-logo {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    margin-bottom: 30px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-title {
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary-color);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        padding: 100px 0;
    }
    
    .hero-content {
        padding-top: 50px;
    }
    
    .ads-carousel {
        margin-top: 30px;
    }
    
    .cameroon-map {
        margin-top: 30px;
    }
}


/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px 0;
    }
    
    .navbar .nav-link {
        margin: 5px 0;
        border-bottom: 0.1px solid #ccdef8;
    }

    .d-flex.align-items-center {
        width: 100%;
        flex-direction: column;
        align-items: stretch !important;
    }
    /* Center all elements in the collapsed navbar */
    .navbar-collapse .navbar-nav,
    .navbar-collapse .d-flex {
        text-align: center;
    }
    
    .navbar-collapse .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .navbar-collapse .dropdown-menu {
        background-color: transparent;
        padding: 5px 0;
        text-align: center;
    }
    
    .dropdown-item {
        justify-content: center;
    }
    
    /* Style for user menu on mobile */
    .dropdown-menu.dropdown-menu-end {
        text-align: center;
    }
    
    .dropdown-menu {
        border: none;
        background-color: #f8f9fa;
        box-shadow: none;
        padding: 0 0 0 15px;
    }
    
    .dropdown-item {
        padding: 10px 15px;
    }
    
    .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #eee;
        padding-top: 10px;
    }
    
    .btn-register {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
    
    .notification-dropdown {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    .navbar-toggler {
        padding: 4px 8px;
        font-size: 1rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    .d-flex.align-items-center {
        width: 100%;
        flex-direction: column;
        align-items: stretch !important;
    }
    
    /* Center all elements in the collapsed navbar */
    .navbar-collapse .navbar-nav,
    .navbar-collapse .d-flex {
        text-align: center;
    }
    
    .navbar-collapse .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .navbar-collapse .dropdown-menu {
        background-color: transparent;
        padding: 5px 0;
        text-align: center;
    }
    
    .dropdown-item {
        justify-content: center;
    }
    
    /* Style for user menu on mobile */
    .dropdown-menu.dropdown-menu-end {
        text-align: center;
    }
}

/* @media (max-width: 767px) {
    .navbar-brand img {
        height: 30px;
    }
    
    .btn-register {
        margin: 5px;
    }
    
    .section-title {
        text-align: center;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
} */



/*****************************************   */
    :root {
        --primary-color: #1a73e8;
        --primary-light: #4285f4;
        --primary-dark: #0d47a1;
        --secondary-color: #34a853;
        --accent-color: #ea4335;
        --light-color: #f8f9fa;
        --dark-color: #202124;
        --gray-color: #5f6368;
        --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        --gradient-secondary: linear-gradient(135deg, var(--secondary-color), #4cc66a);
        --gradient-accent: linear-gradient(135deg, var(--accent-color), #ff7875);
        --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
        --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
        --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
        --border-radius-sm: 8px;
        --border-radius-md: 12px;
        --border-radius-lg: 20px;
        --transition: all 0.3s ease;
    }
    
    body {
        font-family: 'Poppins', sans-serif;
        overflow-x: hidden;
        color: var(--dark-color);
        background-color: #fafafa;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-weight: 700;
    }
    
    .section-padding {
        padding: 100px 0;
    }
    
        /* Modal styles */
    .legal-modal {
        display: none;
        position: fixed;
        z-index: 1050;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .legal-modal-content {
        background-color: #fff;
        margin: 5% auto;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        width: 80%;
        max-width: 800px;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
    }

    .close-modal {
        position: absolute;
        right: 20px;
        top: 15px;
        font-size: 28px;
        font-weight: bold;
        color: #aaa;
        cursor: pointer;
    }

    .close-modal:hover {
        color: #000;
    }

    .legal-section {
        margin-bottom: 25px;
        padding: 15px;
        border-radius: 8px;
    }

    .legal-section h3 {
        margin-bottom: 15px;
        font-weight: 600;
    }

    .legal-section-blue {
        background-color: #e3f2fd;
        border: 1px solid #bbdefb;
    }

    .legal-section-red {
        background-color: #ffebee;
        border: 1px solid #ffcdd2;
    }

    .legal-section-green {
        background-color: #e8f5e9;
        border: 1px solid #c8e6c9;
    }

    .legal-section-yellow {
        background-color: #fffde7;
        border: 1px solid #fff9c4;
    }

    .legal-disclaimer {
        font-size: 0.9rem;
        color: #757575;
        font-style: italic;
        text-align: center;
        margin-top: 20px;
    }
    
    .section-title {
        position: relative;
        margin-bottom: 60px;
        font-weight: 800;
        font-size: 2.5rem;
        text-align: center;
    }
    
    .section-title span {
        color: var(--primary-color);
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--gradient-primary);
        border-radius: 2px;
    }
    
    .section-subtitle {
        text-align: center;
        color: var(--gray-color);
        font-size: 1.1rem;
        max-width: 700px;
        margin: -40px auto 60px;
    }
    
    .btn-custom {
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: var(--shadow-sm);
    }
    
    .btn-primary-custom {
        background: var(--gradient-primary);
        color: white;
        border: none;
    }
    
    .btn-primary-custom:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }
    
    .btn-secondary-custom {
        background: white;
        color: var(--primary-color);
        border: 2px solid var(--primary-color);
    }
    
    .btn-secondary-custom:hover {
        background: var(--primary-color);
        color: white;
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }
    
    .btn-accent-custom {
        background: var(--gradient-accent);
        color: white;
        border: none;
    }
    
    .btn-accent-custom:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }
    
   
    
    /* Regions Section */
    .regions-section {
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    
    .regions-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-image: url('/placeholder.svg?height=800&width=800'); */
        background-size: cover;
        background-position: center;
        opacity: 0.03;
        z-index: 0;
    }
    
    .regions-content {
        position: relative;
        z-index: 1;
    }
    
    .regions-list {
        background-color: white;
        border-radius: var(--border-radius-lg);
        box-shadow: var(--shadow-md);
        padding: 30px;
        height: 100%;
    }
    
    .region-item {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        border-radius: var(--border-radius-sm);
        transition: var(--transition);
        margin-bottom: 10px;
        cursor: pointer;
    }
    
    .region-item:hover {
        background-color: rgba(26, 115, 232, 0.1);
        transform: translateX(5px);
    }
    
    .region-item.active {
        background-color: rgba(26, 115, 232, 0.1);
        border-left: 4px solid var(--primary-color);
    }
    
    .region-icon {
        width: 40px;
        height: 40px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .region-info {
        flex-grow: 1;
    }
    
    .region-name {
        font-weight: 600;
        margin-bottom: 3px;
        color: var(--dark-color);
    }
    
    .region-count {
        font-size: 0.8rem;
        color: var(--gray-color);
    }
    
    .region-arrow {
        color: var(--primary-color);
    }
    
    .cameroon-map-container {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .cameroon-map {
        width: 90%;
        max-width: 500px;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    }
    
    .map-marker {
        position: absolute;
        width: 20px;
        height: 20px;
        background-color: var(--accent-color);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        cursor: pointer;
        box-shadow: 0 0 0 5px rgba(234, 67, 53, 0.3);
        animation: pulse 2s infinite;
    }
    
    .map-marker:before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 10px;
        height: 10px;
        background-color: white;
        border-radius: 50%;
    }
    
    .map-marker[data-city="douala"] {
        top: 70%;
        left: 40%;
    }
    
    .map-marker[data-city="yaounde"] {
        top: 55%;
        left: 50%;
    }
    
    .map-marker[data-city="garoua"] {
        top: 20%;
        left: 45%;
    }
    
    .map-marker[data-city="bamenda"] {
        top: 40%;
        left: 30%;
    }
    
    .map-marker[data-city="maroua"] {
        top: 10%;
        left: 60%;
    }
    
    .map-marker[data-city="buea"] {
        top: 75%;
        left: 30%;
    }
    
    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(234, 67, 53, 0.5);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(234, 67, 53, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(234, 67, 53, 0);
        }
    }
    
    /* Categories Section */
    .categories-section {
        background-color: #f8f9fa;
        position: relative;
        overflow: hidden;
    }
    
    .categories-section:before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: var(--gradient-primary);
        border-radius: 50%;
        opacity: 0.1;
    }
    
    .categories-section:after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: var(--gradient-accent);
        border-radius: 50%;
        opacity: 0.1;
    }
    
    .category-card {
        background-color: white;
        border-radius: var(--border-radius-lg);
        padding: 40px 30px;
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        margin-bottom: 30px;
        position: relative;
        overflow: hidden;
        height: 100%;
    }
    
    .category-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }
    
    .category-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--gradient-primary);
    }
    
    .category-icon-wrapper {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(66, 133, 244, 0.2));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
    }
    
    .category-icon {
        font-size: 35px;
        color: var(--primary-color);
    }
    
    .category-title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    
    .category-text {
        color: var(--gray-color);
        margin-bottom: 25px;
    }
    
    .category-count {
        display: inline-block;
        background-color: rgba(26, 115, 232, 0.1);
        color: var(--primary-color);
        padding: 5px 15px;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.9rem;
    }
    
    /* Recent Posts Section */
    .recent-posts-section {
        background-color: #f8f9fa;
        position: relative;
    }
    
    .tab-navigation {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
        position: relative;
        z-index: 1;
    }
    
    .tab-btn {
        padding: 12px 30px;
        background-color: white;
        border: none;
        border-radius: 30px;
        font-weight: 600;
        color: var(--gray-color);
        margin: 0 10px;
        transition: var(--transition);
        box-shadow: var(--shadow-sm);
    }
    
    .tab-btn.active {
        background: var(--gradient-primary);
        color: white;
        box-shadow: var(--shadow-md);
    }
    
    .tab-content {
        display: none;
    }
    
    .tab-content.active {
        display: block;
    }
    
    .post-card {
        background-color: white;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        margin-bottom: 30px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .post-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }
    
    .post-card-image {
        position: relative;
        overflow: hidden;
    }
    
    .post-card-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .post-card:hover .post-card-image img {
        transform: scale(1.05);
    }
    
    .post-card-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--gradient-primary);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 1;
    }
    
    .post-card-body {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .post-card-title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.2rem;
        color: var(--dark-color);
    }
    
    .post-card-text {
        color: var(--gray-color);
        margin-bottom: 20px;
        flex-grow: 1;
    }
    
    .post-card-details {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .post-card-detail {
        display: flex;
        align-items: center;
        margin-right: 20px;
        color: var(--gray-color);
        font-size: 0.9rem;
    }
    
    .post-card-detail i {
        margin-right: 5px;
        color: var(--primary-color);
    }
    
    .post-card-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid #f0f0f0;
    }
    
    .post-card-user {
        display: flex;
        align-items: center;
    }
    
    .post-card-user img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 10px;
    }
    
    .post-card-user-name {
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--dark-color);
    }
    
    .post-card-btn {
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.9rem;
        transition: var(--transition);
    }
    
    .post-card-btn:hover {
        color: var(--primary-dark);
    }
    
    .post-card-btn i {
        margin-left: 5px;
    }
    
    .missing-person-card {
        position: relative;
    }
    
    .missing-person-card .post-card-image:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
    }
    
    .missing-person-card .post-card-badge {
        background: var(--gradient-accent);
    }
    
    .missing-person-info {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 15px;
    }
    
    .missing-person-info-item {
        flex: 0 0 50%;
        margin-bottom: 10px;
    }
    
    .missing-person-info-label {
        font-weight: 600;
        font-size: 0.8rem;
        color: var(--gray-color);
        margin-bottom: 3px;
    }
    
    .missing-person-info-value {
        font-weight: 500;
        color: var(--dark-color);
    }
    
    .view-all-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
    }
    
    .view-all-btn .btn {
        padding: 12px 30px;
    }
    
    /* Users of the Month Section */
    .users-section {
        background-color: #f8f9fa;
        position: relative;
        overflow: hidden;
    }
    
    .users-section:before {
        content: '';
        position: absolute;
        top: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: var(--gradient-primary);
        border-radius: 50%;
        opacity: 0.1;
    }
    
    .users-section:after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: var(--gradient-secondary);
        border-radius: 50%;
        opacity: 0.1;
    }
    
    .user-card {
        background-color: white;
        border-radius: var(--border-radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        margin-bottom: 30px;
        height: 100%;
    }
    
    .user-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }
    
    .user-card-header {
        position: relative;
        height: 120px;
        background: var(--gradient-primary);
    }
    
    .user-avatar-wrapper {
        position: absolute;
        bottom: -50px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: white;
        padding: 5px;
        box-shadow: var(--shadow-md);
    }
    
    .user-avatar {
        width: 50%;
        height: 50%;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .user-card-body {
        padding: 60px 30px 30px;
        text-align: center;
    }
    
    .user-name {
        font-weight: 700;
        margin-bottom: 5px;
        font-size: 1.2rem;
    }
    
    .user-contribution {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 20px;
        display: inline-block;
        background-color: rgba(26, 115, 232, 0.1);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
    }
    
    .user-text {
        color: var(--gray-color);
        margin-bottom: 25px;
    }
    
    .user-stats {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .user-stat {
        text-align: center;
    }
    
    .user-stat-number {
        font-weight: 700;
        color: var(--dark-color);
        font-size: 1.5rem;
    }
    
    .user-stat-label {
        font-size: 0.8rem;
        color: var(--gray-color);
    }
    
    .user-social {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
    
    .user-social-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: #f0f0f0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-color);
        transition: var(--transition);
    }
    
    .user-social-icon:hover {
        background-color: var(--primary-color);
        color: white;
        transform: translateY(-3px);
    }
    
    /* Statistics Section */
    .stats-section {
        background: var(--gradient-primary);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .stats-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-image: url('/placeholder.svg?height=800&width=800'); */
        background-size: cover;
        background-position: center;
        opacity: 0.1;
        z-index: 0;
    }
    
    .stats-content {
        position: relative;
        z-index: 1;
    }
    
    .stats-card {
        text-align: center;
        padding: 40px 20px;
        margin-bottom: 30px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: var(--border-radius-lg);
        backdrop-filter: blur(5px);
        transition: var(--transition);
    }
    
    .stats-card:hover {
        transform: translateY(-10px);
        background-color: rgba(255, 255, 255, 0.2);
    }
    
    .stats-icon {
        font-size: 40px;
        margin-bottom: 20px;
        opacity: 0.9;
    }
    
    .stats-number {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 10px;
        background: linear-gradient(to right, #ffffff, #f0f0f0);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .stats-text {
        font-size: 1.2rem;
        opacity: 0.9;
        font-weight: 500;
    }
    
    /* How It Works Section */
    .how-it-works-section {
        background-color: white;
        position: relative;
        overflow: hidden;
    }
    
    .how-it-works-section:before {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: var(--gradient-secondary);
        border-radius: 50%;
        opacity: 0.1;
    }
    
    .steps-container {
        position: relative;
        z-index: 1;
    }
    
    .steps-container:before {
        content: '';
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 80%;
        height: 3px;
        background-color: #f0f0f0;
        z-index: -1;
    }
    
    .step-card {
        background-color: white;
        border-radius: var(--border-radius-lg);
        padding: 40px 30px;
        text-align: center;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        margin-bottom: 30px;
        position: relative;
        z-index: 1;
        height: 100%;
    }
    
    .step-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
        margin: 0 auto 30px;
        position: relative;
        z-index: 2;
        box-shadow: var(--shadow-md);
    }
    
    .step-icon {
        font-size: 40px;
        color: var(--primary-color);
        margin-bottom: 20px;
    }
    
    .step-title {
        font-weight: 700;
        margin-bottom: 15px;
        font-size: 1.3rem;
    }
    
    .step-text {
        color: var(--gray-color);
    }
    
    .cta-section {
        /* background: linear-gradient(135deg, rgba(26, 115, 232, 0.9), rgba(66, 133, 244, 0.9)), url('/placeholder.svg?height=800&width=1600'); */
        background-size: cover;
        background-position: center;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .cta-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 20px;
    }
    
    .cta-text {
        font-size: 1.2rem;
        margin-bottom: 40px;
        opacity: 0.9;
    }
    
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    
    .cta-buttons .btn {
        padding: 15px 40px;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        background-color: #f8f9fa;
        position: relative;
        overflow: hidden;
    }
    
    .testimonials-section:before {
        content: '';
        position: absolute;
        top: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: var(--gradient-primary);
        border-radius: 50%;
        opacity: 0.1;
    }
    
    .testimonial-card {
        background-color: white;
        border-radius: var(--border-radius-lg);
        padding: 30px;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
        margin: 20px 15px 40px;
        position: relative;
    }
    
    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }
    
    .testimonial-quote {
        position: absolute;
        top: -20px;
        left: 30px;
        width: 40px;
        height: 40px;
        background: var(--gradient-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: var(--shadow-sm);
    }
    
    .testimonial-text {
        color: var(--gray-color);
        font-style: italic;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .testimonial-author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
    }
    
    .testimonial-author-info {
        flex-grow: 1;
    }
    
    .testimonial-author-name {
        font-weight: 600;
        margin-bottom: 3px;
    }
    
    .testimonial-author-role {
        font-size: 0.9rem;
        color: var(--gray-color);
    }
    
    .testimonial-rating {
        color: #ffc107;
        font-size: 1.2rem;
    }
    
    /* Partners Section */
    .partners-section {
        background-color: white;
    }
    
    .partners-title {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .partner-logo-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 40px;
    }
    
    .partner-logo {
        height: 60px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: var(--transition);
    }
    
    .partner-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }
    
    /* App Download Section */
    .app-download-section {
        background-color: #f8f9fa;
        position: relative;
        overflow: hidden;
    }
    
    .app-download-section:before {
        content: '';
        position: absolute;
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: var(--gradient-primary);
        border-radius: 50%;
        opacity: 0.1;
    }
    
    .app-content {
        position: relative;
        z-index: 1;
    }
    
    .app-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--dark-color);
    }
    
    .app-text {
        color: var(--gray-color);
        margin-bottom: 30px;
        max-width: 500px;
    }
    
    .app-features {
        margin-bottom: 40px;
    }
    
    .app-feature {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .app-feature-icon {
        width: 40px;
        height: 40px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .app-feature-text {
        flex-grow: 1;
    }
    
    .app-feature-title {
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--dark-color);
    }
    
    .app-feature-description {
        color: var(--gray-color);
        font-size: 0.9rem;
    }
    
    .app-buttons {
        display: flex;
        gap: 15px;
    }
    
    .app-button {
        display: flex;
        align-items: center;
        background-color: var(--dark-color);
        color: white;
        padding: 10px 20px;
        border-radius: var(--border-radius-md);
        transition: var(--transition);
    }
    
    .app-button:hover {
        background-color: black;
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }
    
    .app-button-icon {
        font-size: 2rem;
        margin-right: 10px;
    }
    
    .app-button-text {
        text-align: left;
    }
    
    .app-button-small {
        font-size: 0.7rem;
        margin-bottom: 3px;
    }
    
    .app-button-large {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .app-image {
        max-width: 100%;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
        transform: perspective(1000px) rotateY(-10deg);
        transition: var(--transition);
    }
    
    .app-image:hover {
        transform: perspective(1000px) rotateY(0deg);
    }
    /* #legalModal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9998; 
        background-color: rgba(0, 0, 0, 0.5); 
        pointer-events: none; 
    } */
    
    /* footer, footer * {
        pointer-events: auto !important;
        z-index: 9999 !important;
    } */

    /* Footer */
    .footer {
        background-color: var(--dark-color);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .footer:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-image: url('/placeholder.svg?height=800&width=800'); */
        background-size: cover;
        background-position: center;
        opacity: 0.05;
        z-index: 0;
    }
    
    .footer-content {
        position: relative;
        z-index: 1;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .footer-logo img {
        height: 40px;
        margin-right: 10px;
    }
    
    .footer-logo-text {
        font-weight: 800;
        font-size: 1.5rem;
        color: white;
        margin: 0;
    }
    
    .footer-logo-text span {
        color: var(--accent-color);
    }
    
    .footer-text {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 25px;
        max-width: 400px;
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .footer-social-icon {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .footer-social-icon:hover {
        background-color: var(--primary-color);
        transform: translateY(-5px);
    }
    
    .footer-title {
        font-weight: 700;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
        font-size: 1.2rem;
    }
    
    .footer-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--gradient-primary);
        border-radius: 1.5px;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-links li {
        margin-bottom: 15px;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: var(--transition);
        display: flex;
        align-items: center;
    }
    
    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }
    
    .footer-links a i {
        margin-right: 10px;
        color: var(--primary-color);
    }
    
    .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-contact li {
        margin-bottom: 20px;
        display: flex;
        align-items: flex-start;
    }
    
    .footer-contact-icon {
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .footer-contact-text {
        flex-grow: 1;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .footer-newsletter {
        margin-top: 30px;
    }
    
    .footer-newsletter-text {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 15px;
    }
    
    .footer-newsletter-form {
        display: flex;
        gap: 10px;
    }
    
    .footer-newsletter-input {
        flex-grow: 1;
        padding: 12px 15px;
        border-radius: var(--border-radius-sm);
        border: none;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .footer-newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }
    
    .footer-newsletter-btn {
        background: var(--gradient-primary);
        color: white;
        border: none;
        border-radius: var(--border-radius-sm);
        padding: 12px 20px;
        font-weight: 600;
        transition: var(--transition);
    }
    
    .footer-newsletter-btn:hover {
        box-shadow: 0 0 15px rgba(26, 115, 232, 0.5);
        transform: translateY(-3px);
    }
    
    .footer-bottom {
        background-color: rgba(0, 0, 0, 0.2);
        padding: 20px 0;
        margin-top: 60px;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    .footer-bottom-text {
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 1199px) {
        .hero-title {
            font-size: 3rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .section-title {
            font-size: 2.2rem;
        }
    }
    
    @media (max-width: 991px) {
        .section-padding {
            padding: 80px 0;
        }
        
        .hero-section {
            min-height: auto;
            padding: 120px 0 80px;
        }
        
        .hero-content {
            padding: 10px 0;
        }
        
        .hero-content{
            margin-top: -20px;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1rem;
        }
        
        .hero-buttons {
            flex-direction: column;
            gap: 10px;
            max-width: 300px;
        }
        
        .ads-carousel {
            margin-top: 40px;
        }
        
        .cameroon-map-container {
            margin-top: 40px;
        }
        
        .app-title {
            font-size: 2rem;
        }
        
        .app-image {
            margin-top: 40px;
            transform: none;
        }
        
        .app-image:hover {
            transform: none;
        }
    }
    
    @media (max-width: 767px) {
        .section-padding {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .navbar-brand img {
            height: 30px;
        }
        
        .navbar-brand-text {
            font-size: 1.2rem;
        }
        
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-stats {
            flex-direction: column;
            gap: 15px;
        }

        .hero-content{
            margin-top: -10px;
        }
        
        .search-container {
            padding: 30px 20px;
        }
        
        .tab-navigation {
            flex-direction: column;
            gap: 10px;
        }
        
        .tab-btn {
            width: 100%;
        }
        
        .cta-title {
            font-size: 1.8rem;
        }
        
        .cta-text {
            font-size: 1rem;
        }
        
        .cta-buttons {
            flex-direction: column;
            gap: 15px;
        }
        
        .app-buttons {
            flex-direction: column;
        }
        
        .footer-newsletter-form {
            flex-direction: column;
        }
    }




/***************************************** <!-- Style pour gérer le ads et annonces récentes -->  */
/* Styles pour la section des publicités et objets récents */
    .ads-and-recent-items {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: auto;
    }

    .ads-section h5,
    .recent-items-section h5 {
    font-weight: 600;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    }

    .ads-section h5:after,
    .recent-items-section h5:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
    border-radius: 2px;
    }

    #adsCarousel .carousel-item img {
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    }

    /* Styles pour les objets récents */
    .recent-item-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .item-image-container {
    position: relative;
    height: 150px;
    }

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

    .item-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    }

    .item-badge.lost {
    background-color: #ff6b6b;
    }

    .item-badge.found {
    background-color: #51cf66;
    }

    .item-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    }

    .item-details {
    padding: 15px;
    }

    .item-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: #333;
    }

    .item-description {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.4em;
    }

    .item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #888;
    }

    /* Personnalisation des indicateurs de carousel */
    #recentItemsCarousel .carousel-indicators {
    margin-bottom: 0;
    }

    #recentItemsCarousel .carousel-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 3px;
    }

    #recentItemsCarousel .carousel-indicators button.active {
    background-color: #0d6efd;
    }

    /* Animation pour le changement d'items */
    .carousel-item {
    transition: transform 0.6s ease-in-out;
    }

    /* Responsive */
    @media (max-width: 767px) {
    .item-image-container {
        height: 120px;
    }

    .item-description {
        -webkit-line-clamp: 1;
        height: 1.2em;
    }
    }





/***************************************** <!-- Style pour gérer les polices -->  */
    /* Pour Akhapi et Okhapi */
    .brand-name {
    }

    /* Pour le tiret */
    .brand-separator {
        font-family: 'Raleway', sans-serif;
        font-weight: 400;
        color: #555;
    }

    /* Pour le message d'aide */
    .help-message {
        font-family: 'Nunito Sans', sans-serif;
        font-weight: 700;
        letter-spacing: 0.8px;
        color: #000;
    }
    /* Styles pour les boutons de signalement */
    .btn-block:hover {
        transform: translateY(-2px);
        box-shadow: 0 7px 14px rgba(0,0,0,0.12), 0 3px 6px rgba(0,0,0,0.08) !important;
    }
    
    .btn-block:active {
        transform: translateY(1px);
        box-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.08) !important;
    }
    
    /* Style spécifique pour le bouton Perdu */
    .col-md-6:nth-child(1) .btn-block:hover {
        background-color: #ffe0b0 !important;
    }
    
    /* Style spécifique pour le bouton Retrouvé */
    .col-md-6:nth-child(2) .btn-block:hover {
        background-color: #d4ebd5 !important;
    }






/*****************************************   */
