body {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Raleway', sans-serif;
	background-color: #eed39a;
	color: #1f2937;
	min-height: 100%;
}        
* {
	box-sizing: border-box;
}        
/* Main Container */
.main-container {
	max-width: 420px;
	height: 100vh;
	margin: 0 auto;
	position: relative;
}             
/* Main Content */
.main-content {
	padding-top: 0;
	min-height: 100%;
}        
.page-header {
	text-align: center;
	margin: 35px 0;
}        
.page-title {
	font-size: 32px;
	font-weight: bold;
	color: #1f2937;
	margin-bottom: 10px;
	margin-top: 0px;
}        
.page-subtitle {
	font-size: 18px;
	color: #6b7280;
}        
/* Category Cards */
.categories-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
}    
.categories-container a{
	text-decoration: none;
}   
.category-card {
	height: 102px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}        
.category-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
	transition: all 0.3s ease;
}        
.category-card:hover::before {
	background: linear-gradient(45deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
}        
.category-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}     
.category-title {
	position: relative;
	z-index: 10;
	color: #ffffff;
	font-size: 28px;
	font-weight: bold;
	margin: 0;
}           
/* Responsive */
@media screen and (max-width: 768px) {
	.page-title {
		font-size: 32px;
	}        
	.category-title {
		font-size: 32px;
	}        
	.main-container {
		padding: 0 20px;
	}        
}