* {
	box-sizing: border-box;
}

body {
	font-family: Times New Roman;
	margin: 0;
	background-color: white;
	color: #333;
}

.header {
	padding: 50px;
	text-align: center;
	background: #1abc9c;
	color: white;
}

.navbar {
	display: flex;
	background-color: #333;
}

.navbar a {
	padding: 14px 20px;
	text-decoration: none;
	text-align: center;
	color: white;
}

.navbar a:hover {
	background-color: #F54927;
	color:white;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.side {
	flex: 30%;
	background-color: #f8f9fa;
	padding: 20px;
}

.main {
	flex: 70%;
	padding: 20px;
}

h2 {
	color: #F54927;
}

h3,h5 { 
	color: #1abc9c;
}

p, li {
	color: #333;
	line-height: 1.6;
}

ul {
	padding-left: 20px;
}

.fakeimg {
	background-color: #e9ecef;
	width: 100%;
	padding: 20px;
	border-radius: 5px;
	text-align: center;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: cover;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	color: white;
	font-weight: bold;
	font-size: 1.5em;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.destination-img {
	background-color: #e9ecef;
	width: 100%;
	padding: 15px;
	border-radius: 5px;
	text-align: center;
	margin-bottom: 15px;
	position: relative;
	overflow: hidden;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	color: white;
	font-weight: bold;
	font-size: 1.2em;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.math-concept {
	background-color: #e8f4fc;
	border-left: 4px solid #1abc9c;
	padding: 15px;
	margin: 15px 0;
}

.footer {
	padding: 20px;
	text-align: center;
	background: #2c3e50;
	color: white;	
}

.news-article {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.news-title {
	color: #2c3e50;
	margin-bottom: 10px;
}

.news-meta {
	color: #7f8c8d;
	font-size: 0.9em;
	margin-bottom: 10px;
}

.news-link {
	color: #1abc9c;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	margin-top: 10px;
}

.news-link:hover {
	text-decoration: underline;
}

.news-img {
	width: 100%;
	max-height: 200px;
	object-fit: cover;
	border-radius: 5px;
	margin: 10px 0;
}

@media ( max-width: 700px) {
	.row,
	.navbar {
		flex-direction: column;
	}
}
