
        .nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .nav a:hover {
            color: #90EE90;
        }

        .main-content {
            max-width: 800px;
            margin: 3rem auto;
            padding: 0 2rem;
            flex: 1;
        }

        .page-title {
            text-align: center;
            color: #2d5a27;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .page-subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        .faq-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .faq-item {
            border-bottom: 1px solid #e8f5e8;
            transition: all 0.3s ease;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-question {
            background: #f0f8f0;
            color: #2d5a27;
            padding: 1.2rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: none;
            width: 100%;
            text-align: left;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #e8f5e8;
        }

        .faq-question::before {
            content: counter(faq-counter);
            counter-increment: faq-counter;
            background: #4a7c59;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .faq-question-text {
            flex: 1;
        }

        .faq-toggle {
            width: 24px;
            height: 24px;
            border: 2px solid #4a7c59;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4a7c59;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            flex-shrink: 0;
            margin-left: 1rem;
        }

        .faq-toggle::before {
            content: '+';
        }

        .faq-item.active .faq-toggle::before {
            content: '−';
        }

        .faq-answer {
            padding: 0 2rem 0 4rem;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
            background: #f0f8f0;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 1rem 2rem 1.5rem 4rem;
            opacity: 1;
        }

        .separator {
            text-align: center;
            color: #90EE90;
            font-size: 1.5rem;
            margin: 1rem 0;
            font-weight: bold;
        }

        .contact-highlight {
            background: linear-gradient(135deg, #90EE90, #4a7c59);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            
            .nav {
                flex-wrap: wrap;
                justify-content: center;
            }

            .main-content {
                padding: 0 1rem;
                margin: 2rem auto;
            }

            .page-title {
                font-size: 2rem;
            }

            .faq-question {
                padding: 1rem 1.5rem;
                font-size: 1rem;
            }

            .faq-question::before {
                left: 1.5rem;
            }

            .faq-question-text {
                margin-left: 0;
            }

            .faq-answer {
                padding: 0 1.5rem 0 3.5rem;
            }

            .faq-item.active .faq-answer {
                padding: 1rem 1.5rem 1.5rem 3.5rem;
                opacity: 1;
            }
        }

        body {
            counter-reset: faq-counter;
        }