.page-main {
	max-width: 1400px;
	margin: 0 auto;
	padding: 20px 5%;
}

.page-hero {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	padding: 80px 5%;
	text-align: center;
	color: #fff;
	border-radius: 0 0 30px 30px;
	margin-bottom: 60px;
}

.page-hero h1 {
	font-size: 48px;
	margin-bottom: 15px;
	font-weight: 700;
}

.page-hero p {
	font-size: 20px;
	color: #a4a7ab;
	max-width: 600px;
	margin: 0 auto;
}

.about-section {
	padding: 40px 0;
}

.about-intro {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	align-items: center;
}

.intro-content {
	flex: 1;
	min-width: 300px;
}

.intro-content h2 {
	font-size: 32px;
	color: #1a1a2e;
	margin-bottom: 20px;
}

.intro-content .lead {
	font-size: 18px;
	color: #333;
	line-height: 1.8;
	margin-bottom: 15px;
}

.intro-content p {
	color: #555;
	line-height: 1.8;
	font-size: 16px;
}

.intro-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	min-width: 300px;
}

.stat-item {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	padding: 25px;
	border-radius: 15px;
	text-align: center;
	color: #fff;
}

.stat-number {
	display: block;
	font-size: 36px;
	font-weight: 700;
	color: #5CF3AF;
}

.stat-label {
	font-size: 14px;
	color: #a4a7ab;
}

.values-section {
	padding: 60px 0;
}

.values-section h2 {
	text-align: center;
	font-size: 32px;
	color: #1a1a2e;
	margin-bottom: 40px;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.value-card {
	background: #fff;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.value-icon {
	font-size: 48px;
	margin-bottom: 15px;
}

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

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

.trust-section {
	padding: 60px 0;
	background: #f8f9fa;
	margin: 40px -5%;
	padding-left: 5%;
	padding-right: 5%;
}

.trust-section h2 {
	text-align: center;
	font-size: 32px;
	color: #1a1a2e;
	margin-bottom: 40px;
}

.trust-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: center;
}

.trust-info {
	flex: 1;
	min-width: 300px;
}

.trust-item {
	margin-bottom: 25px;
}

.trust-item h3 {
	font-size: 18px;
	color: #1a1a2e;
	margin-bottom: 8px;
}

.trust-item p {
	color: #666;
	line-height: 1.6;
}

.certifications {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.cert-badge {
	background: #fff;
	padding: 20px 25px;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 3px 10px rgba(0,0,0,0.08);
	min-width: 120px;
}

.cert-badge span {
	display: block;
	font-size: 28px;
	margin-bottom: 8px;
}

.cert-badge strong {
	font-size: 13px;
	color: #1a1a2e;
}

.timeline-section {
	padding: 60px 0;
}

.timeline-section h2 {
	text-align: center;
	font-size: 32px;
	color: #1a1a2e;
	margin-bottom: 50px;
}

.timeline {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 3px;
	height: 100%;
	background: linear-gradient(to bottom, #5CF3AF, #639fd3);
}

.timeline-item {
	display: flex;
	justify-content: flex-end;
	padding-right: 50%;
	position: relative;
	margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
	justify-content: flex-start;
	padding-right: 0;
	padding-left: 50%;
}

.timeline-dot {
	position: absolute;
	right: calc(50% - 8px);
	width: 16px;
	height: 16px;
	background: #5CF3AF;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 0 0 3px #5CF3AF;
}

.timeline-item:nth-child(even) .timeline-dot {
	right: auto;
	left: calc(50% - 8px);
}

.timeline-content {
	background: #fff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	max-width: 350px;
	margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-content {
	margin-right: 0;
	margin-left: 30px;
}

.timeline-year {
	display: inline-block;
	background: #5CF3AF;
	color: #1a1a2e;
	padding: 5px 15px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 10px;
}

.timeline-content h3 {
	font-size: 18px;
	color: #1a1a2e;
	margin-bottom: 8px;
}

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

.cta-section {
	text-align: center;
	padding: 80px 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	margin: 60px -5% 0;
	padding-left: 5%;
	padding-right: 5%;
	border-radius: 30px 30px 0 0;
}

.cta-section h2 {
	font-size: 36px;
	color: #fff;
	margin-bottom: 15px;
}

.cta-section p {
	color: #a4a7ab;
	font-size: 18px;
	margin-bottom: 30px;
}

.cta-btn {
	display: inline-block;
	background: #5CF3AF;
	color: #1a1a2e;
	padding: 15px 40px;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-btn:hover {
	background: #fff;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(92, 243, 175, 0.3);
}

.contact-section {
	padding: 40px 0;
}

.contact-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-info h2 {
	font-size: 28px;
	color: #1a1a2e;
	margin-bottom: 15px;
}

.info-desc {
	color: #666;
	line-height: 1.7;
	margin-bottom: 30px;
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px;
}

.contact-card {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 3px 15px rgba(0,0,0,0.08);
	display: flex;
	align-items: center;
	gap: 15px;
	transition: transform 0.3s ease;
}

.contact-card:hover {
	transform: translateX(5px);
}

.card-icon {
	font-size: 32px;
}

.contact-card h3 {
	font-size: 16px;
	color: #1a1a2e;
	margin-bottom: 3px;
}

.contact-card p {
	font-size: 13px;
	color: #888;
	margin-bottom: 5px;
}

.contact-card a {
	color: #5CF3AF;
	font-size: 14px;
	text-decoration: none;
	font-weight: 500;
}

.trust-badges h3 {
	font-size: 20px;
	color: #1a1a2e;
	margin-bottom: 20px;
}

.badges-grid {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.badge {
	display: flex;
	align-items: center;
	gap: 15px;
	background: #f8f9fa;
	padding: 15px;
	border-radius: 10px;
}

.badge-icon {
	font-size: 28px;
}

.badge-text strong {
	display: block;
	color: #1a1a2e;
	font-size: 15px;
}

.badge-text p {
	color: #666;
	font-size: 13px;
	margin-top: 3px;
}

.contact-form-wrapper {
	flex: 1;
	min-width: 350px;
	background: #fff;
	padding: 35px;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form-wrapper h2 {
	font-size: 24px;
	color: #1a1a2e;
	margin-bottom: 25px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
	font-size: 15px;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #5CF3AF;
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

.submit-btn {
	width: 100%;
	background: linear-gradient(135deg, #5CF3AF 0%, #4de0a0 100%);
	color: #1a1a2e;
	border: none;
	padding: 16px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(92, 243, 175, 0.4);
}

.submit-btn svg {
	width: 20px;
	height: 20px;
}

.faq-section {
	padding: 60px 0;
	background: #f8f9fa;
	margin: 40px -5%;
	padding-left: 5%;
	padding-right: 5%;
}

.faq-section h2 {
	text-align: center;
	font-size: 28px;
	color: #1a1a2e;
	margin-bottom: 40px;
}

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

.faq-item {
	background: #fff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

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

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

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

.legal-page {
	padding: 60px 0;
	max-width: 900px;
	margin: 0 auto;
}

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

.legal-header h1 {
	font-size: 36px;
	margin-bottom: 10px;
}

.legal-header .update-date {
	color: #a4a7ab;
	font-size: 14px;
}

.legal-content {
	background: #fff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.legal-toc {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 15px;
	margin-bottom: 40px;
}

.legal-toc h2 {
	font-size: 18px;
	color: #1a1a2e;
	margin-bottom: 15px;
}

.legal-toc ol {
	margin: 0;
	padding-left: 20px;
}

.legal-toc li {
	margin-bottom: 8px;
}

.legal-toc a {
	color: #148351;
	text-decoration: none;
	font-size: 15px;
}

.legal-toc a:hover {
	text-decoration: underline;
}

.legal-section {
	margin-bottom: 35px;
}

.legal-section h2 {
	font-size: 22px;
	color: #1a1a2e;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #5CF3AF;
	display: inline-block;
}

.legal-section h3 {
	font-size: 18px;
	color: #333;
	margin: 20px 0 10px;
}

.legal-section p {
	color: #555;
	line-height: 1.8;
	margin-bottom: 12px;
	font-size: 15px;
}

.legal-section ul,
.legal-section ol {
	margin: 15px 0;
	padding-left: 25px;
}

.legal-section li {
	color: #555;
	line-height: 1.8;
	margin-bottom: 8px;
	font-size: 15px;
}

.legal-highlight {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	border-left: 4px solid #5CF3AF;
	padding: 20px;
	border-radius: 0 10px 10px 0;
	margin: 20px 0;
}

.legal-highlight p {
	margin: 0;
	color: #166534;
}

.legal-contact {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 15px;
	margin-top: 40px;
}

.legal-contact h2 {
	font-size: 20px;
	color: #1a1a2e;
	margin-bottom: 15px;
}

.legal-contact p {
	color: #555;
	line-height: 1.7;
}

.legal-contact a {
	color: #5CF3AF;
	text-decoration: none;
	font-weight: 500;
}

@media (max-width: 768px) {
	.page-hero {
		padding: 50px 5%;
	}

	.page-hero h1 {
		font-size: 32px;
	}

	.page-hero p {
		font-size: 16px;
	}

	.intro-stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.timeline::before {
		left: 20px;
	}

	.timeline-item,
	.timeline-item:nth-child(even) {
		padding-left: 50px;
		padding-right: 0;
		justify-content: flex-start;
	}

	.timeline-dot,
	.timeline-item:nth-child(even) .timeline-dot {
		left: 12px;
		right: auto;
	}

	.timeline-content,
	.timeline-item:nth-child(even) .timeline-content {
		margin-left: 0;
		margin-right: 0;
		max-width: 100%;
	}

	.contact-form-wrapper {
		padding: 25px;
	}

	.legal-content {
		padding: 25px;
	}

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