:root {
	--primary-color: #022F40;
	--sidebar-bg: #f8fafc;
	--text-color: #1e293b;
	--code-bg: #f1f5f9;
	--border-color: #e2e8f0;
	--package-bg: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: var(--text-color);
	line-height: 1.6;
}

.documentation-container {
	display: flex;
	min-height: 100vh;
}

.sidebar {
	width: 280px;
	background: var(--sidebar-bg);
	border-right: 1px solid var(--border-color);
	padding: 2rem;
	position: fixed;
	height: 100vh;
	overflow-y: auto;
}

.logo h1 {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	color: var(--primary-color);
}

nav ul {
	list-style: none;
}

nav ul li {
	margin-bottom: 0.5rem;
}

nav ul li a {
	text-decoration: none;
	color: var(--text-color);
	display: block;
	padding: 0.5rem;
	border-radius: 0.375rem;
	transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
	background: var(--primary-color);
	color: white;
}

.content {
	flex: 1;
	padding: 2rem;
	margin-left: 280px;
	max-width: 900px;
}

section {
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--border-color);
}

h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

h3 {
	font-size: 1.5rem;
	margin: 2rem 0 1rem;
	color: var(--primary-color);
}

h4 {
	font-size: 1.25rem;
	margin: 1rem 0;
}

p {
	margin-bottom: 1rem;
}

ul, ol {
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

li {
	margin-bottom: 0.5rem;
}

/* Pricing Table Styles */
.pricing-table {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.package {
	background: var(--package-bg);
	border: 1px solid var(--border-color);
	border-radius: 0.5rem;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.package:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.package h4 {
	color: var(--primary-color);
	margin-bottom: 1rem;
}

.package p {
	margin-bottom: 0.5rem;
}

/* List Styles */
ul li, ol li {
	line-height: 1.8;
}

ul ul, ol ul, ul ol, ol ol {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

/* Strong Text */
strong {
	color: var(--primary-color);
	font-weight: 600;
}

@media (max-width: 768px) {
	.documentation-container {
		flex-direction: column;
	}

	.sidebar {
		width: 100%;
		height: auto;
		position: relative;
		padding: 1rem;
	}

	.content {
		margin-left: 0;
		padding: 1rem;
	}

	.pricing-table {
		grid-template-columns: 1fr;
	}
}