@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-color: #007bff;
    --secondary-color: #ffffff;
    --transition-speed: 0.3s;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

header {
    background-color: var(--primary-color);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar {
    display: flex;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.burger-menu {
    display: none;
    cursor: pointer;
}

.burger-icon {
    width: 30px;
    height: 20px;
    position: relative;
}

.burger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--secondary-color);
    border-radius: 3px;
    transition: all var(--transition-speed);
}

.burger-icon span:nth-child(1) { top: 0; }
.burger-icon span:nth-child(2) { top: 8px; }
.burger-icon span:nth-child(3) { top: 16px; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.mobile-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.5rem;
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color var(--transition-speed);
}

.mobile-link:hover {
    background-color: rgba(255,255,255,0.1);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--secondary-color);
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .navbar {
        display: none;
    }

    .burger-menu {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }
}

/* Hero */

.hero {
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(135deg, rgba(0,123,255,0.9), rgba(0,123,255,0.7));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero2 {
    min-height:50vh;
}

.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    color: white;
}

.hero-text {
    flex: 1;
    z-index: 2;
    padding-right: 4rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-text h2 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: bold;
    display: inline-block;
}

.btn-primary {
    background-color: white;
    color: #007bff;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 17px rgba(0,0,0,0.2);
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: scale(1.05);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.10);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,123,255,0.3), rgba(0,123,255,0.1));
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 2rem;
    }

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

@media screen and (max-width:760px) {
    .hero-content h1 {
        font-size:2rem;
    }

    .hero-cta a {
        font-size:15px;
    }
}

/* Presentation */

.presentation {
    background-color: white;
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

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

.presentation-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.presentation-text {
    flex: 1;
}

.presentation-text h2 {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: -1px;
}

.presentation-text h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 300;
}

.presentation-details {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.detail:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,123,255,0.1);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.detail-text h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.detail-text p {
    color: #666;
    font-size: 0.9rem;
}

.presentation-cta {
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.presentation-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-container {
    width: 400px;
    height: 400px;
    position: relative;
}

.graphic-element {
    width: 100%;
    height: 100%;
    background: url("./images/panier.jpg");
    background-size:cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 10s infinite alternate;
    box-shadow: 0 20px 40px rgba(0,123,255,0.2);
}

@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 50% 50% / 50% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 70% 50% 50% 30%; }
}

@media (max-width: 1024px) {
    .presentation-content {
        flex-direction: column;
        text-align: center;
    }

    .presentation-details {
        justify-content: center;
    }

    .presentation-graphic {
        display:none;
    }
}

/* Emplacement */

.location {
    background-color: #f8f9fa;
    padding: 100px 0;
}

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

.location .section-title {
    font-size: 2.5rem;
    color: #007bff;
    text-align: center;
    margin-bottom: 50px;
}

.location .location-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.location .location-info {
    flex: 1;
}

.location .address h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

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

.location .address a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 1rem;
    padding: 10px 20px;
}

.location .address a i {
    font-size: 1.2rem;
}

.location .transport-info {
    margin-bottom: 30px;
    background-color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.location .transport-info.contact {
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    margin-top: 25px;
}

.location .transport-info:hover {
    transform: translateY(-5px);
}

.location .transport-info h4 {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #e7f1ff;
}

.location .transport-info ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.location .transport-info li {
    margin-bottom: 10px;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.location .transport-info li:before {
    content: "\f238";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #007bff;
}

.location .transport-info p {
    color: #555;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.location .transport-info p:before {
    content: "\f5e4";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #007bff;
}

.location .features {
    display: grid;
    gap: 20px;
}

.location .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.location .feature-item i {
    font-size: 1.5rem;
    color: #007bff;
}

.location .feature-item span {
    font-size: 1rem;
    color: #333;
}

.location .location-map {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.location .location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 1024px) {
    .location .location-content {
        flex-direction: column;
    }

    .location .location-map {
        width: 100%;
    }
    
    .location .transport-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .location .address a {
        width: 100%;
        justify-content: center;
    }
    
    .location .transport-info h4 {
        font-size: 1.1rem;
    }
    
    .location .transport-info li,
    .location .transport-info p {
        font-size: 0.95rem;
    }
}

/* F.A.Q */

.faq {
    background-color: white;
    padding: 100px 0;
}

.faq .faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.faq .section-title {
    text-align: center;
    color: #007bff;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.faq .faq-grid {
    display: grid;
    gap: 20px;
}

.faq .faq-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f1f3f5;
    transition: background-color 0.3s ease;
}

.faq .faq-question:hover {
    background-color: #e9ecef;
}

.faq .faq-question h3 {
    font-size: 1.1rem;
    color: #333;
}

.faq .faq-icon {
    width: 30px;
    height: 30px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    background-color: white;
}

.faq .faq-answer p {
    margin-top: 15px;
    color: #666;
}

.faq .faq-answer ul {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq .faq-answer ul li {
    color: #666;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.faq .faq-answer ul li::before {
    content: "•";
    margin-right: 8px;
    color: var(--primary-color);
}

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

.faq .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px;
}

.app-download {
    margin-top: 15px;
}

.app-download p {
    margin-bottom: 10px;
    font-weight: 500;
}

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

.store-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.store-link:hover {
    transform: translateY(-3px);
}

.store-icon {
    height: 40px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .store-links {
        justify-content: center;
        gap: 10px;
    }
    
    .store-icon {
        height: 35px;
    }
}

@media screen and (max-width:760px) {
    .faq .faq-question h3 {
        width:80%;
    }
}

/* Footer */

.footer {
    background-color: #007bff;
    color: white;
    padding: 50px 0 60px 20px;
}

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

.footer .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
}

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

.footer .footer-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer .footer-link:hover {
    opacity: 0.8;
}

.footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.footer .footer-copyright {
    opacity: 0.8;
}

.footer .footer-mentions {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer .footer-mentions:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .footer .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .footer .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Services */

.services {
    background-color: #f8f9fa;
    padding: 100px 0;
}

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

.services .section-title {
    text-align: center;
    color: #007bff;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.services .service-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.services .service-card h3 {
    color: #007bff;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.services .service-card ul {
    list-style-type: none;
    padding: 0;
}

.services .service-card ul li {
    margin-bottom: 10px;
    color: #333;
}

.services .service-card ul li span {
    font-weight: bold;
}

.services .service-card table {
    width: 100%;
    border-collapse: collapse;
}

.services .service-card table td {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.services .service-card table td:last-child {
    text-align: right;
    font-weight: bold;
    color: #007bff;
}

.services .simply-pay-info {
    margin-top: 15px;
    padding-top: 15px;
    padding-left: 30px;
    border-top: 1px solid #e7f1ff;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    background-color: #f8f9fa;
    padding: 15px 15px 15px 40px;
    border-radius: 8px;
    position: relative;
}

.services .simply-pay-info:before {
    content: "\f1fa";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #007bff;
    position: absolute;
    left: 10px;
    top: 15px;
    background-color: white;
    padding: 5px;
    border-radius: 50%;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .services .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Consignes */

.washing-guidelines {
    background-color: white;
    padding: 100px 0;
}

.washing-guidelines .guidelines-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.washing-guidelines .section-title {
    text-align: center;
    color: #007bff;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

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

.washing-guidelines .guideline-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,123,255,0.1);
}

.washing-guidelines .guideline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,123,255,0.2);
}

.washing-guidelines .guideline-icon {
    width: 80px;
    height: 80px;
    background-color: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.washing-guidelines .guideline-card:hover .guideline-icon {
    transform: rotate(360deg);
}

.washing-guidelines .guideline-card h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.washing-guidelines .guideline-card p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .washing-guidelines .guidelines-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact */

.contact-section {
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
    padding: 100px 0;
    overflow: hidden;
}

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

.contact-content {
    display: flex;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.1);
}

.contact-info,
.contact-form {
    flex: 1;
    padding: 60px;
}

.contact-info {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.contact-info h2,
.contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.info-list {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1.5rem;
}

.info-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-details p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-form {
    background-color: #ffffff;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    outline: none;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:valid,
.form-group textarea:valid {
    border-bottom-color: #007bff;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
    transform: translateY(-25px);
    font-size: 0.8rem;
    color: #007bff;
}

.contact-form h2 {
    color:#333;
}

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

.submit-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.submit-btn span {
    z-index: 1;
    transition: all 0.3s ease;
}

.submit-btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
    transition: all 0.4s ease;
    z-index: 0;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        padding: 30px;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 2rem;
    }
}

/* Mentions */

.legal-mentions {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.legal-mentions-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-mentions-title {
    color: #007bff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.legal-mentions-content {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
    padding: 40px;
}

.legal-mentions-item {
    margin-bottom: 30px;
}

.legal-mentions-subtitle {
    color: #007bff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.legal-mentions-text {
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

.legal-mentions-text a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-mentions-text a:hover {
    color: #0056b3;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-mentions-title {
        font-size: 2rem;
    }
    
    .legal-mentions-content {
        padding: 30px;
    }
    
    .legal-mentions-subtitle {
        font-size: 1.3rem;
    }
}

/* Pourquoi Nous ? */

.highlights {
    background: linear-gradient(135deg, #f6f9fc 0%, #e9f2f9 100%);
    padding: 100px 0;
}

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

.highlights-title {
    font-size: 2.5rem;
    color: #007bff;
    text-align: center;
    margin-bottom: 50px;
}

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

.highlight-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.1);
}

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

.highlight-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.highlight-subtitle {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .highlights-title {
        font-size: 2rem;
    }
    
    .highlight-card {
        padding: 20px;
    }
}

/* Location */

.location {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  .location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .location-title {
    font-size: 2.5rem;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .location-content {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .location-info {
    flex: 1;
  }
  
  .location-info h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .location-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
  }
  
  .location-map {
    flex: 2;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
  }
  
  .location-map iframe {
    width: 100%;
    height: 450px;
    border: none;
  }
  
  @media (max-width: 768px) {
    .location-content {
      flex-direction: column;
    }
    
    .location-map iframe {
      height: 350px;
    }
  }
  
  .facebook-link {
    color:#FFF;
  }

  .contact {
    margin-top: 20px;
  }
