
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');
body { font-family: 'Inter', sans-serif; scroll-behavior: smooth; }
.hero-gradient { background: radial-gradient(circle at 50% 50%, #fffbeb 0%, #ffffff 100%); }
.bee-float { animation: float 3s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}

/* Tab active state styling */
.tab-btn.active {
    background-color: white;
    color: #b45309; /* amber-700 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #f59e0b; /* amber-500 */
}