

.faq-container {
  max-width: 100%;
  margin-bottom: 50px;

}

.faq-container h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e2d;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.faq-container h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #8b7355;
  margin: 15px auto 0;
  border-radius: 2px;
}

.faq-item {
  background: #f7f2ef;
  margin-bottom: 12px;
  color: white;
  border-radius: 8px;
  overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #2c3e2d;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  outline: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: #8b7355;
  transition: transform 0.3s ease;
}

.faq-question:hover {
  color: #8b7355;
  background: rgba(139, 115, 85, 0.03);
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #f7f2ef;
  color: #000000;
  line-height: 1.6;
}

.faq-answer.open {
  max-height: 1000px; /* valeur très grande pour laisser le contenu s'étendre */
  padding: 20px 25px;
}


    /* NOUVEAU FOOTER DESIGN */
        .enterprise-footer {
     background:#fbf8f6;
            color: #000000;
            position: relative;
            overflow: hidden;
        }

        .enterprise-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.01)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .footer-main {
            max-width: 86%;
            margin: 0 auto;
            padding: 50px 20px 30px;
            position: relative;
            z-index: 2;
        }

      
        /* Section Liens et Services */
        .footer-links-section {
 
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
               margin-top: 4%  !important;
        }

        .footer-column h4 {
            color: #e08114;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #b46e1e, #e08114c2);
            border-radius: 2px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 15px;
            transform: translateX(0);
            transition: all 0.3s ease;
        }

        .footer-column ul li:hover {
            transform: translateX(10px);
        }

        .footer-column ul li a {
            color: #000000;
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-column ul li a::before {
            content: '▶';
            color: #e0811421;
            margin-right: 10px;
            font-size: 12px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: rgba(107, 42, 30, 0.658);
        }

        .footer-column ul li a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }


  .footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(61, 59, 59, 0.6); 
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 25px;
}

        .footer-legal {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-legal a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #a35f10;
            transition: width 0.3s ease;
        }

        .footer-legal a:hover {
            color: #e0811470;
        }

        .footer-legal a:hover::after {
            width: 100%;
        }

        .footer-copyright {
            color: #000000;
            font-size: 14px;
        }

        .footer-copyright a {
            color: #e08114;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-copyright a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .footer-links-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

            
            .footer-links-section {
                grid-template-columns: 1fr;
            }
            
            .contact-social-section {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-legal {
                justify-content: center;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .social-media {
                gap: 15px;
            }

            .company-story-section {
                padding: 30px 25px;
            }
        }

        @media (max-width: 480px) {
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .story-header h3 {
                font-size: 24px;
            }
        }