        body {
            font-family: 'Inter', sans-serif;
        }

        .text-primary-green {
            color: #10b981;
        }

        .bg-primary-green {
            background-color: #10b981;
        }

        .bg-primary-green-hover:hover {
            background-color: #059669;
        }

        .border-primary-green {
            border-color: #10b981;
        }

        .tab-active {
            color: #10b981;
            border-bottom: 2px solid #10b981;
            font-weight: 600;
        }

        .tab-inactive {
            color: #6b7280;
            border-bottom: 2px solid transparent;
        }

        .tab-inactive:hover {
            color: #374151;
        }

        .accordion-content {
            transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
            max-height: 0;
            opacity: 0;
            overflow: hidden;
        }

        .accordion-content.open {
            max-height: 500px;
            opacity: 1;
        }

        .rotate-icon {
            transition: transform 0.3s ease;
        }

        .rotate-icon.open {
            transform: rotate(180deg);
        }
