/* Responsive Styles */
@media (max-width: 1024px) {
    .container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    /* Typography */
    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Layout */
    .services-grid,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Components */
    .button-group {
        flex-direction: column;
    }

    .service-card {
        height: 250px;
    }

    .team-member img {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    /* Typography */
    .hero h1 {
        font-size: 2rem;
    }

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

    /* Components */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Responsive Menu */
@media (max-width: 768px) {
    .navbar .menu {
        display: none; /* Hide menu on small screens */
        position: absolute;
        top: 70px;
        right: 20px;
        background-color: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        width: 200px;
    }

    .navbar .menu.active {
        display: flex; /* Show menu when active */
    }

    .navbar .menu ul {
        flex-direction: column;
    }

    .navbar .menu ul li {
        margin: 10px 0;
    }

    .navbar .hamburger {
        display: flex; /* Show hamburger on small screens */
    }

    .navbar .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .navbar .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .about-us-block, .services-block {
        flex-direction: column;
        text-align: center;
    }

    .about-us-block .text, .services-block .text,
    .about-us-block .image, .services-block .image {
        flex: none;
        width: 100%;
    }
    .container .btn-block, .container .txt-block{
        text-align: center;
    }
}

@media (max-width: 768px) {
    .parallax-section {
        height: 300px; /* Réduisez la hauteur sur mobile */
    }

    .parallax-content h2 {
        font-size: 28px;
    }

    .parallax-content p {
        font-size: 16px;
    }

    .parallax-content .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .contact-box {
        padding: 20px;
    }

    .social-icons {
        flex-direction: column;
    }

    .social-icons a {
        margin: 5px 0;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        height: 200px; /* Réduction de la hauteur sur mobile */
    }

    .contact-banner .banner-content h1 {
        font-size: 24px; /* Réduction de la taille du titre */
    }

    .contact-banner .banner-content p {
        font-size: 14px; /* Réduction de la taille du texte */
    }
}

@media (max-width: 768px) {
    .text-image-block .text-column,
    .text-image-block .image-column {
        width: 100%; /* Les colonnes prennent 100% */
        text-align: center; /* Centrer le texte sur mobile */
    }

    .text-image-block .text-column {
        margin-bottom: 20px; /* Ajoutez un espacement entre texte et image */
    }
}

@media (max-width: 768px){
    .list-services{
        padding-left: 1.5rem;
    }
}