* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background-color: #ffffff;
	color: #333333;
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

/* ===================== Typography ===================== */
h1 {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h2 {
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1rem;
}

h3 {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.8rem;
}

h4 {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 0.6rem;
}

p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	line-height: 1.7;
}

/* ===================== Buttons & Interactive ===================== */
.rr-btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1.1rem;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: none;
	text-decoration: none;
}

.rr-btn-primary {
	background: #2ec4b6;
	color: #ffffff;
}

.rr-btn-primary:hover {
	background: #26a69a;
	transform: translateY(-2px);
	box-shadow: 0 0 6px rgba(46, 196, 182, 0.4);
}

.rr-btn-secondary {
	background: transparent;
	color: #ffe066;
	border: 2px solid #ffe066;
}

.rr-btn-secondary:hover {
	background: #ffe066;
	color: #333333;
	transform: translateY(-2px);
	box-shadow: 0 0 6px rgba(255, 224, 102, 0.4);
}

/* ===================== Container & Layout ===================== */
.rr-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.rr-section {
	padding: 80px 0;
}

.rr-grid {
	display: grid;
	gap: 30px;
}

.rr-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.rr-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.rr-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* ===================== Header Styles ===================== */
.rr-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: all 0.3s ease;
}

.rr-header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.rr-logo {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 700;
	color: #2ec4b6;
	text-decoration: none;
}

.rr-logo i {
	margin-right: 10px;
	font-size: 2rem;
}

.rr-nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

.rr-nav-link {
	font-weight: 500;
	color: #333333;
	position: relative;
	transition: all 0.3s ease;
}

.rr-nav-link:hover {
	color: #2ec4b6;
}

.rr-nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: #2ec4b6;
	transition: width 0.3s ease;
}

.rr-nav-link:hover::after {
	width: 100%;
}

.rr-nav-phone {
	color: #ffe066;
	font-weight: 600;
	padding: 8px 16px;
	border: 2px solid #ffe066;
	border-radius: 6px;
}

.rr-nav-phone:hover {
	background: #ffe066;
	color: #333333;
}

.rr-mobile-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #333333;
	cursor: pointer;
}

/* ===================== Hero Section ===================== */
.rr-hero {
	height: 100vh;
	background: linear-gradient(
			rgba(255, 255, 255, 0.5),
			rgba(255, 255, 255, 0.5)
		),
		url('assets/rr-hero.jpg') center/cover;
	display: flex;
	background-attachment: fixed;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

.rr-hero-content {
	background: rgba(255, 255, 255, 0.9);
	padding: 50px;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	max-width: 600px;
}

.rr-hero-title {
	color: #2ec4b6;
	margin-bottom: 20px;
}

.rr-hero-subtitle {
	color: #333333;
	font-weight: 400;
	margin-bottom: 30px;
}

.rr-hero-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 30px;
}

.rr-hero-buttons .rr-btn {
	width: 220px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ===================== Stats Section ===================== */
.rr-stats {
	background: #f8f9fa;
	padding: 80px 0;
}

.rr-stats-title {
	text-align: center;
	color: #333333;
	margin-bottom: 60px;
}

.rr-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.rr-stats-card {
	background: #ffffff;
	padding: 40px 20px;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.rr-stats-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.rr-stats-icon {
	font-size: 3rem;
	color: #2ec4b6;
	margin-bottom: 20px;
}

.rr-stats-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333333;
	margin-bottom: 10px;
}

.rr-stats-label {
	color: #666666;
	font-size: 1.1rem;
}

/* ===================== Tech Section ===================== */
.rr-tech {
	padding: 80px 0;
}

.rr-tech-title {
	text-align: center;
	color: #2ec4b6;
	margin-bottom: 60px;
}

.rr-tech-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.rr-tech-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.rr-tech-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.rr-tech-image {
	width: 100%;
	height: 200px;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #2ec4b6;
}

.rr-tech-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rr-tech-content {
	padding: 30px;
}

.rr-tech-content h3 {
	color: #333333;
	margin-bottom: 15px;
}

.rr-tech-content p {
	color: #666666;
	line-height: 1.6;
}

/* ===================== Case Studies Slider ===================== */
.rr-cases {
	background: #f8f9fa;
	padding: 80px 0;
}

.rr-cases-title {
	text-align: center;
	color: #333333;
	margin-bottom: 60px;
}

.rr-cases-slider {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.rr-cases-track {
	display: flex;
	transition: transform 0.5s ease;
}

.rr-case-slide {
	min-width: 100%;
	background: #ffffff;
	padding: 40px;
	display: flex;
	gap: 40px;
	align-items: center;
}

.rr-case-image {
	width: 300px;
	height: 200px;
	background: #e0e0e0;
	border-radius: 8px;
	flex-shrink: 0;
	background-size: cover;
	background-position: center;
}

.rr-case-content h3 {
	color: #2ec4b6;
	margin-bottom: 15px;
}

.rr-case-content p {
	color: #666666;
	line-height: 1.6;
}

.rr-slider-nav {
	position: absolute;
	top: 85%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	color: #2ec4b6;
	transition: all 0.3s ease;
}

.rr-slider-nav:hover {
	background: #2ec4b6;
	color: #ffffff;
}

.rr-slider-prev {
	left: 20px;
}

.rr-slider-next {
	right: 20px;
}

/* ===================== Team & Testimonials ===================== */
.rr-team-testimonials {
	padding: 80px 0;
}

.rr-team-title {
	text-align: center;
	color: #2ec4b6;
	margin-bottom: 60px;
}

.rr-team-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.rr-testimonials {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 12px;
}

.rr-testimonial {
	text-align: center;
	display: none;
}

.rr-testimonial.active {
	display: block;
}

.rr-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: #e0e0e0;
	background-size: cover;
	background-position: center;
}

.rr-testimonial-name {
	font-weight: 600;
	color: #333333;
	margin-bottom: 10px;
}

.rr-testimonial-role {
	color: #666666;
	font-size: 0.9rem;
	margin-bottom: 20px;
}

.rr-testimonial-text {
	color: #666666;
	font-style: italic;
	line-height: 1.6;
}

.rr-team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.rr-team-member {
	text-align: center;
}

.rr-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 20px;
	background: #e0e0e0;
	background-size: cover;
	background-position: center;
	border: 4px solid #2ec4b6;
}

.rr-team-name {
	font-weight: 600;
	color: #333333;
	margin-bottom: 5px;
}

.rr-team-role {
	color: #666666;
	font-size: 0.9rem;
}

/* ===================== Contact Form ===================== */
.rr-contact {
	background: #f8f9fa;
	padding: 80px 0;
}

.rr-contact-title {
	text-align: center;
	color: #333333;
	margin-bottom: 60px;
}

.rr-contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
}

.rr-form {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rr-form-group {
	margin-bottom: 25px;
}

.rr-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333333;
}

.rr-form-input,
.rr-form-textarea {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #ffffff;
	color: #333333;
}

.rr-form-input:focus,
.rr-form-textarea:focus {
	outline: none;
	border-color: #2ec4b6;
	box-shadow: 0 0 6px rgba(46, 196, 182, 0.3);
}

.rr-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.rr-form-submit {
	width: 100%;
	padding: 15px;
	background: #2ec4b6;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.rr-form-submit:hover {
	background: #26a69a;
	transform: translateY(-2px);
}

.rr-error-message {
	color: #e53e3e;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.rr-map-container {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	height: 100%;
}

/* Map Section */
.rr-map {
	height: 100%;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.rr-map {
		height: 400px;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.rr-contact-map {
	position: relative;
	height: 100%;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.rr-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;
}

.rr-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

/* ===================== Footer ===================== */
.rr-footer {
	background: #ffffff;
	border-top: 1px solid #e0e0e0;
	padding: 60px 0 20px;
}

.rr-footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 40px;
}

.rr-footer-section h4 {
	color: #2ec4b6;
	margin-bottom: 20px;
}

.rr-footer-links {
	list-style: none;
}

.rr-footer-links li {
	margin-bottom: 10px;
}

.rr-footer-links a {
	color: #666666;
	transition: color 0.3s ease;
}

.rr-footer-links a:hover {
	color: #2ec4b6;
}

.rr-footer-contact p {
	color: #666666;
	margin-bottom: 8px;
}

.rr-footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #e0e0e0;
	color: #666666;
}

/* ===================== Page Headers ===================== */
.rr-page-header {
	background: linear-gradient(135deg, #2ec4b6, #1a9b8a);
	color: #ffffff;
	padding: 120px 0 80px;
	text-align: center;
}

.rr-page-title {
	font-size: 3.5rem;
	margin-bottom: 20px;
}

.rr-page-subtitle {
	font-size: 1.3rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

/* ===================== Content Sections ===================== */
.rr-content-section {
	padding: 80px 0;
}

.rr-content-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.rr-back-btn {
	display: inline-flex;
	align-items: center;
	color: #2ec4b6;
	font-weight: 500;
	margin-bottom: 40px;
	transition: all 0.3s ease;
}

.rr-back-btn:hover {
	color: #1a9b8a;
	transform: translateX(-5px);
}

.rr-back-btn i {
	margin-right: 8px;
}

.rr-content-block {
	margin-bottom: 60px;
}

.rr-content-block h2 {
	color: #2ec4b6;
	margin-bottom: 30px;
	border-bottom: 3px solid #ffe066;
	padding-bottom: 10px;
}

.rr-content-block h3 {
	color: #333333;
	margin-top: 30px;
	margin-bottom: 15px;
}

.rr-content-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 30px auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===================== Cookie Banner ===================== */
.rr-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(51, 51, 51, 0.95);
	color: #ffffff;
	padding: 20px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.rr-cookie-banner.show {
	transform: translateY(0);
}

.rr-cookie-text {
	flex: 1;
	margin-right: 20px;
}

.rr-cookie-text a {
	color: #2ec4b6;
	text-decoration: underline;
}

.rr-cookie-buttons {
	display: flex;
	gap: 15px;
}

.rr-cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.rr-cookie-accept {
	background: #2ec4b6;
	color: #ffffff;
}

.rr-cookie-accept:hover {
	background: #26a69a;
}

.rr-cookie-decline {
	background: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
}

.rr-cookie-decline:hover {
	background: #ffffff;
	color: #333333;
}

/* ===================== Responsive Design ===================== */
@media (max-width: 1024px) {
	.rr-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.rr-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rr-tech-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.rr-team-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.rr-contact-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 992px) {
	.rr-nav {
		display: none;
		position: fixed;
		top: 100%;
		left: 0;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding: 25px 0;
		background: #fff;
		transition: all 0.3s ease-in-out;
	}

	.rr-nav.active {
		display: flex;
	}

	.rr-mobile-toggle {
		display: block;
	}
}

@media (max-width: 768px) {
	.rr-hero-content {
		padding: 30px;
	}

	.rr-hero-title {
		font-size: 2.5rem;
	}

	.rr-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.rr-grid-2,
	.rr-grid-3,
	.rr-grid-4 {
		grid-template-columns: 1fr;
	}

	.rr-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.rr-tech-grid {
		grid-template-columns: 1fr;
	}

	.rr-team-grid {
		grid-template-columns: 1fr;
	}

	.rr-case-slide {
		flex-direction: column;
		text-align: center;
	}

	.rr-case-image {
		width: 100%;
		max-width: 300px;
	}

	.rr-footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.rr-page-title {
		font-size: 2.5rem;
	}

	.rr-cookie-banner {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}

	.rr-cookie-text {
		margin-right: 0;
	}

	.rr-logo {
		font-size: 1.4rem;
	}
}

@media (max-width: 480px) {
	.rr-stats-grid {
		grid-template-columns: 1fr;
	}

	.rr-hero-content {
		padding: 20px;
	}

	.rr-hero-title {
		font-size: 2rem;
	}

	.rr-section {
		padding: 60px 0;
	}

	.rr-contact {
		padding: 60px 0;
	}

	.rr-form {
		padding: 30px 20px;
	}

	.rr-hero-title {
		font-size: 1.5rem;
	}

	.rr-hero-subtitle {
		font-size: 1.2rem;
	}

	.rr-logo {
		font-size: 1.2rem;
	}
}

/* ===================== Animations ===================== */
@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);
	}
}

.rr-animate-fade-up {
	animation: fadeInUp 0.6s ease-out;
}

.rr-animate-slide-left {
	animation: slideInLeft 0.6s ease-out;
}

.rr-animate-slide-right {
	animation: slideInRight 0.6s ease-out;
}

/* ===================== Loading States ===================== */
.rr-loading {
	opacity: 0.6;
	pointer-events: none;
}

.rr-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid #e0e0e0;
	border-radius: 50%;
	border-top-color: #2ec4b6;
	animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* ===================== Utility Classes ===================== */
.rr-text-center {
	text-align: center;
}

.rr-text-left {
	text-align: left;
}

.rr-text-right {
	text-align: right;
}

.rr-mb-0 {
	margin-bottom: 0;
}

.rr-mb-1 {
	margin-bottom: 1rem;
}

.rr-mb-2 {
	margin-bottom: 2rem;
}

.rr-mt-0 {
	margin-top: 0;
}

.rr-mt-1 {
	margin-top: 1rem;
}

.rr-mt-2 {
	margin-top: 2rem;
}

.rr-hidden {
	display: none;
}

.rr-visible {
	display: block;
}

/* ===================== Print Styles ===================== */
@media print {
	.rr-header,
	.rr-footer,
	.rr-cookie-banner {
		display: none;
	}

	.rr-section {
		padding: 20px 0;
	}

	.rr-hero {
		height: auto;
		padding: 40px 0;
	}

	body {
		font-size: 12pt;
		line-height: 1.4;
	}
}

.rr-contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	margin-top: 40px;
}

.rr-contact-form {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rr-contact-form .rr-form {
	background: none;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
}

.rr-contact-form h2 {
	color: #2ec4b6;
	margin-bottom: 20px;
	font-size: 2rem;
}

.rr-form-description {
	color: #666666;
	margin-bottom: 30px;
	line-height: 1.6;
}

.rr-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.rr-form-select {
	width: 100%;
	padding: 15px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #ffffff;
	color: #333333;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px;
}

.rr-form-select:focus {
	outline: none;
	border-color: #2ec4b6;
	box-shadow: 0 0 6px rgba(46, 196, 182, 0.3);
}

.rr-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.rr-form-checkbox {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	accent-color: #2ec4b6;
}

.rr-checkbox-label {
	font-size: 0.95rem;
	color: #666666;
	line-height: 1.5;
	cursor: pointer;
}

.rr-checkbox-label a {
	color: #2ec4b6;
	text-decoration: underline;
}

.rr-checkbox-label a:hover {
	color: #1a9b8a;
}

.rr-form-submit:disabled {
	background: #cccccc;
	cursor: not-allowed;
	transform: none;
}

.rr-form-submit:disabled:hover {
	background: #cccccc;
	transform: none;
}

/* Contact Info Styles */
.rr-contact-info {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.rr-contact-details {
	background: #ffffff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.rr-contact-details h3 {
	color: #2ec4b6;
	margin-bottom: 30px;
	font-size: 1.8rem;
}

.rr-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
}

.rr-contact-item:last-child {
	margin-bottom: 0;
}

.rr-contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #2ec4b6, #1a9b8a);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.rr-contact-icon i {
	color: #ffffff;
	font-size: 1.2rem;
}

.rr-contact-text h4 {
	color: #333333;
	margin-bottom: 8px;
	font-size: 1.2rem;
}

.rr-contact-text p {
	color: #666666;
	margin-bottom: 5px;
	line-height: 1.5;
}

.rr-contact-text a {
	color: #2ec4b6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.rr-contact-text a:hover {
	color: #1a9b8a;
	text-decoration: underline;
}

.rr-contact-note {
	font-size: 0.9rem;
	color: #999999;
	font-style: italic;
}

/* Map Styles */
.rr-map-container {
	height: 350px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* FAQ Section */
.rr-contact-faq {
	margin-top: 60px;
	background: none;
	padding: 0;
	border-radius: 12px;
	box-shadow: none;
}

.rr-contact-faq h3 {
	color: #2ec4b6;
	margin-bottom: 30px;
	font-size: 2rem;
	text-align: center;
}

.rr-faq-list {
	max-width: 800px;
	margin: 0 auto;
}

.rr-faq-item {
	border-bottom: 1px solid #e0e0e0;
	margin-bottom: 20px;
}

.rr-faq-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.rr-faq-question {
	width: 100%;
	padding: 20px 0;
	background: none;
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.1rem;
	font-weight: 600;
	color: #333333;
	transition: color 0.3s ease;
}

.rr-faq-question:hover {
	color: #2ec4b6;
}

.rr-faq-question i {
	transition: transform 0.3s ease;
	color: #2ec4b6;
}

.rr-faq-question.active i {
	transform: rotate(180deg);
}

.rr-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.rr-faq-answer.active {
	max-height: 200px;
}

.rr-faq-answer p {
	padding: 0 0 20px 0;
	color: #666666;
	line-height: 1.6;
}

/* Form Error States */
.rr-form-input.error,
.rr-form-textarea.error,
.rr-form-select.error {
	border-color: #e53e3e;
	box-shadow: 0 0 6px rgba(229, 62, 62, 0.3);
}

.rr-error-message {
	color: #e53e3e;
	font-size: 0.9rem;
	margin-top: 5px;
	display: none;
}

.rr-error-message.show {
	display: block;
}

/* Success Message */
.rr-success-message {
	background: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	border: 1px solid #c3e6cb;
	display: none;
}

.rr-success-message.show {
	display: block;
}

/* Loading State */
.rr-form-submit.loading {
	background: #cccccc;
	cursor: not-allowed;
}

.rr-form-submit.loading i {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.rr-contact-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.rr-contact-details {
		padding: 30px;
	}

	.rr-contact-form {
		padding: 30px;
	}

	.rr-contact-faq {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.rr-form-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.rr-contact-item {
		gap: 15px;
	}

	.rr-contact-icon {
		width: 40px;
		height: 40px;
	}

	.rr-contact-icon i {
		font-size: 1rem;
	}

	.rr-contact-details {
		padding: 20px;
	}

	.rr-contact-form {
		padding: 20px;
	}

	.rr-contact-faq {
		padding: 20px;
	}

	.rr-map-container {
		height: 250px;
	}

	.rr-faq-question {
		font-size: 1rem;
		padding: 15px 0;
	}
}

.rr-policy-content {
	padding: 80px 0;
	background: #ffffff;
}

.rr-policy-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 60px;
	margin-top: 40px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* Table of Contents Styles */
.rr-policy-toc {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 100px;
	height: fit-content;
}

.rr-policy-toc h2 {
	color: #2ec4b6;
	margin-bottom: 20px;
	font-size: 1.5rem;
	border-bottom: 2px solid #ffe066;
	padding-bottom: 10px;
}

.rr-policy-toc ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.rr-policy-toc li {
	margin-bottom: 12px;
}

.rr-policy-toc a {
	color: #666666;
	text-decoration: none;
	font-size: 0.95rem;
	line-height: 1.5;
	padding: 8px 0;
	display: block;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
	padding-left: 12px;
}

.rr-policy-toc a:hover {
	color: #2ec4b6;
	border-left-color: #2ec4b6;
	padding-left: 18px;
}

/* Policy Sections Styles */
.rr-policy-sections {
	background: #ffffff;
}

.rr-policy-section {
	margin-bottom: 60px;
	padding: 40px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border-left: 4px solid #2ec4b6;
}

.rr-policy-section:last-child {
	margin-bottom: 0;
}

.rr-policy-section h2 {
	color: #2ec4b6;
	margin-bottom: 25px;
	font-size: 2rem;
	border-bottom: 3px solid #ffe066;
	padding-bottom: 12px;
}

.rr-policy-section h3 {
	color: #333333;
	margin-top: 30px;
	margin-bottom: 15px;
	font-size: 1.4rem;
	font-weight: 600;
}

.rr-policy-section p {
	color: #666666;
	line-height: 1.7;
	margin-bottom: 20px;
	font-size: 1.05rem;
}

.rr-policy-section ul {
	margin: 20px 0;
	padding-left: 0;
	list-style: none;
}

.rr-policy-section li {
	margin-bottom: 12px;
	padding-left: 30px;
	position: relative;
	color: #666666;
	line-height: 1.6;
}

.rr-policy-section li::before {
	content: '•';
	color: #2ec4b6;
	font-size: 1.5rem;
	position: absolute;
	left: 10px;
	top: -2px;
}

.rr-policy-section li strong {
	color: #333333;
	font-weight: 600;
}

/* Contact Info in Policy Pages */
.rr-contact-info-policy {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 12px;
	margin-top: 30px;
	border-left: 4px solid #ffe066;
}

.rr-contact-info-policy h3 {
	color: #2ec4b6;
	margin-bottom: 20px;
	font-size: 1.3rem;
}

.rr-contact-method {
	margin-bottom: 15px;
	padding: 10px 0;
	border-bottom: 1px solid #e0e0e0;
	color: #666666;
}

.rr-contact-method:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.rr-contact-method strong {
	color: #333333;
	display: inline-block;
	min-width: 180px;
	font-weight: 600;
}

.rr-contact-method a {
	color: #2ec4b6;
	text-decoration: none;
	transition: color 0.3s ease;
}

.rr-contact-method a:hover {
	color: #1a9b8a;
	text-decoration: underline;
}

/* Policy Page Responsive Styles */
@media (max-width: 1024px) {
	.rr-policy-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.rr-policy-toc {
		position: static;
		order: 2;
	}

	.rr-policy-sections {
		order: 1;
	}
}

@media (max-width: 768px) {
	.rr-policy-content {
		padding: 60px 0;
	}

	.rr-policy-section {
		padding: 30px 20px;
		margin-bottom: 40px;
	}

	.rr-policy-section h2 {
		font-size: 1.6rem;
	}

	.rr-policy-section h3 {
		font-size: 1.2rem;
	}

	.rr-policy-toc {
		padding: 20px;
	}

	.rr-contact-info-policy {
		padding: 20px;
	}

	.rr-contact-method strong {
		display: block;
		margin-bottom: 5px;
		min-width: auto;
	}
}

@media (max-width: 480px) {
	.rr-policy-section {
		padding: 20px 15px;
	}

	.rr-policy-section li {
		padding-left: 25px;
	}

	.rr-policy-section li::before {
		left: 8px;
	}
}

/* Enhanced Link Styles for Policy Pages */
.rr-policy-section a {
	color: #2ec4b6;
	text-decoration: underline;
	transition: all 0.3s ease;
	word-wrap: break-word;
}

.rr-policy-section a:hover {
	color: #1a9b8a;
	text-decoration: none;
}

/* Highlighted Information Boxes */
.rr-policy-highlight {
	background: linear-gradient(135deg, #2ec4b6, #1a9b8a);
	color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	margin: 25px 0;
}

.rr-policy-highlight p {
	color: #ffffff;
	margin-bottom: 0;
}

.rr-policy-highlight strong {
	color: #ffe066;
}

/* Date and Version Information */
.rr-policy-date-info {
	background: #f8f9fa;
	padding: 15px 20px;
	border-radius: 8px;
	border-left: 4px solid #ffe066;
	margin-top: 30px;
	font-size: 0.95rem;
	color: #666666;
}

.rr-policy-date-info p {
	margin-bottom: 8px;
}

.rr-policy-date-info p:last-child {
	margin-bottom: 0;
}

@media (max-width: 480px) {
	.rr-contact-details {
		padding: 15px;
	}

	.rr-contact-form {
		padding: 15px;
	}

	.rr-contact-faq {
		padding: 15px;
	}

	.rr-contact-form h2 {
		font-size: 1.5rem;
	}

	.rr-contact-faq h3 {
		font-size: 1.5rem;
	}

	.rr-contact-item {
		flex-direction: column;
	}

	.rr-contact-container,
	.rr-policy-wrapper {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.rr-page-title {
		font-size: 1.5rem;
	}
}
