:root {
	--primary-color: #42A1D6;
	--primary-light: #e8f4fc;
	--dark-color: #343a40;
	--light-color: #f8f9fa;
}

body {
	margin: 0;
    padding: 0;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #333;
}

/* 导航栏样式 */
.navbar {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 0.8rem 1rem;
}

.navbar-brand {
	font-weight: 700;
	color: var(--dark-color);
	font-size: 1.5rem;
}

.nav-link {
	font-weight: 500;
	color: var(--dark-color);
	padding: 0.5rem 1rem;
	transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
	color: var(--primary-color);
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-primary:hover {
	background-color: #3688b8;
	border-color: #3688b8;
}

/* Banner区域样式 */
.banner {
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/banner.jpg') center/cover no-repeat;
	color: white;
	padding: 8rem 0;
	margin-top: 76px;
	position: relative;
	overflow: hidden;
}

.banner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(66, 161, 214, 0.1);
	z-index: 1;
}

.banner-content {
	position: relative;
	z-index: 2;
}

.banner-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	transition: all 0.5s ease;
}

.banner-title:hover {
	transform: scale(1.02);
	text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.banner-desc {
	font-size: 1.25rem;
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.banner-btn {
	padding: 0.8rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.banner-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(45deg, #3688b8, #42A1D6, #5ab8e9, #42A1D6);
	background-size: 400% 400%;
	z-index: -1;
	transition: all 0.4s ease;
	animation: gradientShift 6s ease infinite;
	border-radius: 50px;
}

.banner-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.banner-btn:hover::before {
	animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* 服务项目样式 */
.services-section {
	background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('images/bk.jpg') center/cover fixed no-repeat;
	padding: 5rem 0;
	position: relative;
}

.service-card {
	border: none;
	border-radius: 15px;
	transition: all 0.4s ease;
	height: 100%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	position: relative;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary-color), #5ab8e9);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	font-size: 3rem;
	color: var(--primary-color);
	margin-bottom: 1.5rem;
	transition: all 0.4s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.2) rotate(5deg);
	color: #2b7bac;
}

.service-title {
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.service-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: var(--primary-color);
	transition: width 0.4s ease;
}

.service-card:hover .service-title::after {
	width: 100%;
}

/* 案例区域样式 */
.case-study-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.3s;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.case-study-card:hover {
	transform: translateY(-8px);
}

.case-img-container {
	height: 215px;
	overflow: hidden;
}

.case-img-container img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: transform 0.5s;
}

.case-study-card:hover .case-img-container img {
	transform: scale(1.05);
}

.case-tag {
	background-color: var(--primary-light);
	color: var(--primary-color);
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 500;
}

/* 页脚样式 */
footer {
	background-color: var(--dark-color);
	color: white;
	padding: 4rem 0 2rem;
}

footer h5 {
	font-weight: 600;
	margin-bottom: 1.2rem;
	color: var(--primary-color);
}

footer a {
	color: #ddd;
	text-decoration: none;
	transition: color 0.3s;
}

footer a:hover {
	color: var(--primary-color);
}

.contact-info li {
	margin-bottom: 0.5rem;
}

.social-links a {
	display: inline-block;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	text-align: center;
	line-height: 36px;
	margin-right: 0.5rem;
	transition: background 0.3s;
}

.social-links a:hover {
	background: var(--primary-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
	.banner {
		padding: 4rem 0;
	}
	
	.banner-title {
		font-size: 2.5rem;
	}
	
	.case-img-container {
		height: 180px;
	}
}

/************************************************************
*	themes.html                                        *
************************************************************/
/* 分类导航样式 */
.category-nav {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 3rem;
}

.category-btn {
	padding: 0.6rem 1.5rem;
	border-radius: 25px;
	border: 1px solid #ddd;
	background-color: white;
	color: var(--dark-color);
	font-weight: 500;
	transition: all 0.3s;
}

.category-btn:hover, .category-btn.active {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: white;
}

/* 模板卡片样式 */
.template-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	margin-bottom: 1.5rem;
}

.template-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.template-img-container {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 比例 */
}

.template-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.template-card:hover .template-img {
	transform: scale(1.05);
}

.template-category {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: rgba(255, 255, 255, 0.9);
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 500;
}

.template-body {
	padding: 1.2rem;
}

.template-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
	height: 2.8rem; /* 固定高度，最多显示2行 */
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.template-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	color: #666;
}

.template-framework {
	display: flex;
	align-items: center;
}

.template-framework i {
	margin-right: 0.3rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.category-nav {
		gap: 0.3rem;
	}
	
	.category-btn {
		padding: 0.5rem 1rem;
		font-size: 0.9rem;
	}
	
	.template-body {
		padding: 1rem;
	}
}

/************************************************************
*	seoanalysis.html                                        *
************************************************************/
/* 主内容区样式 */
.main-content {
	padding: 3rem 0;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-title {
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 1.5rem;
	position: relative;
	padding-top: 76px;
	padding-bottom: 0.5rem;
	text-align: center;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
}

/* 搜索区域样式 - 居中显示 */
.search-section {
	background-color: var(--primary-light);
	border-radius: 15px;
	padding: 2.5rem;
	margin-bottom: 3rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* 搜索组合样式 */
.search-combo {
	position: relative;
	display: flex;
	margin-bottom: 1rem;
}

.search-input {
	border-radius: 50px 0 0 50px;
	padding: 0.8rem 1.5rem;
	border: 2px solid #ddd;
	border-right: none;
	transition: all 0.3s;
	font-size: 1.1rem;
	flex-grow: 1;
}

.search-input:focus {
	border-color: var(--primary-color);
	box-shadow: none;
}

.search-btn {
	border-radius: 0 50px 50px 0;
	padding: 0.8rem 1.5rem;
	font-weight: 600;
	transition: all 0.3s;
	white-space: nowrap;
}

.search-btn:hover {
	transform: none;
	box-shadow: none;
	background-color: #3688b8;
}

/* 演示数据样式 - 简化版 */
.demo-sites {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 1rem;
}

.demo-site-item {
	padding: 0.5rem 1rem;
	border-radius: 20px;
	cursor: pointer;
	transition: all 0.3s;
	border: 1px solid #ddd;
	background-color: white;
	font-size: 0.9rem;
}

.demo-site-item:hover {
	background-color: var(--primary-light);
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/* 结果区域样式 */
.results-section {
	display: none; /* 初始隐藏 */
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.score-badge {
	font-size: 1.1rem;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-weight: 600;
}

.score-high {
	background-color: #d4edda;
	color: #155724;
}

.score-medium {
	background-color: #fff3cd;
	color: #856404;
}

.score-low {
	background-color: #f8d7da;
	color: #721c24;
}

.config-table {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.config-table th {
	background-color: var(--primary-light);
	color: var(--primary-color);
	font-weight: 600;
	padding: 1rem;
}

.config-table td {
	padding: 1rem;
	vertical-align: top;
}

.config-label {
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 0.5rem;
}

.config-value {
	background-color: #f8f9fa;
	padding: 0.8rem;
	border-radius: 5px;
	margin-bottom: 0.5rem;
	border-left: 3px solid #ddd;
}

.config-value.original {
	border-left-color: #6c757d;
}

.config-value.suggested {
	border-left-color: var(--primary-color);
}

.improvement {
	color: #28a745;
	font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
	.search-section {
		padding: 1.5rem;
	}
	
	.demo-sites {
		flex-direction: column;
		align-items: center;
	}
	
	.demo-site-item {
		width: 100%;
		text-align: center;
	}
	
	.config-table {
		font-size: 0.9rem;
	}
}

/************************************************************
*	blog.html                                        		*
************************************************************/
/* 英雄区样式 */
.hero-section {
	position: relative;
	color: white;
	padding: 5rem 0;
	margin-bottom: 3rem;
	overflow: hidden;
}

.hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
	z-index: -1;
}

.hero-content {
	padding-top: 5rem;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.hero-badge {
	background-color: var(--primary-color);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-excerpt {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.6;
	opacity: 0.9;
}

.hero-meta {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	margin-bottom: 2rem;
	font-size: 0.95rem;
}

.hero-meta span {
	display: flex;
	align-items: center;
}

.hero-meta i {
	margin-right: 0.5rem;
}

.hero-btn {
	padding: 0.8rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 50px;
	transition: all 0.3s;
}

.hero-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 主内容区样式 */
.blog-main-content {
	padding: 0 0 3rem 0;
}

.blog-section-title {
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.blog-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 3px;
	background-color: var(--primary-color);
}

/* 博客文章列表样式 */
.blog-list {
	margin-bottom: 3rem;
}

.blog-card {
	border: none;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s;
	margin-bottom: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	height: 200px; /* 固定卡片高度 */
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-img-container {
	height: 100%; /* 图片容器高度与卡片一致 */
	overflow: hidden;
}

.blog-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.blog-card:hover .blog-img {
	transform: scale(1.05);
}

.blog-body {
	padding: 1.0rem;
	/*display: flex;
	flex-direction: column;
	justify-content: center;*/
	height: 100%; /* 内容区域高度与卡片一致 */
}

.blog-category {
	background-color: var(--primary-light);
	color: var(--primary-color);
	padding: 0.3rem 0.8rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 500;
	display: inline-block;
	margin-bottom: 0.8rem;
}

.blog-title {
	font-weight: 600;
	margin-bottom: 0.8rem;
	font-size: 1.25rem;
}

.blog-title a {
	color: var(--dark-color);
	text-decoration: none;
	transition: color 0.3s;
}

.blog-title a:hover {
	color: var(--primary-color);
}

.blog-meta {
	display: flex;
	align-items: center;
	color: #666;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.blog-meta span {
	margin-right: 1rem;
	display: flex;
	align-items: center;
}

.blog-meta i {
	margin-right: 0.3rem;
}

.blog-excerpt {
	color: #666;
	line-height: 1.6;
}

/* 侧边栏样式 */
.sidebar {
	padding-left: 2rem;
}

.sidebar-widget {
	background-color: white;
	border-radius: 10px;
	padding: 1.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
	font-weight: 600;
	color: var(--dark-color);
	margin-bottom: 1.2rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--primary-color);
}

.category-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.category-item {
	padding: 0.7rem 0;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s;
	cursor: pointer;
}

.category-item:last-child {
	border-bottom: none;
}

.category-item:hover {
	color: var(--primary-color);
}

.category-item.active {
	color: var(--primary-color);
	font-weight: 500;
}

.category-count {
	background-color: var(--primary-light);
	color: var(--primary-color);
	padding: 0.2rem 0.6rem;
	border-radius: 10px;
	font-size: 0.8rem;
}

.popular-post {
	display: flex;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #eee;
}

.popular-post:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.popular-img {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: 5px;
	margin-right: 1rem;
}

.popular-content {
	flex: 1;
}

.popular-title {
	font-weight: 500;
	font-size: 0.95rem;
	margin-bottom: 0.3rem;
}

.popular-title a {
	color: var(--dark-color);
	text-decoration: none;
	transition: color 0.3s;
}

.popular-title a:hover {
	color: var(--primary-color);
}

.popular-meta {
	color: #666;
	font-size: 0.8rem;
	display: flex;
	align-items: center;
}

.popular-meta i {
	margin-right: 0.3rem;
}

/* 分页样式 */
.pagination {
	justify-content: center;
	margin-top: 2rem;
}

.page-link {
	color: var(--dark-color);
	border: 1px solid #ddd;
	padding: 0.5rem 1rem;
}

.page-link:hover {
	color: var(--primary-color);
	background-color: var(--primary-light);
	border-color: var(--primary-color);
}

.page-item.active .page-link {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

/* 响应式调整 */
@media (max-width: 768px) {
	.hero-title {
		font-size: 2rem;
	}
	
	.hero-meta {
		flex-direction: column;
		gap: 1rem;
	}
	
	.sidebar {
		padding-left: 0;
		margin-top: 3rem;
	}
	
	.blog-img-container {
		height: 180px;
	}
}

/************************************************************
*	pricing.html                                        		*
************************************************************/
/* 价格卡片样式 */
.pricing-section {
	margin-bottom: 3rem;
}

.pricing-card {
	border: none;
	border-radius: 15px;
	transition: all 0.3s;
	height: auto;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
	border: 2px solid var(--primary-color);
	transform: scale(1.05);
}

.pricing-card.popular:hover {
	transform: scale(1.05) translateY(-10px);
}

.popular-badge {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--primary-color);
	color: white;
	padding: 0.5rem 1.5rem;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 0 0 0 15px;
}

.pricing-header {
	background: linear-gradient(135deg, var(--primary-light), #f0f8ff);
	padding: 2rem 1.5rem;
	text-align: center;
	border-bottom: 1px solid #eee;
}

.pricing-title {
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.pricing-price {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.pricing-period {
	color: #666;
	font-size: 0.9rem;
}

.pricing-body {
	padding: 2rem 1.5rem;
}

.pricing-features {
	list-style: none;
	padding: 0;
	margin: 0 0 2rem 0;
}

.pricing-features li {
	padding: 0.7rem 0;
	border-bottom: 1px solid #f0f0f0;
	display: flex;
	align-items: center;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features i {
	color: var(--primary-color);
	margin-right: 0.8rem;
	font-size: 1.1rem;
}

.pricing-btn {
	width: 100%;
	padding: 0.8rem;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s;
}

.pricing-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* FAQ区域样式 */
.faq-section {
	background-color: var(--primary-light);
	border-radius: 15px;
	padding: 3rem;
	margin-top: 4rem;
}

.faq-title {
	font-weight: 700;
	color: var(--dark-color);
	margin-bottom: 2rem;
	text-align: center;
}

.accordion-item {
	border: none;
	border-radius: 10px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.accordion-button {
	background-color: white;
	color: var(--dark-color);
	font-weight: 600;
	padding: 1.2rem 1.5rem;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
	background-color: white;
	color: var(--primary-color);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
	box-shadow: 0 0 0 0.25rem rgba(66, 161, 214, 0.25);
	border-color: var(--primary-color);
}

/************************************************************
*	404.html                                        		*
************************************************************/
.error-container {
	text-align: center;
	max-width: 1200px;
	margin-top: 50px;
	padding: 40px;
	background: #fff;
	border-radius: 12px;
	/*box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);*/
}

.error-image {
	max-width: 100%;
	height: auto;
	margin-bottom: 30px;
}

.error-title {
	font-size: 28px;
	color: #333;
	margin-bottom: 15px;
}

.error-message {
	font-size: 18px;
	color: #666;
	margin-bottom: 30px;
	line-height: 1.5;
}

.home-button {
	display: inline-block;
	background-color: #1a73e8;
	color: white;
	padding: 12px 30px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.home-button:hover {
	background-color: #0d62c9;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 */
@media (max-width: 768px) {
	.error-container {
		padding: 30px 20px;
	}
	
	.error-title {
		font-size: 24px;
	}
	
	.error-message {
		font-size: 16px;
	}
}