.containerfaq {
            max-width: 1200px;
            
            margin: 0 auto;
            padding: 20px;
            padding-top: 130px;
        }
        
        
        
        .faq-section {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .faq-item {
            border-bottom: 1px solid #eaeaea;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #f8f9fa;
        }
        
        .faq-question h3 {
            font-weight: 600;
            font-size: 18px;
            margin: 0;
            color: #2c3e50;
        }

        
        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .faq-icon::before, .faq-icon::after {
            content: '';
            position: absolute;
            background-color: #3498db;
            transition: all 0.3s ease;
        }
        
        .faq-icon::before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            transform: translateY(-50%);
        }
        
        .faq-icon::after {
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            transform: translateX(-50%);
        }
        
        .faq-item.active .faq-icon::after {
            transform: translateX(-50%) rotate(90deg);
            opacity: 0;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            color: #555;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 500px;
        }
        
        @media (max-width: 600px) {
            .container {
                padding: 15px;
            }
            
            .faq-question {
                padding: 15px;
            }
            
            .faq-question h3 {
                font-size: 16px;
            }
        }