/* Inter Font Configuration */
:root {
	--font-inter: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		Oxygen, Ubuntu, Cantarell, sans-serif;
}

* {
	font-family: var(--font-inter);
}

body {
	font-family: var(--font-inter);
	font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
	min-height: 100vh;
}

html {
	height: 100%;
}

#__next {
	min-height: 100vh;
	position: relative;
}

/* Optimize font rendering */
* {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* FAQ Accordion Animation */
details summary {
	transition: margin 0.3s ease;
}

details[open] summary {
	margin-bottom: 0.5rem;
}

details > div {
	animation: slideDown 0.3s ease-out;
	overflow: hidden;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
		max-height: 0;
	}
	to {
		opacity: 1;
		transform: translateY(0);
		max-height: 500px;
	}
}
