
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

  

        .container {
            max-width: 70%;
            width: 100%;
            margin: 0 auto;
        }


        .search-box {
            margin: 30px 0;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 15px 20px 15px 50px;
            border: none;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            box-shadow: 0 5px 20px rgba(52, 152, 219, 0.3);
        }

        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #7f8c8d;
            font-size: 1.2rem;
        }

        .faq-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .faq-item {
            border-bottom: 1px solid #eaeaea;
            transition: all 0.3s ease;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            padding: 20px 60px 20px 25px;
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: #f8f9fa;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }

        .faq-icon {
            position: absolute;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            color: #3498db;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.3s ease;
            background-color: #f8f9fa;
            color: #555;
            line-height: 1.6;
        }

        .faq-answer p {
            margin: 0;
            padding: 0 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 20px;
        }

        .faq-item.active .faq-icon {
            transform: translateY(-50%) rotate(180deg);
        }

        .contact-section {
            margin-top: 40px;
            text-align: center;
            padding: 25px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .contact-section p {
            margin-bottom: 15px;
            color: #7f8c8d;
        }

        .contact-btn {
            display: inline-block;
            padding: 12px 30px;
            background: #3498db;
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }

        .contact-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        }

        footer {
            margin-top: 40px;
            text-align: center;
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        @media (max-width: 600px) {
            h1 {
                font-size: 2rem;
            }
            
            .faq-question {
                padding: 18px 50px 18px 20px;
            }
            
            .faq-question h3 {
                font-size: 1rem;
            }
            
            .faq-answer {
                padding: 0 20px;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 20px 18px;
            }
        }
