/* Base Styles */
:root {
	--primary-color: #4361ee;
	--primary-dark: #3a56d4;
	--secondary-color: #3f37c9;
	--text-color: #2b2d42;
	--text-light: #8d99ae;
	--background-color: #ffffff;
	--light-gray: #f8f9fa;
	--border-color: #e9ecef;
	--error-color: #ef233c;
	--success-color: #2ec4b6;
}

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

body {
	font-family: "Inter", sans-serif;
	color: var(--text-color);
	line-height: 1.6;
	background-color: var(--light-gray);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

/* Header Styles */
.header {
	background-color: var(--background-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

.logo {
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
}

.logo span {
	color: var(--text-color);
}

.nav {
	display: flex;
	gap: 30px;
}

.nav-link {
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover {
	color: var(--primary-color);
}

/* Terms Container */
.terms-container {
	padding: 60px 0;
}

.terms-header {
	text-align: center;
	margin-bottom: 50px;
}

.terms-header h1 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-color);
}

.last-updated {
	color: var(--text-light);
	font-size: 16px;
}

/* Terms Content */
.terms-content {
	background-color: var(--background-color);
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	padding: 50px;
}

.terms-section {
	margin-bottom: 40px;
}

.terms-section h2 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--primary-color);
	display: flex;
	align-items: center;
}

.section-icon {
	margin-right: 10px;
	font-size: 18px;
	color: var(--secondary-color);
}

.terms-section p {
	margin-bottom: 15px;
	color: var(--text-color);
}

.terms-section ul {
	margin: 15px 0 15px 20px;
}

.terms-section li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 20px;
}

.terms-section li:before {
	content: "•";
	color: var(--primary-color);
	font-weight: bold;
	position: absolute;
	left: 0;
}

address {
	font-style: normal;
	margin-top: 15px;
}

address a {
	color: var(--primary-color);
	transition: color 0.3s ease;
}

address a:hover {
	color: var(--primary-dark);
}

/* Terms Actions */
.terms-actions {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 50px;
}

.btn {
	padding: 12px 30px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	font-size: 16px;
}

.btn-primary {
	background-color: var(--primary-color);
	color: white;
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: white;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
	background-color: var(--light-gray);
	transform: translateY(-2px);
}

/* Footer Styles */
.footer {
	background-color: var(--text-color);
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h3 {
	font-size: 18px;
	margin-bottom: 20px;
	color: white;
}

.footer-section a {
	display: block;
	margin-bottom: 12px;
	color: var(--text-light);
	transition: color 0.3s ease;
}

.footer-section a:hover {
	color: white;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	font-size: 20px;
	color: var(--text-light);
	transition: color 0.3s ease;
}

.social-links a:hover {
	color: white;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-light);
	font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.header .container {
		flex-direction: column;
		gap: 20px;
	}

	.nav {
		gap: 20px;
	}

	.terms-header h1 {
		font-size: 32px;
	}

	.terms-content {
		padding: 30px;
	}

	.terms-actions {
		flex-direction: column;
		gap: 15px;
	}

	.btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.nav {
		flex-direction: column;
		align-items: center;
		gap: 15px;
	}

	.terms-header h1 {
		font-size: 28px;
	}

	.terms-section h2 {
		font-size: 20px;
	}
}
