/* Layout */
body {
	margin: 0;
	font-family: Arial, sans-serif;
	background: #f4f4f4;
	color: #333;
}

.cv-container {
	display: flex;
	max-width: 1200px;
	margin: auto;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Sidebar */
.sidebar {
	width: 300px;
	background: #333;
	color: #fff;
	padding: 20px;
}

.sidebar h1 {
	font-size: 1.8rem;
	margin-bottom: 10px;
}

.sidebar h2 {
	font-size: 1.2rem;
	margin-top: 20px;
	border-bottom: 1px solid #555;
	padding-bottom: 5px;
}

.sidebar a {
	color: #ff9800;
	text-decoration: none;
}

.sidebar ul {
	list-style: none;
	padding: 0;
}

.sidebar ul li {
	margin-bottom: 8px;
}

/* Main Content */
.content {
	flex: 1;
	padding: 30px;
}

.content h2 {
	margin-top: 0;
	color: #222;
	border-bottom: 2px solid #ff9800;
	display: inline-block;
	padding-bottom: 5px;
}

.content h3 {
	margin-bottom: 5px;
	color: #444;
}

.content ul {
	margin-top: 5px;
	margin-bottom: 20px;
}

.back-btn {
	margin-top: 30px;
}

.back-btn a {
	display: inline-block;
	padding: 10px 20px;
	background: #2c3e50;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s;
}

.back-btn a:hover {
	background: #34495e;
}

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

	.sidebar {
		width: 100%;
		text-align: center;
	}
}
