 /* Reset */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'PT Sans', sans-serif;
        }

        body {
            color: #333;
            line-height: 1.6;
        }

        /* Hero section */
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            height: 50vh;
            background: url('https://cdn.pixabay.com/photo/2020/06/09/15/32/camp-5278843_640.png') center/cover no-repeat;
            color: white;
            padding: 2rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
        }

        /* Container */
        .container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        /* FAQ search bar */
        #faqSearch {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 2rem;
            border-radius: 8px;
            border: 1px solid #ff9800;
            font-size: 1rem;
        }

        /* FAQ accordion */
        .faq-item {
            background: #fff3e0;
            border-left: 5px solid #ff9800;
            margin-bottom: 10px;
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #ffe0b2;
        }

        .faq-answer {
            padding: 0 20px 15px;
            display: none;
        }

        /* Contact home section */
        .home-contact {
            text-align: center;
            margin: 3rem 0;
        }

        .home-contact button {
            background: linear-gradient(135deg, #FFC107 0%, #FF9800 50%, #F57C00 100%);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            font-family: 'PT Sans', sans-serif; 
            transition: background 0.3s ease;
        }

        .home-contact button:hover {
            background: linear-gradient(45deg, #b89200, #e8c200);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1rem;
            }
        }
    