.search-page {
	flex: 1;
	width: 90%;
	max-width: 1400px;
	margin: 30px auto;
	background: transparent;
}

.search-header {
	text-align: center;
	margin-bottom: 40px;
	padding: 40px;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	border-radius: 20px;
}

.search-header h1 {
	font-size: 36px;
	color: #fff;
	margin-bottom: 15px;
}

.search-header p {
	font-size: 18px;
	color: #a4a7ab;
	max-width: 600px;
	margin: 0 auto;
}

.search-content-section {
	margin-top: 50px;
}

.search-tips-section {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.search-tips-section h2 {
	font-size: 24px;
	color: #1a1a2e;
	margin-bottom: 25px;
}

.tips-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.tip-box {
	background: #f8f9fa;
	border-radius: 15px;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease;
}

.tip-box:hover {
	background: #f0f1f3;
	transform: translateY(-3px);
}

.tip-icon {
	font-size: 40px;
	display: block;
	margin-bottom: 15px;
}

.tip-box h3 {
	font-size: 16px;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.tip-box p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

.tip-box a {
	color: #5CF3AF;
	text-decoration: none;
}

.popular-searches {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.popular-searches h2 {
	font-size: 24px;
	color: #1a1a2e;
	margin-bottom: 20px;
}

.search-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.search-tag {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	color: #1a1a2e;
	padding: 12px 24px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.search-tag:hover {
	background: linear-gradient(135deg, #5CF3AF 0%, #4de0a0 100%);
	color: #1a1a2e;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(92, 243, 175, 0.3);
}

.content-block {
	background: #fff;
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
	font-size: 24px;
	color: #1a1a2e;
	margin-bottom: 25px;
}

.categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

.category-card {
	background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
	border-radius: 15px;
	padding: 25px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.category-card:hover {
	border-color: #5CF3AF;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(92, 243, 175, 0.2);
}

.cat-icon {
	font-size: 40px;
	display: block;
	margin-bottom: 15px;
}

.category-card h3 {
	font-size: 18px;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.category-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.6;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.faq-card {
	background: #f8f9fa;
	border-radius: 15px;
	padding: 25px;
	transition: all 0.3s ease;
}

.faq-card:hover {
	background: #f0f1f3;
}

.faq-card h4 {
	font-size: 16px;
	color: #1a1a2e;
	margin-bottom: 12px;
}

.faq-card p {
	font-size: 14px;
	color: #666;
	line-height: 1.7;
}

.faq-card a {
	color: #5CF3AF;
	text-decoration: none;
}

.footer {
	margin-bottom: 0px;
}

.caption_text {
	text-transform: none;
}

@media (max-width: 750px) {
	.search-page {
		width: 95%;
		margin: 20px auto;
	}

	.search-header {
		padding: 30px 20px;
	}

	.search-header h1 {
		font-size: 28px;
	}

	.search-header p {
		font-size: 16px;
	}

	.content-block,
	.search-tips-section,
	.popular-searches {
		padding: 20px;
	}

	.tips-grid,
	.categories-grid,
	.faq-grid {
		grid-template-columns: 1fr;
	}

	.search-tags {
		justify-content: center;
	}

	.caption_text {
		font-size: 18px;
	}
}

@media (min-width: 750px) {
	.inner_serch {
		width: 100%;
	}

	.ct_box_five {
		justify-content: flex-start;
		
	}
	.ct_five_box{
		margin-right: 20px;
	}
	.ct_five_box:nth-of-type(3n){
		margin-right: 0px;
	}
}
