* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Raleway', sans-serif;
}

body {
	background: linear-gradient(135deg, #f5f7fa 0%, #d3e6f4 100%);
	color: #333;
	line-height: 1.6;	
}

a:link, a:visited, a:active  {
	text-decoration: none;
	color:  #0e2b42;
}

a:link img {
	border: none;
}

a:hover {
	text-decoration: none;
	color: #000203;
}

/* Header/Hero Section */
.hero {
	height: 50vh;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: url('../../images/about_top.jpg') no-repeat center center/cover;
	color: white;
	position: relative;
	overflow: hidden;            
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	padding: 20px;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	animation: fadeInDown 1s ease-out;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	animation: fadeInUp 1s ease-out 0.3s;
	animation-fill-mode: backwards;
}

/* Content Section */
.content-area, .content-area2, .content-area3 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: url('../../images/bg1a.jpg') no-repeat center center/cover;
	color: white;
	position: relative;
	overflow: hidden;            
}

.content-area2 {	
	background: url('../../images/bg1b.jpg') no-repeat center center/cover;
}

.content-area3 {
	background: url('../../images/bg2a.jpg') no-repeat center center/cover;
}

.content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4rem 2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;            
}

.content-text {
	flex: 1;
	min-width: 300px;
}

.content-text h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #45607a;
	font-family: "Cormorant Garamond", serif;
	font-weight: 400;
}

.content-text p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #555;
}

.content-image {
	flex: 1;
	min-width: 300px;            
}

.content-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.content-image img:hover {
	transform: scale(1.05);
}

/* Footer */
footer {
	background: #2c3e50;
	color: white;
	text-align: center;
	padding: 2rem;
}

footer p {
	font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.content {
		flex-direction: column;
		text-align: center;
	}

	.content-text h2 {
		font-size: 2rem;
	}
}

img {
	border: none;
}

