body * {
    font-family: 'Bebas Neue', sans-serif !important;
}
    .bebas-neue-regular {
        font-family: 'Bebas Neue', sans-serif;
    }


        
/* ========================
    Hero Styles
======================== */

.hero {
    background-color: #001f3f;
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero .btn-primary {
    background-color: Black; /* Blue color */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s ease-in-out;
}

.hero .btn-primary:hover {
    background-color: #001f3f; /* Darker shade of blue */
}

.hero p span {
    color: #001f3f; /* Blue color */
}

/* ========================
    a propos Styles
======================== */
.about {
     padding: 60px 20px;
     background-color: #f7f7f7;
     text-align: center;
}

.about h2 {
     font-size: 2.5rem;
     color: #001f3f;
     margin-bottom: 40px;
}

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

.about-image img {
     max-width: 100%;
     border-radius: 10px;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
     transform: scale(1.05);
}

.about-text {
     max-width: 800px;
     text-align: left;
     color: #555;
     font-size: 1.2rem;
     line-height: 1.6;
}

.btn-primary {
     display: inline-block;
     padding: 15px 30px;
     background-color: #001f3f;
     color: white;
     text-decoration: none;
     border-radius: 10px;
     transition: background-color 0.3s ease-in-out;
     margin-top: 20px;
}

.btn-primary:hover {
     background-color: #001f3f;
}

@media (min-width: 768px) {
     .about-content {
          flex-direction: row;
          justify-content: space-between;
     }

     .about-text {
          text-align: left;
     }
}

/* ========================
    Services Styles
======================== */
/* Removed duplicate .services and .service-list classes */

.services {
    padding: 80px 20px; /* Increased padding */
    background-color: #001f3f; /* Dark blue background */
    text-align: center;
    border-radius: 20px; /* Rounded corners */
}

.services h2 {
    font-size: 2.5rem;
    color: #ffffff; /* White color for the heading */
    margin-bottom: 40px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two items per row */
    gap: 20px;
    justify-content: center;
}

.service-item {
    background-color: #ffffff; /* White background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
    font-size: 1.5rem;
    color: #001f3f; /* Blue color for the heading */
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #555;
}

.service-item img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.service-item img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr; /* Full width on smaller screens */
    }
}

/* ========================
    Boutique Styles
======================== */
.boutique {
     padding: 80px 20px;
     background-color: #f0f0f0;
     text-align: center;
}

.boutique h2 {
     font-size: 2.8rem;
     color: #0056b3;
     margin-bottom: 50px;
}

.product-list {
     display: flex;
     flex-wrap: wrap;
     gap: 30px;
     justify-content: center;
}

.product-item {
     background-color: white;
     padding: 25px;
     border-radius: 20px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     flex: 1 1 calc(33% - 60px);
     max-width: calc(33% - 60px);
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.product-item img {
     max-width: 100%;
     border-radius: 10px;
     margin-bottom: 15px;
}

.product-item h3 {
     font-size: 1.6rem;
     color: #001f3f;
     margin-bottom: 10px;
}

.product-item p {
     font-size: 1rem;
     color: #666;
     margin-bottom: 20px;
}

.btn-primary {
     display: inline-block;
     padding: 12px 25px;
     background-color: #001f3f;
     color: white;
     text-decoration: none;
     border-radius: 8px;
     transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
     background-color: #001f3f;
}

@media (max-width: 768px) {
     .product-item {
            flex: 1 1 calc(50% - 30px);
            max-width: calc(50% - 30px);
     }
}

@media (max-width: 480px) {
     .product-item {
            flex: 1 1 100%;
            max-width: 100%;
     }
}

/* ========================
    Why Choose Us Styles
======================== */
.why-choose-us {
     padding: 80px 20px;
     background: linear-gradient(135deg, #003f7f, #001f3f);
     color: white;
     text-align: center;
     border-radius: 20px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.why-choose-us h2 {
     font-size: 3rem;
     color: white;
     margin-bottom: 40px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.reasons-list {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 30px;
     justify-content: center;
}

.reason-item {
     background-color: rgba(255, 255, 255, 0.9);
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.reason-item:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.reason-item h3 {
     font-size: 1.8rem;
     color: #001f3f;
     margin-bottom: 15px;
}

.reason-item p {
     font-size: 1.1rem;
     color: #333;
}


/* ========================
    FAQ Styles  
======================== */

.faq {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.faq h2 {
    font-size: 2.8rem;
    color: #001f3f;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.faq-item h3 {
    font-size: 1.6rem;
    color: #001f3f;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.faq-item.active h3 {
    color: #001f3f; /* Darker blue when active */
}

.faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.6rem;
    color: #001f3f;
    transition: transform 0.3s ease-in-out;
}

.faq-item.active h3::after {
    transform: rotate(45deg);
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    display: none;
    margin-top: 10px;
}

.faq-item.active p {
    display: block;
}



@media (max-width: 768px) {
    .faq h2 {
        font-size: 2.2rem;
    }

    .faq-item h3 {
        font-size: 1.4rem;
    }

    .faq-item h3::after {
        font-size: 1.4rem;
    }

    .faq-item p {
        font-size: 0.9rem;
    }
}

/* ========================
    Footer Styles
======================== */
footer {
    background-color: #001f3f;
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-top: 5px solid #001f3f;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer .social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

footer .social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
}

footer .social-links a:hover {
    color: #001f3f;
}

        #location {
            padding: 60px 0;
            background-color: #ffffff;
        }

        #location .container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        #location h2 {
            margin-bottom: 20px;
            font-size: 2rem;
            color: #001f3f;
        }

        #location p {
            margin-bottom: 20px;
            font-size: 1.2rem;
            color: #333333;
        }

        #location iframe {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }