* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: #0f1115;
	color: #ededed;
	line-height: 1.6;
	overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #ededed;
}

h1 {
	font-size: 3rem;
	line-height: 1.2;
}

h2 {
	font-size: 2.5rem;
	line-height: 1.3;
}

h3 {
	font-size: 2rem;
	line-height: 1.4;
}

h4 {
	font-size: 1.5rem;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

a {
	color: #6c63ff;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #00c896;
	text-shadow: 0 0 10px rgba(0, 200, 150, 0.5);
}

/* Container */
.sm-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.sm-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header Styles */
.sm-header {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 95%;
	max-width: 1200px;
	background: rgba(26, 28, 32, 0.95);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(108, 99, 255, 0.2);
	border-radius: 15px;
	padding: 15px 30px;
	z-index: 1000;
	transition: all 0.3s ease;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sm-header:hover {
	border-color: rgba(108, 99, 255, 0.4);
	box-shadow: 0 12px 40px rgba(108, 99, 255, 0.1);
}

.sm-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.sm-logo {
	font-family: 'Montserrat', sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #6c63ff, #00c896);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
}

.sm-nav {
	display: flex;
	gap: 30px;
}

.sm-nav-link {
	color: #ededed;
	font-weight: 500;
	padding: 8px 16px;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.sm-nav-link:hover {
	background: rgba(108, 99, 255, 0.1);
	color: #6c63ff;
	transform: translateY(-2px);
}

.sm-nav-link.active {
	background: rgba(108, 99, 255, 0.2);
	color: #6c63ff;
}

/* Mobile Menu */
.sm-mobile-toggle {
	display: none;
	background: none;
	border: none;
	color: #ededed;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 5px;
}

.sm-mobile-nav {
	display: none;
	position: fixed;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100vh;
	background: rgba(15, 17, 21, 0.98);
	z-index: 999;
	transition: left 0.3s ease;
	padding: 120px 30px 30px;
}

.sm-mobile-nav.active {
	left: 0;
}

.sm-mobile-nav.active .sm-nav {
	flex-direction: column;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.sm-mobile-nav .sm-nav-link {
	font-size: 1.2rem;
	padding: 15px 20px;
	border-radius: 10px;
}

/* Buttons */
.sm-btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: 50px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: 1rem;
	position: relative;
	overflow: hidden;
}

.sm-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	transition: left 0.5s ease;
}

.sm-btn:hover::before {
	left: 100%;
}

.sm-btn-primary {
	background: linear-gradient(135deg, #6c63ff, #8b7eff);
	color: white;
	box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.sm-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
	color: white;
}

.sm-btn-secondary {
	background: linear-gradient(135deg, #00c896, #00e0a8);
	color: white;
	box-shadow: 0 4px 15px rgba(0, 200, 150, 0.3);
}

.sm-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 200, 150, 0.4);
	color: white;
}

.sm-btn-outline {
	background: transparent;
	color: #6c63ff;
	border: 2px solid #6c63ff;
}

.sm-btn-outline:hover {
	background: #6c63ff;
	color: white;
	transform: translateY(-2px);
}

/* Hero Section */
.sm-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	background: linear-gradient(
		135deg,
		rgba(15, 17, 21, 0.9),
		rgba(26, 28, 32, 0.9)
	);
	overflow: hidden;
}

.sm-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/sm-hero.webp') center/cover;
	background-attachment: fixed;
	opacity: 0.3;
}

.sm-hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
	animation: fadeInUp 1s ease-out;
}

.sm-hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #ededed, #00c896);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.sm-hero-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	color: #b8b8b8;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.sm-hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

/* Section Styles */
.sm-section {
	padding: 100px 0;
	position: relative;
}

.sm-section-alt {
	background: linear-gradient(
		135deg,
		rgba(26, 28, 32, 0.5),
		rgba(30, 32, 38, 0.5)
	);
}

.sm-section-header {
	text-align: center;
	margin-bottom: 60px;
}

.sm-section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, #6c63ff, #00c896);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.sm-section-subtitle {
	font-size: 1.2rem;
	color: #b8b8b8;
	max-width: 600px;
	margin: 0 auto;
}

/* Cards */
.sm-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.sm-card {
	background: rgba(26, 28, 32, 0.8);
	border-radius: 20px;
	padding: 30px;
	border: 1px solid rgba(108, 99, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.sm-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #6c63ff, #00c896);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.sm-card:hover::before {
	transform: scaleX(1);
}

.sm-card:hover {
	transform: translateY(-10px);
	border-color: rgba(108, 99, 255, 0.3);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sm-card-icon {
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
	color: #ffb84d;
	font-size: 2.5rem;
}

.sm-card h3 {
	color: #6c63ff;
	margin-bottom: 15px;
	word-wrap: break-word;
}

.sm-card p {
	color: #b8b8b8;
	line-height: 1.6;
}

/* Form Styles */
.sm-form {
	background: rgba(26, 28, 32, 0.8);
	border-radius: 20px;
	padding: 40px;
	border: 1px solid rgba(108, 99, 255, 0.1);
	backdrop-filter: blur(10px);
}

.sm-form-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-bottom: 20px;
}

.sm-form-group {
	margin-bottom: 20px;
}

.sm-form-label {
	display: block;
	margin-bottom: 8px;
	color: #ededed;
	font-weight: 500;
}

.sm-form-input,
.sm-form-textarea,
.sm-form-select {
	width: 100%;
	padding: 15px;
	border: 2px solid rgba(108, 99, 255, 0.2);
	border-radius: 10px;
	background: rgba(15, 17, 21, 0.5);
	color: #ededed;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.sm-form-input:focus,
.sm-form-textarea:focus,
.sm-form-select:focus {
	outline: none;
	border-color: #6c63ff;
	box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.sm-form-textarea {
	height: 120px;
	resize: vertical;
}

.sm-form-error {
	color: #ff4757;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.sm-form-success {
	background: rgba(0, 200, 150, 0.1);
	border: 1px solid rgba(0, 200, 150, 0.3);
	color: #00c896;
	padding: 15px;
	border-radius: 10px;
	margin-bottom: 20px;
	display: none;
}

/* Map Section */
.sm-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.sm-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.sm-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.sm-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}
/* Footer */
.sm-footer {
	background: #1c1e24;
	padding: 60px 0 30px;
	border-top: 1px solid rgba(108, 99, 255, 0.1);
}

.sm-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.sm-footer-section h4 {
	color: #6c63ff;
	margin-bottom: 20px;
	font-size: 1.2rem;
}

.sm-footer-links {
	list-style: none;
}

.sm-footer-links li {
	margin-bottom: 10px;
}

.sm-footer-links a {
	color: #b8b8b8;
	transition: color 0.3s ease;
}

.sm-footer-links a:hover {
	color: #00c896;
}

.sm-footer-contact {
	color: #b8b8b8;
	line-height: 1.8;
}

.sm-footer-contact strong {
	color: #ededed;
}

.sm-footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid rgba(108, 99, 255, 0.1);
	color: #b8b8b8;
}

/* Cookie Popup */
.sm-cookie-popup {
	position: fixed;
	display: none;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 400px;
	background: rgba(26, 28, 32, 0.98);
	border: 1px solid rgba(108, 99, 255, 0.2);
	border-radius: 15px;
	padding: 20px;
	z-index: 1001;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(20px);
}

.sm-cookie-popup.show {
	transform: translateY(0);
	opacity: 1;
	display: block;
}

.sm-cookie-popup p {
	margin-bottom: 15px;
	font-size: 0.9rem;
	color: #b8b8b8;
}

.sm-cookie-buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.sm-cookie-btn {
	padding: 8px 16px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.sm-cookie-accept {
	background: #6c63ff;
	color: white;
}

.sm-cookie-accept:hover {
	background: #5a52e3;
}

.sm-cookie-decline {
	background: transparent;
	color: #b8b8b8;
	border: 1px solid rgba(184, 184, 184, 0.3);
}

.sm-cookie-decline:hover {
	background: rgba(184, 184, 184, 0.1);
}

/* Content Sections */
.sm-content-section {
	margin-bottom: 60px;
}

.sm-content-section h2 {
	color: #6c63ff;
	margin-bottom: 20px;
	border-bottom: 2px solid rgba(108, 99, 255, 0.2);
	padding-bottom: 10px;
}

.sm-content-section h3 {
	color: #00c896;
	margin-top: 30px;
	margin-bottom: 15px;
}

.sm-content-section p {
	color: #b8b8b8;
	margin-bottom: 15px;
}

.sm-content-section ul {
	list-style: none;
	padding-left: 0;
}

.sm-content-section li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	color: #b8b8b8;
}

.sm-content-section li::before {
	content: '→';
	position: absolute;
	left: 0;
	color: #ffb84d;
	font-weight: bold;
}

/* Tabs */
.sm-tabs {
	margin-bottom: 40px;
}

.sm-tab-nav {
	display: flex;
	gap: 10px;
	margin-bottom: 30px;
	border-bottom: 2px solid rgba(26, 28, 32, 0.5);
	flex-wrap: wrap;
}

.sm-tab-btn {
	padding: 15px 25px;
	background: transparent;
	border: none;
	color: #b8b8b8;
	cursor: pointer;
	border-radius: 10px 10px 0 0;
	transition: all 0.3s ease;
	font-size: 1rem;
	font-weight: 500;
}

.sm-tab-btn.active {
	background: rgba(108, 99, 255, 0.1);
	color: #6c63ff;
	border-bottom: 2px solid #6c63ff;
}

.sm-tab-btn:hover {
	background: rgba(108, 99, 255, 0.05);
	color: #6c63ff;
}

.sm-tab-content {
	display: none;
	animation: fadeIn 0.3s ease;
}

.sm-tab-content.active {
	display: block;
}

/* Accordion */
.sm-accordion {
	border: 1px solid rgba(108, 99, 255, 0.1);
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 20px;
}

.sm-accordion-header {
	background: rgba(26, 28, 32, 0.5);
	padding: 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	border-bottom: 1px solid rgba(108, 99, 255, 0.1);
}

.sm-accordion-header:hover {
	background: rgba(108, 99, 255, 0.1);
}

.sm-accordion-header h3 {
	margin: 0;
	color: #ededed;
	font-size: 1.1rem;
}

.sm-accordion-icon {
	color: #6c63ff;
	transition: transform 0.3s ease;
	font-size: 1.2rem;
}

.sm-accordion.active .sm-accordion-icon {
	transform: rotate(180deg);
}

.sm-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: rgba(15, 17, 21, 0.3);
}

.sm-accordion.active .sm-accordion-content {
	max-height: 1000px;
}

.sm-accordion-content-inner {
	padding: 20px;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.sm-animate-fade-in {
	animation: fadeIn 0.6s ease-out;
}

.sm-animate-fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

.sm-animate-slide-in-left {
	animation: slideInLeft 0.6s ease-out;
}

.sm-animate-slide-in-right {
	animation: slideInRight 0.6s ease-out;
}

/* Utility Classes */
.sm-text-center {
	text-align: center;
}

.sm-text-left {
	text-align: left;
}

.sm-text-right {
	text-align: right;
}

.sm-mb-20 {
	margin-bottom: 20px;
}

.sm-mb-40 {
	margin-bottom: 40px;
}

.sm-mt-20 {
	margin-top: 20px;
}

.sm-mt-40 {
	margin-top: 40px;
}

.sm-hidden {
	display: none;
}

.sm-visible {
	display: block;
}

/* Responsive Design */
@media (max-width: 920px) {
	.sm-nav {
		display: none;
	}

	.sm-mobile-toggle {
		display: block;
	}

	.sm-mobile-nav {
		display: block;
	}
}
@media (max-width: 768px) {
	.sm-header {
		top: 10px;
		width: 98%;
		padding: 10px 20px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.sm-hero h1 {
		font-size: 2.8rem;
	}

	.sm-hero-subtitle {
		font-size: 1.1rem;
	}

	.sm-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.sm-btn {
		width: 100%;
		max-width: 300px;
	}

	.sm-card-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.sm-form-grid {
		grid-template-columns: 1fr;
	}

	.sm-footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.sm-cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}

	.sm-container,
	.sm-container-wide {
		padding: 0 15px;
	}

	.sm-section {
		padding: 60px 0;
	}

	.sm-tab-nav {
		flex-direction: column;
	}

	.sm-tab-btn {
		border-radius: 10px;
		margin-bottom: 5px;
	}
}

@media (max-width: 480px) {
	h1 {
		font-size: 2rem;
	}

	.sm-hero h1 {
		font-size: 2.2rem;
	}

	.sm-hero-subtitle {
		font-size: 1rem;
	}

	.sm-form {
		padding: 25px;
	}

	.sm-card {
		padding: 20px;
	}

	.sm-section-title {
		font-size: 2rem;
	}

	.sm-accordion-header h3 {
		font-size: 1.1rem !important;
	}

	.sm-content-section h3,
	.sm-card h3,
	.sm-tab-content h3 {
		font-size: 1.5rem;
		word-wrap: break-word;
	}
}

.sm-legal-container {
	min-height: 100vh;
	background: linear-gradient(135deg, #0f1115 0%, #1a1c20 100%);
	padding: 120px 1rem;
	position: relative;
}

.sm-legal-container::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
			circle at 20% 50%,
			rgba(108, 99, 255, 0.1) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 80% 20%,
			rgba(0, 200, 150, 0.08) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 40% 80%,
			rgba(255, 184, 77, 0.06) 0%,
			transparent 50%
		);
	pointer-events: none;
	z-index: -1;
}

/* Content Wrapper */
.sm-legal-content {
	max-width: 900px;
	margin: 0 auto;
	background: rgba(26, 28, 32, 0.8);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(108, 99, 255, 0.1);
	position: relative;
	overflow: hidden;
}

.sm-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #6c63ff, #00c896, #ffb84d);
	opacity: 0.8;
}

/* Header Section */
.sm-legal-header {
	text-align: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid rgba(108, 99, 255, 0.2);
	position: relative;
}

.sm-legal-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #6c63ff;
	margin-bottom: 0.5rem;
	text-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
	letter-spacing: -0.5px;
}

.sm-legal-subtitle {
	font-size: 1.2rem;
	color: #00c896;
	font-weight: 500;
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

.sm-legal-date {
	font-size: 0.9rem;
	color: #ffb84d;
	background: rgba(255, 184, 77, 0.1);
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 15px;
	border: 1px solid rgba(255, 184, 77, 0.2);
	font-weight: 500;
}

/* Section Styles */
.sm-legal-section {
	margin-bottom: 2.5rem;
	background: rgba(15, 17, 21, 0.5);
	border-radius: 15px;
	padding: 2rem;
	border: 1px solid rgba(108, 99, 255, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.sm-legal-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(108, 99, 255, 0.03),
		transparent
	);
	transition: left 0.6s ease;
}

.sm-legal-section:hover::before {
	left: 100%;
}

.sm-legal-section:hover {
	border-color: rgba(108, 99, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1);
}

.sm-legal-section-title {
	font-size: 1.4rem;
	color: #6c63ff;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

.sm-legal-section-title::before {
	content: '';
	width: 4px;
	height: 100%;
	background: linear-gradient(180deg, #6c63ff, #00c896);
	margin-right: 1rem;
	border-radius: 2px;
}

/* Text Content */
.sm-legal-text {
	position: relative;
	z-index: 1;
}

.sm-legal-text p {
	margin-bottom: 1rem;

	line-height: 1.7;
	color: #ededed;
}

.sm-legal-text p:last-child {
	margin-bottom: 0;
}

/* Lists */
.sm-legal-list {
	list-style: none;
	margin: 1rem 0;
	padding-left: 0;
}

.sm-legal-list li {
	margin-bottom: 0.8rem;
	padding-left: 2rem;
	position: relative;
	line-height: 1.6;
	transition: all 0.3s ease;
}

.sm-legal-list li::before {
	content: '▶';
	position: absolute;
	left: 0;
	color: #00c896;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}

.sm-legal-list li:hover {
	color: #00c896;
	padding-left: 2.2rem;
}

.sm-legal-list li:hover::before {
	color: #ffb84d;
	transform: scale(1.2);
}

/* Contact Information */
.sm-legal-contact-info {
	background: rgba(108, 99, 255, 0.05);
	border-radius: 12px;
	padding: 1.5rem;
	border: 1px solid rgba(108, 99, 255, 0.2);
	margin: 1.5rem 0;
}

.sm-legal-contact-info h3 {
	color: #6c63ff;
	margin-bottom: 1rem;
	font-size: 1.1rem;
	font-weight: 600;
}

.sm-legal-contact-item {
	margin-bottom: 0.8rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sm-legal-contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.sm-legal-contact-item strong {
	color: #ffb84d;
	display: inline-block;
	min-width: 100px;
	font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
	.sm-legal-content {
		padding: 1.5rem;
		border-radius: 15px;
		margin: 0 0.5rem;
	}

	.sm-legal-title {
		font-size: 2rem;
	}

	.sm-legal-subtitle {
		font-size: 1rem;
	}

	.sm-legal-section {
		padding: 1.5rem;
		margin-bottom: 2rem;
	}

	.sm-legal-section-title {
		font-size: 1.2rem;
	}

	.sm-legal-contact-item strong {
		min-width: 80px;
		display: block;
		margin-bottom: 0.3rem;
	}
}

@media (max-width: 480px) {
	.sm-legal-content {
		padding: 1rem;
		margin: 0 0.25rem;
	}

	.sm-legal-title {
		font-size: 1.2rem;
	}

	.sm-legal-section {
		padding: 1rem;
	}

	.sm-legal-list li {
		padding-left: 1.5rem;
	}
}
