.page-main {
	min-height: calc(100vh - 200px);
	padding: 30px 0 60px;
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.page-container {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}

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

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.5;
}

.page-header-content {
	position: relative;
	z-index: 1;
}

.page-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 12px;
	letter-spacing: -1px;
}

.page-subtitle {
	font-size: 18px;
	opacity: 0.85;
	font-weight: 400;
}

.page-section {
	margin-bottom: 50px;
}

.page-section h2 {
	font-size: 28px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 25px;
	padding-bottom: 12px;
	border-bottom: 3px solid #6C8EEE;
	display: inline-block;
}

.page-section p {
	font-size: 16px;
	line-height: 1.9;
	color: #444;
	margin-bottom: 18px;
}

/* About Page Styles */
.intro-content {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 50px;
	align-items: center;
}

.intro-text h2 {
	margin-top: 0;
}

.intro-stats {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.stat-item {
	background: linear-gradient(135deg, #6C8EEE 0%, #a855f7 100%);
	padding: 25px 35px;
	border-radius: 16px;
	text-align: center;
	color: #fff;
	box-shadow: 0 10px 30px rgba(108, 142, 238, 0.3);
}

.stat-number {
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
}

.stat-label {
	font-size: 14px;
	opacity: 0.9;
	margin-top: 5px;
}

.mission-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 30px;
}

.mission-card {
	background: #fff;
	padding: 35px;
	border-radius: 20px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
}

.mission-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.mission-card h3 {
	font-size: 22px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 15px;
}

.mission-card p {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin: 0;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin-top: 30px;
}

.value-item {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
}

.value-number {
	position: absolute;
	top: 15px;
	right: 20px;
	font-size: 48px;
	font-weight: 800;
	color: rgba(108, 142, 238, 0.1);
	line-height: 1;
}

.value-item h3 {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 12px;
}

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

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-top: 30px;
}

.feature-card {
	background: #fff;
	padding: 30px 25px;
	border-radius: 16px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #f0f0f0;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(108, 142, 238, 0.15);
}

.feature-icon {
	font-size: 42px;
	margin-bottom: 18px;
}

.feature-card h3 {
	font-size: 18px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 12px;
}

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

.trust-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 30px;
}

.trust-badges {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.trust-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 25px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.badge-icon {
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, #6C8EEE 0%, #a855f7 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
}

.badge-text {
	font-weight: 500;
	color: #333;
}

.cta-section {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	padding: 50px;
	border-radius: 24px;
	text-align: center;
}

.cta-content h2 {
	color: #fff;
	border: none;
	margin-bottom: 15px;
}

.cta-content p {
	color: rgba(255, 255, 255, 0.8);
	max-width: 500px;
	margin: 0 auto 30px;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.cta-btn {
	padding: 16px 40px;
	border-radius: 30px;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cta-btn.primary {
	background: linear-gradient(135deg, #6C8EEE 0%, #a855f7 100%);
	color: #fff;
}

.cta-btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(108, 142, 238, 0.4);
}

.cta-btn.secondary {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

/* Contact Page Styles */
.contact-intro {
	text-align: center;
	font-size: 18px;
	color: #555;
	max-width: 700px;
	margin: 0 auto;
	line-height: 1.8;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin-top: 30px;
}

.contact-card {
	background: #fff;
	padding: 35px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
	transition: transform 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-3px);
}

.contact-icon {
	font-size: 44px;
	margin-bottom: 18px;
}

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

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

.contact-link {
	display: inline-block;
	color: #6C8EEE;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	padding: 8px 20px;
	background: rgba(108, 142, 238, 0.1);
	border-radius: 20px;
	transition: all 0.3s ease;
	margin-bottom: 10px;
}

.contact-link:hover {
	background: #6C8EEE;
	color: #fff;
}

.contact-note {
	font-size: 12px;
	color: #999;
	display: block;
}

.form-intro {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}

.contact-form {
	background: #fff;
	padding: 45px;
	border-radius: 24px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
	border: 1px solid #f0f0f0;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

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

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

.required {
	color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 16px 18px;
	border: 2px solid #e8e8e8;
	border-radius: 12px;
	font-size: 15px;
	transition: all 0.3s ease;
	font-family: inherit;
	background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #6C8EEE;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(108, 142, 238, 0.12);
}

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

.form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 25px;
}

.form-checkbox input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-top: 2px;
	cursor: pointer;
}

.form-checkbox label {
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}

.form-checkbox label a {
	color: #6C8EEE;
	text-decoration: none;
}

.form-checkbox label a:hover {
	text-decoration: underline;
}

.submit-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 45px;
	background: linear-gradient(135deg, #6C8EEE 0%, #a855f7 100%);
	color: #fff;
	border: none;
	border-radius: 30px;
	font-size: 17px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 35px rgba(108, 142, 238, 0.4);
}

.faq-intro {
	text-align: center;
	color: #666;
	margin-bottom: 30px;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border-radius: 14px;
	margin-bottom: 15px;
	overflow: hidden;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
	border: 1px solid #f0f0f0;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 25px;
	cursor: pointer;
	font-weight: 600;
	color: #333;
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question svg {
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 20px;
	color: #6C8EEE;
}

.faq-item.active .faq-question svg {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
}

.faq-answer p {
	padding: 0 25px 22px;
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	margin: 0;
}

.support-card {
	display: flex;
	align-items: center;
	gap: 25px;
	background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
	padding: 35px;
	border-radius: 20px;
	border: 1px solid #e0e8ff;
}

.support-icon {
	font-size: 48px;
	flex-shrink: 0;
}

.support-content h3 {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 10px;
}

.support-content p {
	font-size: 15px;
	color: #555;
	margin: 0;
	line-height: 1.7;
}

/* Legal Pages Styles */
.legal-page .page-header {
	padding: 50px 30px;
}

.legal-meta {
	display: flex;
	gap: 30px;
	padding: 20px 30px;
	background: #f8f9fa;
	border-radius: 12px;
	margin-bottom: 40px;
}

.legal-meta p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

.legal-toc {
	background: #fff;
	padding: 30px;
	border-radius: 16px;
	margin-bottom: 40px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid #f0f0f0;
}

.legal-toc h2 {
	font-size: 20px;
	font-weight: 600;
	color: #1a1a2e;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #6C8EEE;
}

.legal-toc ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.legal-toc li a {
	display: block;
	padding: 10px 15px;
	color: #555;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	font-size: 14px;
}

.legal-toc li a:hover {
	background: rgba(108, 142, 238, 0.1);
	color: #6C8EEE;
}

.legal-content {
	background: #fff;
	padding: 45px;
	border-radius: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	border: 1px solid #f0f0f0;
}

.legal-section {
	margin-bottom: 45px;
	padding-bottom: 45px;
	border-bottom: 1px solid #eee;
}

.legal-section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.legal-section h2 {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 25px;
}

.legal-section h3 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 25px 0 15px;
}

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

.legal-section ul {
	list-style: none;
	padding: 0;
	margin: 15px 0;
}

.legal-section li {
	padding: 10px 0 10px 25px;
	position: relative;
	font-size: 15px;
	color: #555;
	line-height: 1.7;
}

.legal-section li::before {
	content: '•';
	position: absolute;
	left: 8px;
	color: #6C8EEE;
	font-weight: bold;
}

.contact-info {
	background: #f8f9fa;
	padding: 25px;
	border-radius: 12px;
	margin-top: 20px;
}

.contact-info p {
	margin: 8px 0;
	font-size: 15px;
}

/* Responsive */
@media (max-width: 960px) {
	.intro-content {
		grid-template-columns: 1fr;
	}
	
	.intro-stats {
		flex-direction: row;
		justify-content: center;
	}
	
	.mission-grid,
	.values-grid,
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.legal-toc ul {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.page-header {
		padding: 40px 20px;
	}
	
	.page-title {
		font-size: 32px;
	}
	
	.page-subtitle {
		font-size: 16px;
	}
	
	.mission-grid,
	.values-grid,
	.features-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}
	
	.contact-form {
		padding: 30px 20px;
	}
	
	.legal-content {
		padding: 30px 20px;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.trust-badges {
		gap: 15px;
	}
	
	.trust-badge {
		padding: 12px 20px;
	}
	
	.intro-stats {
		flex-direction: column;
	}
	
	.support-card {
		flex-direction: column;
		text-align: center;
	}
}
