* {
	box-sizing: border-box;
}



body {
	margin: 0;
	padding: 24mm 0;
	background: #eceff1;
	font-family: "Roboto", sans-serif;
	color: #1f2933;
	display: flex;
	justify-content: center;
}

.page {
	width: 210mm;
	min-height: 297mm;
	background: #ffffff;
	padding: 22mm;
	box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.page-header {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	border-bottom: 2px solid #e0e6ed;
	padding-bottom: 12px;
}

.eiffel-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #0b7285;
	box-shadow: 0 4px 12px rgba(11, 114, 133, 0.2);
}

.subtitle {
	text-transform: uppercase;
	letter-spacing: 0.35em;
	font-size: 0.72rem;
	color: #52606d;
	margin: 0 0 8px;
}

h1 {
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin: 0;
}

.lastname {
	font-weight: 700;
}

.contact {
	display: grid;
	gap: 6px 18px;
	font-size: 0.95rem;
	align-content: start;
}

.contact-item {
	margin: 0;
}

.contact a {
	color: #1f2933;
	text-decoration: none;
}

.intro {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.tagline {
	margin: 0;
	font-weight: 500;
	font-size: 1.05rem;
	color: #0b7285;
}

.description {
	margin: 0;
	line-height: 1.6;
}

.section {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.section h2 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #364152;
}

.section h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: #1f2933;
}

.list {
	margin: 0;
	padding-left: 1.2em;
	line-height: 1.5;
}

.list li {
	margin-bottom: 4px;
}

.experience {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.experience h3 {
	margin: 0;
	font-weight: 500;
	font-size: 1rem;
}

.skills {
	margin-top: 6px;
}

.skills-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 24px;
	font-size: 0.95rem;
}

.skills-grid h3 {
	margin: 0 0 4px;
	font-weight: 500;
	font-size: 1rem;
}

.skills-grid p {
	margin: 0;
	line-height: 1.5;
}

p {
	margin: 0;
}

.tools-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 8px;
	font-size: 0.95rem;
}

.tools-table th {
	background-color: #0b7285;
	color: #ffffff;
	padding: 10px;
	text-align: left;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tools-table td {
	border: 1px solid #d9e2ec;
	padding: 8px 10px;
	vertical-align: top;
}

.tools-table tr:nth-child(even) {
	background-color: #f8fafc;
}

.back-to-portfolio {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 250px;
	height: 50px;
	background-color: #2B3A42;
	color: #ffffff;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 24px;
}

.back-to-portfolio:hover {
	transform: scale(1.1);
	transition: transform 0.2s ease;
}

@media (max-width: 960px) {
	body {
		padding: 16px;
		flex-direction: column;
		align-items: center;
	}

	.page {
		width: 100%;
		min-height: auto;
		padding: 18px;
		box-shadow: none;
	}

	.page-header {
		flex-direction: column;
	}

	.skills-grid {
		grid-template-columns: 1fr;
	}

	.back-to-portfolio {
		position: static;
		width: 100%;
		max-width: 400px;
		margin-top: 20px;
		font-size: 18px;
	}
}