:root {
	--primary-color: #2c3e50;
	--secondary-color: #34495e;
	--accent-color: #3498db;
	--text-color: #333;
	--bg-light: #f4f7f6;
	--white: #ffffff;
}

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

body {
	font-family: 'Inter', sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--bg-light);
	padding: 40px 20px;
}

.cv-container {
	max-width: 1000px;
	margin: 0 auto;
	background: var(--white);
	display: grid;
	grid-template-columns: 300px 1fr;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border-radius: 8px;
	overflow: hidden;
}

/* Sidebar Styling */
.sidebar {
	background-color: var(--primary-color);
	color: var(--white);
	padding: 40px 30px;
}

.profile-img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background: #eee;
	margin-bottom: 20px;
	border: 4px solid var(--accent-color);
	display: block;
}

.sidebar h2 {
	font-size: 1.2rem;
	text-transform: uppercase;
	margin-bottom: 15px;
	border-bottom: 2px solid var(--accent-color);
	padding-bottom: 5px;
	margin-top: 30px;
}

.contact-info p, .skills-list li {
	font-size: 0.9rem;
	margin-bottom: 10px;
	list-style: none;
}

.skills-list { padding: 0; }
.skills-list li {
	background: rgba(255,255,255,0.1);
	padding: 2.5px 5px;
	border-radius: 4px;
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 8px;
}

/* Main Content Styling */
.main-content {
	padding: 40px 50px;
}

header {
	margin-bottom: 40px;
}

header h1 {
	font-size: 2.5rem;
	color: var(--primary-color);
	margin-bottom: 5px;
}

header .subtitle {
	font-size: 1.2rem;
	color: var(--accent-color);
	font-weight: 500;
}

section { margin-bottom: 35px; }

h2.section-title {
	font-size: 1.5rem;
	color: var(--primary-color);
	border-bottom: 2px solid #eee;
	margin-bottom: 20px;
	padding-bottom: 5px;
}

.job-item, .edu-item {
	margin-bottom: 20px;
}

.item-header {
	display: flex;
	justify-content: space-between;
	font-weight: 700;
	color: var(--secondary-color);
}

.item-sub {
	font-style: italic;
	color: #666;
	margin-bottom: 8px;
}

ul.details {
	margin-left: 20px;
	font-size: 0.95rem;
	text-align: justify;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.cv-container {
		grid-template-columns: 1fr;
	}
	.sidebar {
		text-align: center;
	}
	.profile-img { margin: 0 auto 20px; }
}

@media print {
	body { background: white; padding: 0; }
	.cv-container { box-shadow: none; }
}
