.sto-page {
	max-width: 1400px;
	margin: 0 auto;
	padding: 40px 20px;
	background-color: #fff;
}

.sto-header {
	text-align: center;
	margin-bottom: 60px;
	padding: 50px 20px;
	background: linear-gradient(135deg, #0F9181 0%, #15b5a3 50%, #0d7567 100%);
	border-radius: 20px;
	color: #fff;
	box-shadow: 0 10px 40px rgba(15, 145, 129, 0.3);
}

.sto-title {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.sto-subtitle {
	font-size: 20px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
}

.sto-intro {
	margin-bottom: 60px;
}

.sto-intro-card {
	display: flex;
	gap: 30px;
	align-items: center;
	padding: 40px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
	border-radius: 15px;
	border: 2px solid #0F9181;
	box-shadow: 0 8px 30px rgba(15, 145, 129, 0.15);
}

.sto-intro-icon {
	flex-shrink: 0;
	width: 90px;
	height: 90px;
	color: #0F9181;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 145, 129, 0.1);
	border-radius: 12px;
}

.sto-intro-content {
	flex: 1;
}

.sto-intro-title {
	font-size: 28px;
	font-weight: 700;
	color: #333;
	margin: 0 0 15px 0;
}

.sto-intro-text {
	font-size: 18px;
	line-height: 1.8;
	color: #666;
	margin: 0;
}

.sto-intro-text strong {
	color: #0F9181;
	font-weight: 700;
}

.sto-section {
	margin-bottom: 60px;
}

.sto-section-alt {
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	padding: 50px 30px;
	border-radius: 20px;
	margin-left: -30px;
	margin-right: -30px;
}

.sto-section-header {
	margin-bottom: 40px;
	text-align: center;
}

.sto-section-title {
	font-size: 36px;
	font-weight: 700;
	color: #333;
	margin: 0;
	position: relative;
	padding-bottom: 20px;
}

.sto-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #0F9181, transparent);
	border-radius: 2px;
}

.sto-benefits-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.sto-benefit-card {
	padding: 30px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
	border-radius: 15px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	text-align: center;
}

.sto-benefit-card:hover {
	border-color: #0F9181;
	box-shadow: 0 10px 30px rgba(15, 145, 129, 0.15);
	transform: translateY(-5px);
}

.sto-benefit-icon {
	width: 80px;
	height: 80px;
	color: #0F9181;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 145, 129, 0.1);
	border-radius: 12px;
}

.sto-benefit-title {
	font-size: 22px;
	font-weight: 700;
	color: #333;
	margin: 0 0 15px 0;
}

.sto-benefit-text {
	font-size: 16px;
	line-height: 1.7;
	color: #666;
	margin: 0;
}

.sto-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.sto-service-category {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	border: 2px solid #e8e8e8;
	transition: all 0.3s ease;
}

.sto-service-category:hover {
	border-color: #0F9181;
	box-shadow: 0 10px 30px rgba(15, 145, 129, 0.15);
	transform: translateY(-5px);
}

.sto-service-category-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
}

.sto-service-category-icon {
	width: 60px;
	height: 60px;
	color: #0F9181;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 145, 129, 0.1);
	border-radius: 12px;
	flex-shrink: 0;
}

.sto-service-category-title {
	font-size: 22px;
	font-weight: 700;
	color: #333;
	margin: 0;
}

.sto-service-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.sto-service-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.service-marker {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0F9181;
	font-size: 16px;
	font-weight: 700;
	background: rgba(15, 145, 129, 0.1);
	border-radius: 50%;
}

.service-text {
	flex: 1;
	font-size: 16px;
	line-height: 1.6;
	color: #666;
}

.sto-purpose-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.sto-purpose-card {
	padding: 40px;
	background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #f0f0f0 100%);
	border-radius: 15px;
	border: 2px solid transparent;
	transition: all 0.3s ease;
}

.sto-purpose-card:hover {
	border-color: #0F9181;
	box-shadow: 0 10px 30px rgba(15, 145, 129, 0.15);
	transform: translateY(-5px);
}

.sto-purpose-icon {
	width: 90px;
	height: 90px;
	color: #0F9181;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 145, 129, 0.1);
	border-radius: 12px;
}

.sto-purpose-title {
	font-size: 26px;
	font-weight: 700;
	color: #333;
	margin: 0 0 20px 0;
	text-align: center;
}

.sto-purpose-text {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin: 0 0 25px 0;
}

.sto-purpose-list {
	margin: 0;
	padding-left: 0;
	list-style: none;
}

.sto-purpose-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.7;
	color: #666;
}

.sto-purpose-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #0F9181;
	font-weight: 700;
	font-size: 18px;
}

.sto-purpose-list li:last-child {
	margin-bottom: 0;
}

.sto-process {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.sto-process-item {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	padding: 30px;
	background: #fff;
	border-radius: 15px;
	border: 2px solid #e8e8e8;
	transition: all 0.3s ease;
}

.sto-process-item:hover {
	border-color: #0F9181;
	box-shadow: 0 10px 30px rgba(15, 145, 129, 0.15);
	transform: translateX(10px);
}

.sto-process-number {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0F9181 0%, #15b5a3 100%);
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	border-radius: 50%;
	box-shadow: 0 4px 15px rgba(15, 145, 129, 0.3);
}

.sto-process-content {
	flex: 1;
	padding-top: 5px;
}

.sto-process-title {
	font-size: 22px;
	font-weight: 700;
	color: #333;
	margin: 0 0 12px 0;
}

.sto-process-text {
	font-size: 16px;
	line-height: 1.7;
	color: #666;
	margin: 0;
}

.sto-guarantee {
	background: linear-gradient(135deg, #0F9181 0%, #15b5a3 50%, #0d7567 100%);
	padding: 50px 40px;
	border-radius: 20px;
	color: #fff;
	box-shadow: 0 10px 40px rgba(15, 145, 129, 0.3);
}

.sto-guarantee-content {
	display: flex;
	gap: 40px;
	align-items: center;
}

.sto-guarantee-icon {
	flex-shrink: 0;
	width: 100px;
	height: 100px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 12px;
}

.sto-guarantee-text {
	flex: 1;
}

.sto-guarantee-title {
	font-size: 32px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
}

.sto-guarantee-desc {
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.95);
	margin: 0;
}

@media (max-width: 1200px) {
	.sto-page {
		padding: 30px 20px;
	}
	
	.sto-section-alt {
		margin-left: -20px;
		margin-right: -20px;
		padding: 40px 20px;
	}
	
	.sto-benefits-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.sto-services {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 968px) {
	.sto-title {
		font-size: 36px;
	}
	
	.sto-subtitle {
		font-size: 18px;
	}
	
	.sto-intro-card {
		flex-direction: column;
		text-align: center;
	}
	
	.sto-benefits-grid {
		grid-template-columns: 1fr;
	}
	
	.sto-services {
		grid-template-columns: 1fr;
	}
	
	.sto-purpose-grid {
		grid-template-columns: 1fr;
	}
	
	.sto-section-title {
		font-size: 28px;
	}
	
	.sto-guarantee-content {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 768px) {
	.sto-page {
		padding: 20px 15px;
	}
	
	.sto-header {
		padding: 30px 20px;
	}
	
	.sto-title {
		font-size: 28px;
	}
	
	.sto-subtitle {
		font-size: 16px;
	}
	
	.sto-intro-card {
		padding: 25px;
	}
	
	.sto-intro-title {
		font-size: 22px;
	}
	
	.sto-section-alt {
		margin-left: -15px;
		margin-right: -15px;
		padding: 30px 15px;
	}
	
	.sto-process-item {
		flex-direction: column;
		text-align: center;
	}
	
	.sto-guarantee {
		padding: 30px 20px;
	}
	
	.sto-guarantee-title {
		font-size: 24px;
	}
}

@media (max-width: 480px) {
	.sto-title {
		font-size: 24px;
	}
	
	.sto-section-title {
		font-size: 24px;
	}
	
	.sto-benefit-title,
	.sto-service-category-title,
	.sto-purpose-title {
		font-size: 20px;
	}
	
	.sto-benefit-card,
	.sto-service-category,
	.sto-purpose-card {
		padding: 20px;
	}
}
