/* Custom text sizes for your design */
        .uf-text-base {
            font-size: 15px;
            line-height: 1.5;
        }
        
        .uf-text-md {
            font-size: 1rem;
            line-height: 1.5rem;
        }
        
        /* Mobile accordion styles */
        @media (max-width: 767px) {
            /* Hide default details marker */
            details summary::-webkit-details-marker {
                display: none;
            }
            
            /* Smooth rotation for chevron */
            details summary svg {
                transition: transform 0.3s ease;
            }
            
            details[open] summary svg {
                transform: rotate(180deg);
            }
            
            /* Remove outline on focus, add custom focus style */
            details summary:focus {
                outline: none;
            }
            
            details summary:focus-visible {
                outline: 2px solid #002147;
                outline-offset: 2px;
                border-radius: 0.375rem;
            }
            
            /* Smooth animation for content */
            details .accordion-content {
                animation: slideDown 0.3s ease-out;
            }
            
            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }
        
        /* Desktop styles - show as regular content */
        @media (min-width: 768px) {
            /* Hide accordion UI elements */
            details {
                border: none !important;
                background: transparent !important;
                margin-bottom: 0;
            }
            
            /* Add spacing between sections */
            details + details {
                margin-top: 2rem;
                padding-top: 1.5rem;
                border-top: 1px solid #E5E7EB;
            }
            
            details summary {
                display: none !important;
            }
            
            details .accordion-content {
                padding: 0 !important;
            }
            
            /* Style headings as regular headings on desktop */
            .desktop-heading {
                display: block;
                font-size: 1.375rem;
                line-height: 1.75rem;
                /* font-weight: 500; */
                margin-bottom: 1rem;
                color: #002147;
                font-family: 'Crimson Text', serif;
            }
            
            /* Better readability for paragraphs */
            .accordion-content p {
                line-height: 1.7;
                margin-bottom: 1rem;
            }
            
            .accordion-content p:last-child {
                margin-bottom: 0;
            }
            
            /* Highlights list styling */
            .uf-highlights {
                margin: 1rem 0;
                padding-left: 1.25rem;
            }
            
            .uf-highlights li {
                margin: 0.25rem 0;
                line-height: 1.6;
            }
            
            /* Desktop "Read More" clamp - fade after Meaning & Inspiration */
            .uf-desc-wrapper.is-clamped {
                max-height: 700px;  /* Increased to accommodate highlights */
                overflow: hidden;
                position: relative;
            }
            
            .uf-desc-wrapper.is-clamped::after {
                content: "";
                position: absolute;
                left: 0; 
                right: 0; 
                bottom: 0;
                height: 120px;
                background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.95), #fff);
                pointer-events: none;
                z-index: 1;
            }
            
            /* Read More button styling */
            .uf-readmore {
                display: inline-flex;
                gap: 0.25rem;
                align-items: center;
                margin-top: 1rem;
                color: #002147;
                font-family: 'Mulish', sans-serif;
                font-size: 15px;
                background: none;
                border: 0;
                border-bottom: 1px solid #002147;
                padding: 0 0 2px 0;
                cursor: pointer;
                transition: all 0.3s ease;
            }
            
            .uf-readmore:hover {
                font-weight: 700;
                border-bottom-width: 2px;
            }
            
            .uf-readmore[aria-expanded="true"] {
                margin-top: 1.5rem;
            }
        }
        
        /* Highlights in 2 columns on larger screens */
        @media (min-width: 1024px) {
            .uf-highlights {
                columns: 2;
                column-gap: 2rem;
            }
            
            .uf-highlights li {
                break-inside: avoid;
            }
        }
        
        /* Hide Read More on mobile - more specific */
        @media (max-width: 767px) {
            .uf-readmore,
            button.uf-readmore,
            #uf-readmore {
                display: none !important;
                visibility: hidden !important;
            }
            ul.uf-highlights {
                margin-left: 20px
            }
        }
        
        /* Hide desktop headings on mobile */
        @media (max-width: 767px) {
            .desktop-heading {
                display: none;
            }
        }
        
        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            details .accordion-content {
                animation: none;
            }
            details summary svg {
                transition: none;
            }
        }