* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	line-height: 1.6;
	color: #2a2a2a;
	background-color: #fdfdfd;
	overflow-x: hidden;
}

/* Typography */
.rs-heading-primary {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	color: #2e86ab;
	margin-bottom: 1rem;
}

.rs-heading-secondary {
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	color: #2a2a2a;
	margin-bottom: 0.75rem;
}

.rs-text-large {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #2a2a2a;
}

.rs-text-medium {
	font-size: 1rem;
	line-height: 1.6;
	color: #2a2a2a;
}

.rs-text-small {
	font-size: 0.875rem;
	line-height: 1.5;
	color: #666;
}

/* Container and Layout */
.rs-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.rs-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.rs-section {
	padding: 80px 0;
}

.rs-section-small {
	padding: 60px 0;
}

/* Header Styles */
.rs-header {
	background: #ffffff;
	box-shadow: 0 2px 20px rgba(46, 134, 171, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.rs-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}

.rs-logo {
	font-family: 'Nunito', sans-serif;
	font-weight: 700;
	font-size: 1.75rem;
	color: #2e86ab;
	text-decoration: none;
	transition: all 0.3s ease;
}

.rs-logo:hover {
	color: #ff6b35;
	transform: scale(1.05);
}

.rs-logo::after {
	content: 'Sphere';
	color: #ff6b35;
}

.rs-nav {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 2rem;
}

.rs-nav-link {
	color: #2a2a2a;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: all 0.3s ease;
	padding: 10px 0;
}

.rs-nav-link:hover {
	color: #2e86ab;
}

.rs-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #2e86ab, #ff6b35);
	transition: width 0.3s ease;
}

.rs-nav-link:hover::after,
.rs-nav-link.rs-active::after {
	width: 100%;
}

.rs-cta-button {
	background: linear-gradient(135deg, #2e86ab, #ff6b35);
	color: white;
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	display: inline-block;
}

.rs-cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
}

/* Mobile Menu */
.rs-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 5px;
}

.rs-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #2e86ab;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

.rs-mobile-nav {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: white;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: all 0.3s ease;
}

.rs-mobile-nav.rs-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.rs-mobile-nav.rs-active .rs-nav {
	display: flex;
	flex-direction: column;
	padding: 20px;
	gap: 1rem;
}

/* Hero Section */
.rs-hero {
	background: linear-gradient(135deg, #fdfdfd 0%, #f0f8ff 100%);
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.rs-hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url('assets/rs-hero.webp') center/cover;
	opacity: 0.3;
}

.rs-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.rs-hero-text h1 {
	font-size: 3.5rem;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #2e86ab, #ff6b35);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.rs-hero-text p {
	font-size: 1.25rem;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.rs-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.rs-button-primary {
	background: linear-gradient(135deg, #2e86ab, #ff6b35);
	color: white;
	padding: 15px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	display: inline-block;
}

.rs-button-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(46, 134, 171, 0.3);
}

.rs-button-secondary {
	background: transparent;
	color: #2e86ab;
	padding: 15px 30px;
	border: 2px solid #2e86ab;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
}

.rs-button-secondary:hover {
	background: #2e86ab;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(46, 134, 171, 0.2);
}

.rs-hero-image {
	text-align: center;
	position: relative;
	height: 100%;
}

.rs-hero-image img {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(46, 134, 171, 0.2);
	transition: all 0.3s ease;
}

.rs-hero-image img:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 80px rgba(46, 134, 171, 0.3);
}

/* Content Sections */
.rs-content-section {
	background: white;
	border-radius: 20px;
	padding: 60px;
	margin: 40px 0;
	box-shadow: 0 10px 40px rgba(46, 134, 171, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.rs-content-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #2e86ab, #ff6b35, #4caf50);
}

.rs-content-section:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(46, 134, 171, 0.15);
}

.rs-content-section h2 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: #2e86ab;
}

.rs-content-section p {
	font-size: 1.125rem;
	line-height: 1.8;
	color: #555;
	margin-bottom: 1.5rem;
}

.rs-content-section ul {
	list-style: none;
	margin-left: 0;
}

.rs-content-section li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 10px;
	font-size: 1.125rem;
	line-height: 1.6;
}

.rs-content-section li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #4caf50;
	font-weight: bold;
	font-size: 1.2rem;
}

/* Reviews Section */
.rs-reviews {
	background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
	padding: 80px 0;
	position: relative;
}

.rs-reviews h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3rem;
	color: #2e86ab;
}

.rs-reviews-slider {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 20px;
}

.rs-review-card {
	background: white;
	padding: 40px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 15px 50px rgba(46, 134, 171, 0.1);
	margin: 0 20px;
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.5s ease;
	position: absolute;
	width: calc(100% - 40px);
	left: 20px;
}

.rs-review-card.rs-active {
	opacity: 1;
	transform: translateX(0);
	position: relative;
	left: 0;
}

.rs-review-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #2e86ab, #ff6b35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 2rem;
	font-weight: bold;
}

.rs-review-avatar img {
	border-radius: 50%;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rs-review-text {
	font-size: 1.125rem;
	line-height: 1.7;
	color: #555;
	margin-bottom: 20px;
	font-style: italic;
}

.rs-review-author {
	font-weight: 600;
	color: #2e86ab;
	font-size: 1.125rem;
}

.rs-review-position {
	color: #666;
	font-size: 0.95rem;
	margin-top: 5px;
}

.rs-slider-nav {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.rs-slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.rs-slider-dot.rs-active {
	background: #2e86ab;
	transform: scale(1.2);
}

/* Form Section */
.rs-form-section {
	background: white;
	padding: 80px 0;
}

.rs-form-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.rs-form {
	background: #f8fbff;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 15px 50px rgba(46, 134, 171, 0.1);
}

.rs-form h3 {
	font-size: 2rem;
	color: #2e86ab;
	margin-bottom: 1.5rem;
	text-align: center;
}

.rs-form-group {
	margin-bottom: 25px;
}

.rs-form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #2a2a2a;
}

.rs-form-input {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e8f0;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: white;
}

.rs-form-input:focus {
	outline: none;
	border-color: #2e86ab;
	box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.rs-form-textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e8f0;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: white;
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
}

.rs-form-textarea:focus {
	outline: none;
	border-color: #2e86ab;
	box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.rs-form-submit {
	width: 100%;
	background: linear-gradient(135deg, #2e86ab, #ff6b35);
	color: white;
	padding: 15px;
	border: none;
	border-radius: 10px;
	font-size: 1.125rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.rs-form-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(46, 134, 171, 0.3);
}

.rs-form-error {
	color: #ff4444;
	font-size: 0.875rem;
	margin-top: 5px;
	display: none;
}

.rs-form-error.rs-show {
	display: block;
}

/* Map Section */
.rs-map-container {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(46, 134, 171, 0.1);
	height: 100%;
}

/* Map Section */
.rs-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.rs-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.rs-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.rs-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 */
.rs-footer {
	background: #f4f5f7;
	padding: 60px 0 30px;
	border-top: 1px solid #e0e8f0;
}

.rs-footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 40px;
}

.rs-footer-brand h3 {
	font-size: 1.5rem;
	color: #2e86ab;
	margin-bottom: 15px;
}

.rs-footer-brand p {
	color: #666;
	line-height: 1.6;
}

.rs-footer-menu h4 {
	color: #2a2a2a;
	margin-bottom: 20px;
	font-size: 1.125rem;
}

.rs-footer-menu ul {
	list-style: none;
}

.rs-footer-menu ul li {
	margin-bottom: 10px;
}

.rs-footer-menu ul li a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.rs-footer-menu ul li a:hover {
	color: #2e86ab;
}

.rs-footer-contact h4 {
	color: #2a2a2a;
	margin-bottom: 20px;
	font-size: 1.125rem;
}

.rs-footer-contact p {
	color: #666;
	margin-bottom: 10px;
}

.rs-footer-contact strong {
	color: #2e86ab;
}

.rs-footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid #e0e8f0;
	color: #666;
}

/* Cookie Banner */
.rs-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	padding: 20px;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
	z-index: 1001;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.rs-cookie-banner.rs-show {
	transform: translateY(0);
}

.rs-cookie-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	gap: 20px;
}

.rs-cookie-text {
	flex: 1;
	color: #666;
}

.rs-cookie-actions {
	display: flex;
	gap: 15px;
}

.rs-cookie-accept {
	background: #2e86ab;
	color: white;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	transition: background 0.3s ease;
}

.rs-cookie-accept:hover {
	background: #ff6b35;
}

.rs-cookie-link {
	color: #2e86ab;
	text-decoration: none;
	padding: 10px;
}

.rs-cookie-link:hover {
	text-decoration: underline;
}

/* Animations */
@keyframes rs-float {
	0%,
	100% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-20px) rotate(5deg);
	}
}

@keyframes rs-fade-in {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes rs-slide-right {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.rs-animate-fade-in {
	animation: rs-fade-in 0.6s ease-out forwards;
}

.rs-animate-slide-right {
	animation: rs-slide-right 0.6s ease-out forwards;
}

/* Utility Classes */
.rs-text-center {
	text-align: center;
}
.rs-text-left {
	text-align: left;
}
.rs-text-right {
	text-align: right;
}

.rs-mb-1 {
	margin-bottom: 0.5rem;
}
.rs-mb-2 {
	margin-bottom: 1rem;
}
.rs-mb-3 {
	margin-bottom: 1.5rem;
}
.rs-mb-4 {
	margin-bottom: 2rem;
}

.rs-mt-1 {
	margin-top: 0.5rem;
}
.rs-mt-2 {
	margin-top: 1rem;
}
.rs-mt-3 {
	margin-top: 1.5rem;
}
.rs-mt-4 {
	margin-top: 2rem;
}

.rs-hidden {
	display: none;
}
.rs-visible {
	display: block;
}

/* Page-specific Styles */

/* Nature Page */
.rs-nature-hero {
	background: linear-gradient(
		135deg,
		rgba(76, 175, 80, 0.1),
		rgba(46, 134, 171, 0.1)
	);
	padding: 140px 0 80px;
	text-align: center;
}

.rs-nature-hero h1 {
	font-size: 3rem;
	color: #2e86ab;
	margin-bottom: 1rem;
}

.rs-nature-hero p {
	font-size: 1.25rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.rs-nature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin: 4rem 0;
}

.rs-nature-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(46, 134, 171, 0.1);
	transition: all 0.3s ease;
}

.rs-nature-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(46, 134, 171, 0.2);
}

.rs-nature-card-image {
	height: 200px;
	background: linear-gradient(135deg, #4caf50, #2e86ab);
	position: relative;
	overflow: hidden;
}

.rs-nature-card-content {
	padding: 30px;
}

.rs-nature-card h3 {
	font-size: 1.5rem;
	color: #2e86ab;
	margin-bottom: 15px;
}

.rs-nature-card p {
	color: #666;
	line-height: 1.6;
}

/* Culture Page */
.rs-culture-hero {
	background: linear-gradient(
		135deg,
		rgba(255, 107, 53, 0.1),
		rgba(46, 134, 171, 0.1)
	);
	padding: 140px 0 80px;
	text-align: center;
}

.rs-culture-hero h1 {
	font-size: 3rem;
	color: #2e86ab;
	margin-bottom: 1rem;
}

.rs-culture-timeline {
	position: relative;
	margin: 4rem 0;
}

.rs-culture-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 4px;
	background: linear-gradient(to bottom, #2e86ab, #ff6b35);
	transform: translateX(-50%);
}

.rs-culture-item {
	display: flex;
	margin-bottom: 4rem;
	position: relative;
}

.rs-culture-item:nth-child(even) {
	flex-direction: row-reverse;
}

.rs-culture-content {
	flex: 1;
	background: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(46, 134, 171, 0.1);
	margin: 0 2rem;
}

.rs-culture-content h3 {
	font-size: 1.5rem;
	color: #ff6b35;
	margin-bottom: 15px;
}

.rs-culture-dot {
	position: absolute;
	left: 50%;
	top: 30px;
	width: 20px;
	height: 20px;
	background: #2e86ab;
	border-radius: 50%;
	transform: translateX(-50%);
	box-shadow: 0 0 0 4px white, 0 0 0 8px #2e86ab;
}

/* Hiking Page */
.rs-hiking-hero {
	background: linear-gradient(
		135deg,
		rgba(255, 107, 53, 0.1),
		rgba(76, 175, 80, 0.1)
	);
	padding: 140px 0 80px;
	text-align: center;
}

.rs-hiking-hero h1 {
	font-size: 3rem;
	color: #2e86ab;
	margin-bottom: 1rem;
}

.rs-difficulty-levels {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 4rem 0;
}

.rs-difficulty-card {
	background: white;
	padding: 40px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(46, 134, 171, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.rs-difficulty-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--level-color);
}

.rs-difficulty-card.rs-beginner {
	--level-color: #4caf50;
}

.rs-difficulty-card.rs-intermediate {
	--level-color: #ff6b35;
}

.rs-difficulty-card.rs-advanced {
	--level-color: #f44336;
}

.rs-difficulty-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(46, 134, 171, 0.2);
}

.rs-difficulty-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	background: var(--level-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5rem;
}

.rs-difficulty-card h3 {
	font-size: 1.5rem;
	color: var(--level-color);
	margin-bottom: 15px;
}

/* Contact Page */
.rs-contact-hero {
	background: linear-gradient(
		135deg,
		rgba(46, 134, 171, 0.1),
		rgba(255, 107, 53, 0.1)
	);
	padding: 140px 0 80px;
	text-align: center;
}

.rs-contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin: 4rem 0;
}

.rs-contact-card {
	background: white;
	padding: 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(46, 134, 171, 0.1);
	transition: all 0.3s ease;
}

.rs-contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(46, 134, 171, 0.15);
}

.rs-contact-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 20px;
	background: linear-gradient(135deg, #2e86ab, #ff6b35);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.25rem;
}

.rs-contact-card h3 {
	font-size: 1.25rem;
	color: #2e86ab;
	margin-bottom: 10px;
}

.rs-contact-card p {
	color: #666;
	line-height: 1.5;
}

/* Intersection Observer Classes */
.rs-fade-in-element {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.rs-fade-in-element.rs-visible {
	opacity: 1;
	transform: translateY(0);
}

.rs-slide-right-element {
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.6s ease;
}

.rs-slide-right-element.rs-visible {
	opacity: 1;
	transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
	.rs-hero-content {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.rs-form-container {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.rs-footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.rs-hero-buttons {
		justify-content: center;
	}
}

@media (max-width: 870px) {
	.rs-nav {
		display: none;
	}

	.rs-mobile-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.rs-hero-text h1 {
		font-size: 2.5rem;
	}

	.rs-hero-buttons {
		justify-content: center;
	}

	.rs-content-section {
		padding: 40px 30px;
		margin: 20px 0;
	}

	.rs-content-section h2 {
		font-size: 2rem;
	}

	.rs-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.rs-cookie-content {
		flex-direction: column;
		gap: 15px;
	}

	.rs-culture-timeline::before {
		display: none;
	}

	.rs-culture-item {
		flex-direction: column;
	}

	.rs-culture-item:nth-child(even) {
		flex-direction: column;
	}

	.rs-culture-content {
		margin: 0;
	}

	.rs-culture-dot {
		left: 20px;
	}
}

@media (max-width: 480px) {
	.rs-container {
		padding: 0 15px;
	}

	.rs-hero {
		padding: 100px 0 60px;
	}

	.rs-hero-text h1 {
		font-size: 2rem;
	}

	.rs-hero-text p {
		font-size: 1rem;
	}

	.rs-section {
		padding: 60px 0;
	}

	.rs-content-section {
		padding: 30px 20px;
	}

	.rs-form {
		padding: 30px 20px;
	}

	.rs-header-content .rs-cta-button {
		display: none;
	}

	.rs-nature-hero h1,
	.rs-culture-hero h1,
	.rs-hiking-hero h1,
	.rs-content-section h2 {
		font-size: 1.5rem;
	}
	.rs-nature-grid,
	.rs-difficulty-levels {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
}

.rs-legal-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 120px 20px;
	background-color: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	margin-top: 40px;
	margin-bottom: 40px;
}

.rs-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
	border-bottom: 3px solid #2e86ab;
}

.rs-legal-title {
	font-size: 2.8rem;
	color: #2e86ab;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: -0.5px;
}

.rs-legal-subtitle {
	font-size: 1.2rem;
	color: #666;
	font-weight: 400;
	margin-bottom: 10px;
}

.rs-legal-company-info {
	background: linear-gradient(135deg, #2e86ab 0%, #4caf50 100%);
	color: white;
	padding: 20px;
	border-radius: 10px;
	margin: 20px 0;
	text-align: center;
}

.rs-legal-company-name {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.rs-legal-contact-info {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 15px;
}

.rs-legal-contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.95rem;
}

.rs-legal-icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.rs-legal-content {
	margin-top: 40px;
}

.rs-legal-section {
	margin-bottom: 35px;
	padding: 25px;
	background-color: #fdfdfd;
	border-radius: 10px;
	border-left: 4px solid #4caf50;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rs-legal-section:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rs-legal-section-title {
	font-size: 1.6rem;
	color: #2e86ab;
	font-weight: 600;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.rs-legal-section-number {
	background: #ff6b35;
	color: white;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
}

.rs-legal-section-content {
	font-size: 1rem;
	line-height: 1.7;
	color: #2a2a2a;
}

.rs-legal-section-content p {
	margin-bottom: 15px;
}

.rs-legal-section-content ul {
	margin: 15px 0;
	padding-left: 25px;
}

.rs-legal-section-content li {
	margin-bottom: 8px;
	position: relative;
}

.rs-legal-section-content li::marker {
	color: #4caf50;
}

.rs-legal-highlight {
	background-color: #fff3cd;
	border: 1px solid #ffe69c;
	border-radius: 6px;
	padding: 15px;
	margin: 20px 0;
}

.rs-legal-highlight-title {
	font-weight: 600;
	color: #856404;
	margin-bottom: 8px;
}

.rs-legal-important {
	background: linear-gradient(135deg, #ff6b35, #ff8a65);
	color: white;
	padding: 20px;
	border-radius: 10px;
	margin: 25px 0;
	text-align: center;
}

.rs-legal-important-title {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.rs-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.rs-legal-table th,
.rs-legal-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}

.rs-legal-table th {
	background-color: #2e86ab;
	color: white;
	font-weight: 600;
}

.rs-legal-table tr:hover {
	background-color: #f8f9fa;
}

.rs-legal-footer {
	margin-top: 50px;
	padding: 30px;
	background: linear-gradient(135deg, #2e86ab 0%, #4caf50 100%);
	color: white;
	text-align: center;
	border-radius: 10px;
}

.rs-legal-footer-title {
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.rs-legal-update-date {
	font-size: 0.9rem;
	color: #e8f4fd;
	margin-bottom: 15px;
}

.rs-legal-contact-button {
	display: inline-block;
	background-color: #ff6b35;
	color: white;
	padding: 12px 25px;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 10px;
}

.rs-legal-contact-button:hover {
	background-color: #e55a2b;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
	.rs-legal-title {
		font-size: 2.2rem;
	}

	.rs-legal-contact-info {
		flex-direction: column;
		align-items: center;
	}

	.rs-legal-section {
		padding: 20px 15px;
	}

	.rs-legal-section-title {
		font-size: 1.4rem;
		flex-direction: column;
		text-align: center;
		gap: 8px;
	}

	.rs-legal-table {
		font-size: 0.9rem;
	}

	.rs-legal-table th,
	.rs-legal-table td {
		padding: 10px;
	}
}

@media (max-width: 480px) {
	.rs-legal-title {
		font-size: 1.5rem;
	}

	.rs-legal-section-title {
		font-size: 1.2rem;
	}

	.rs-legal-section-content {
		font-size: 0.95rem;
	}

	.rs-legal-contact-item {
		flex-direction: column;
		text-align: center;
	}
}
