* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: #f5f5f5;
	color: #333;
	line-height: 1.6;
}

.latestcontainer {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

header {
	/*background: linear-gradient(135deg, #6e8efb, #a777e3);*/
	background: linear-gradient(135deg, #BDB76B, #a777e3);
	color: white;
	padding: 40px 0;
	text-align: center;
}

.profile-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.profile-image {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	/*object-fit: cover;*/
	border: 5px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.profile-info {
	margin-top: 20px;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 10px;
}

.title {
	font-size: 1.2rem;
	opacity: 0.9;
	margin-bottom: 15px;
}

.social-links {
	display: flex;
	justify-content: center;
	margin: 20px 0;
	gap: 15px;
}

.social-links a {
	color: white;
	font-size: 1.5rem;
	transition: transform 0.3s;
}

.social-links a:hover {
	transform: translateY(-3px);
}

.address {
	margin: 10px 0;
	font-style: normal;
}

.content {
	padding: 40px 0;
}

.section {
	background: white;
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

h2 {
	color: #6e8efb;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f0f0f0;
}

.bio-text {
	line-height: 1.8;
}

@media ( min-width : 768px) {
	.profile-container {
		flex-direction: row;
		text-align: left;
		align-items: center;
	}
	.profile-info {
		margin-left: 30px;
		margin-top: 0;
	}
	.social-links {
		justify-content: flex-start;
	}

	/*.contact-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }*/
}