/********** Template CSS **********/
:root {
	--primary: #5deb25;
	--light: #dbeafe;
	--dark: #20af1e;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-bold {
	font-weight: 700 !important;
}

.fw-black {
	font-weight: 900 !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0.5s;
	z-index: 99999;
}

#spinner.show {
	transition:
		opacity 0.5s ease-out,
		visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

/*** Button ***/
.btn {
	font-weight: 500;
	transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #ffffff;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
	border: none;
	content: '\f107';
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
	outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: var(--primary);
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar .navbar-nav {
		border-top: 1px solid #eeeeee;
	}
}

.navbar .navbar-brand,
.navbar a.btn {
	height: 75px;
}

.navbar .navbar-nav .nav-link {
	color: var(--dark);
	font-weight: 500;
}

.navbar.sticky-top {
	top: -100px;
	transition: 0.5s;
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		opacity: 0;
		visibility: hidden;
		transition: 0.5s;
	}

	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		visibility: visible;
		transition: 0.5s;
		opacity: 1;
	}
}

/*** Header ***/
.ruhe-header {
	background: linear-gradient(135deg, #20af1e, #3b82f6);
	padding: 20px 30px;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}
.ruhe-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.ruhe-logo {
	color: #ffffff;
	font-size: 2rem;
	text-decoration: none;
	font-weight: bold;
	font-family: 'Bebas Neue', sans-serif;
}
.ruhe-navigation {
	display: flex;
	gap: 30px;
}
.ruhe-nav-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 1rem;
	position: relative;
	transition: all 0.3s ease;
	font-weight: 500;
	font-family: 'Bebas Neue', sans-serif;
}
.ruhe-nav-link:hover,
.ruhe-nav-link.active {
	color: #dbeafe;
	transform: translateY(-2px);
}
.ruhe-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #ffffff;
	transition: width 0.3s ease;
}
.ruhe-nav-link:hover::after,
.ruhe-nav-link.active::after {
	width: 100%;
}
.ruhe-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
}
.ruhe-menu-toggle span {
	width: 25px;
	height: 3px;
	background-color: #ffffff;
	display: block;
	transition: all 0.3s ease;
}
@media (max-width: 768px) {
	.ruhe-navigation {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		right: 0;
		background: linear-gradient(135deg, #20af1e, #3b82f6);
		flex-direction: column;
		padding: 20px;
		box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
	}
	.ruhe-navigation.show {
		display: flex;
	}
	.ruhe-menu-toggle {
		display: flex;
	}
}

/*** Service ***/
.ruhe-services {
	background: linear-gradient(135deg, #f8fafc, #e2e8f0);
	padding: 120px 20px;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-services-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.ruhe-services-title {
	font-size: 3rem;
	margin-bottom: 80px;
	color: #20af1e;
	font-weight: 700;
}

@media (max-width: 768px) {
	.ruhe-services-title {
		font-size: 2rem;
	}
}

.ruhe-services-grid {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.ruhe-service-card {
	background: #ffffff;
	border-radius: 10px;
	padding: 40px 30px;
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
	text-align: left;
	transition: all 0.4s ease;
	border: 1px solid rgba(37, 99, 235, 0.05);

	overflow: hidden;
}

.ruhe-service-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 30px 60px rgba(50, 235, 37, 0.2);
}

.ruhe-service-card h3 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: #20af1e;
	font-weight: 600;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-service-card p {
	color: #64748b;
	line-height: 1.7;
	font-size: 1.1rem;
	font-family: 'Bebas Neue', sans-serif;
}

@media (min-width: 992px) {
	.container.feature {
		max-width: 100% !important;
	}

	.feature-text {
		padding-left: calc(((100% - 960px) / 2) + 0.75rem);
	}
}

@media (min-width: 1200px) {
	.feature-text {
		padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
	}
}

@media (min-width: 1400px) {
	.feature-text {
		padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
	}
}

/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
	top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
	border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
	font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
	padding: 10px;
	border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
	background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
	border-bottom-color: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-social {
	margin-right: 5px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	border: 1px solid #ffffff;
	transition: 0.3s;
}

.footer .btn.btn-social:hover {
	color: var(--primary);
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: #ffffff;
	font-size: 15px;
	font-weight: normal;
	text-transform: capitalize;
	transition: 0.3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: '\f105';
	font-family: 'Bebas Neue', sans-serif;
	font-weight: 900;
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--primary);
	letter-spacing: 1px;
	box-shadow: none;
}

.footer .copyright {
	padding: 25px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
	color: var(--light);
}

.footer .copyright a:hover {
	color: var(--primary);
}
/* Cookie Banner Styles */
.cookie-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, #1e8a47, #20af1e);
	color: #ffffff;
	padding: 30px 20px;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	font-family: 'Bebas Neue', sans-serif;
	backdrop-filter: blur(10px);
	border-top: 3px solid #1e8a47;
	/* JavaScript will control visibility */
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.cookie-header h3 {
	color: #ffffff;
	font-size: 1.5rem;
	margin: 0 0 10px 0;
	font-weight: bold;
}

.cookie-header p {
	color: #e2e8f0;
	margin: 0;
	font-size: 1rem;
	line-height: 1.5;
	max-width: 600px;
}

.cookie-buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.cookie-accept {
	background: #1e8a47;
	color: #ffffff;
	border: 2px solid #1e8a47;
}

.cookie-accept:hover {
	background: #5deb25;
	border-color: #5deb25;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(93, 246, 59, 0.4);
}

.cookie-decline {
	background: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.cookie-decline:hover {
	background: #ffffff;
	color: #2f6918;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Cookie banner visibility */
.cookie-wrapper.hidden {
	display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.cookie-buttons {
		justify-content: center;
	}

	.cookie-header p {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.cookie-wrapper {
		padding: 20px 15px;
	}

	.cookie-buttons {
		flex-direction: column;
		width: 100%;
	}

	.cookie-accept,
	.cookie-decline {
		width: 100%;
	}
}

/* Footer Style */
.ruhe-footer {
	background: linear-gradient(135deg, #20af1e, #3b82f6);
	color: #ffffff;
	padding: 100px 20px;

	overflow: hidden;
}

.ruhe-footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: start;
	position: relative;
	z-index: 2;
}

.ruhe-footer h3,
.ruhe-footer h4 {
	color: #ffffff;
	margin-bottom: 25px;
	font-size: 1.6rem;
	font-weight: 700;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-footer p {
	margin-bottom: 15px;
	line-height: 1.7;
	color: #dbeafe;
	font-size: 1.1rem;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ruhe-footer li {
	margin-bottom: 15px;
}

.ruhe-footer a {
	color: #dbeafe;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.1rem;
	position: relative;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-footer a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background: #ffffff;
	transition: width 0.3s ease;
}

.ruhe-footer a:hover {
	color: #ffffff;
}

.ruhe-footer a:hover::after {
	width: 100%;
}

.ruhe-hero {
	background: linear-gradient(135deg, #358a1e, #1e4220, #196216);
	color: #ffffff;
	padding: 12rem 2rem 10rem;

	overflow: hidden;
}

.ruhe-hero-inner {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.ruhe-hero-text h1 {
	font-size: 3.5rem;
	margin-bottom: 25px;
	color: #ffffff;
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-hero-text p {
	font-size: 1.3rem;
	color: #dbeafe;
	max-width: 700px;
	margin: 0 auto 60px;
	line-height: 1.6;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-hero-cta {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.ruhe-cta-button {
	display: inline-block;
	padding: 18px 40px;
	background: #ffffff;
	color: #20af1e;
	text-decoration: none;
	border-radius: 10px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	border: 2px solid #ffffff;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.ruhe-cta-button:hover {
	background: transparent;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ruhe-cta-button.secondary {
	background: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.3);
}

.ruhe-cta-button.secondary:hover {
	background: #ffffff;
	color: #20af1e;
	border-color: #ffffff;
}

.ruhe-about {
	background: linear-gradient(135deg, #ffffff, #f1f5f9);
	padding: 120px 20px;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-about-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}

.ruhe-about-image {
	flex: 1 1 45%;
	height: 400px;
	background-image: url('img/about-1.jpg');
	background-size: cover;
	background-position: center;
	border-radius: 25px;
	box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
	position: relative;
	overflow: hidden;
}

.ruhe-about-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(37, 99, 235, 0.1),
		rgba(96, 165, 250, 0.1)
	);
}

.ruhe-about-content {
	flex: 1 1 45%;
}

.ruhe-about-content h2 {
	font-size: 2.5rem;
	margin-bottom: 25px;
	color: #20af1e;
	font-weight: 700;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-about-content p {
	font-size: 1.1rem;
	margin-bottom: 25px;
	color: #475569;
	line-height: 1.7;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-about-content ul {
	list-style: none;
	padding: 0;
}

.ruhe-about-content li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	color: #64748b;
	font-size: 1.1rem;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-about-content li::before {
	content: '+';
	position: absolute;
	top: 0;
	left: 0;
	color: #54f63b;
	font-weight: bold;
	font-size: 1.2rem;
	background: #dbeafe;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ruhe-why {
	background: linear-gradient(135deg, #20af1e, #123711);
	color: #ffffff;
	padding: 120px 20px;

	overflow: hidden;
}

.ruhe-why-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.ruhe-why-text {
	flex: 1 1 500px;
}

.ruhe-why-text h2 {
	font-size: 3rem;
	margin-bottom: 25px;
	font-weight: 700;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-why-text p {
	font-size: 1.3rem;
	line-height: 1.7;
	color: #dbeafe;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-why-image {
	flex: 1 1 400px;
	min-height: 350px;

	border-radius: 25px;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
	background-size: cover;
}

.ruhe-testimonials {
	background: linear-gradient(135deg, #f8fafc, #e2e8f0);
	color: #20af1e;
	padding: 120px 20px;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-testimonials-container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.ruhe-testimonials-container h2 {
	font-size: 3rem;
	margin-bottom: 60px;
	color: #20af1e;
	font-weight: 700;
}

.ruhe-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.ruhe-testimonial {
	background: #ffffff;
	padding: 40px 30px;
	border-radius: 10px;
	box-shadow: 0 20px 40px rgba(37, 235, 37, 0.1);
	border: 1px solid rgba(37, 235, 40, 0.05);
	transition: transform 0.3s ease;
	position: relative;
}

.ruhe-testimonial::before {
	content: '"';
	position: absolute;
	top: -10px;
	left: 20px;
	font-size: 4rem;
	color: #dbeafe;
	font-family: serif;
}

.ruhe-testimonial:hover {
	transform: translateY(-10px);
}

.ruhe-testimonial p {
	color: #475569;
	line-height: 1.7;
	font-size: 1.1rem;
	margin-bottom: 20px;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-testimonial span {
	color: #20af1e;
	font-weight: 600;
	font-size: 1rem;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-team {
	background: linear-gradient(135deg, #ffffff, #f8fafc);
	padding: 120px 20px;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-team-container {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.ruhe-team-container h2 {
	font-size: 3rem;
	margin-bottom: 20px;
	color: #20af1e;
	font-weight: 700;
	position: relative;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-team-container h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #60a5fa);
	border-radius: 2px;
}

.ruhe-team-subtitle {
	font-size: 1.2rem;
	color: #64748b;
	margin-bottom: 60px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.ruhe-team-member {
	background: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
	transition: all 0.4s ease;
	border: 1px solid rgba(37, 99, 235, 0.05);
}

.ruhe-team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 60px rgba(37, 99, 235, 0.2);
}

.ruhe-team-image {
	position: relative;
	overflow: hidden;
	height: 250px;
}

.ruhe-team-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ruhe-team-member:hover .ruhe-team-image img {
	transform: scale(1.1);
}

.ruhe-team-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		45deg,
		rgba(37, 99, 235, 0.8),
		rgba(96, 165, 250, 0.8)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ruhe-team-member:hover .ruhe-team-overlay {
	opacity: 1;
}

.ruhe-team-social {
	display: flex;
	gap: 20px;
}

.ruhe-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	color: #20af1e;
	border-radius: 50%;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.ruhe-social-link:hover {
	background: #ffffff;
	transform: scale(1.1);
}

.ruhe-team-info {
	padding: 30px;
	text-align: left;
}

.ruhe-team-info h3 {
	color: #20af1e;
	margin-bottom: 10px;
	font-size: 1.4rem;
	font-weight: 600;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-team-role {
	color: #3b82f6;
	font-weight: 600;
	margin-bottom: 15px;
	font-size: 1.1rem;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-team-description {
	color: #64748b;
	line-height: 1.6;
	margin-bottom: 20px;
	font-size: 1rem;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-team-skills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ruhe-skill {
	background: #dbeafe;
	color: #20af1e;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 500;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-contact {
	background: linear-gradient(135deg, #20af1e, #155b08);
	color: #ffffff;
	padding: 120px 20px;

	overflow: hidden;
}

.ruhe-contact-container {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.ruhe-contact-container h2 {
	font-size: 3rem;
	margin-bottom: 60px;
	font-weight: 700;
}

.ruhe-contact-form {
	display: grid;
	gap: 25px;
	margin-top: 60px;
	width: 100%;
}

.ruhe-contact-form input,
.ruhe-contact-form textarea {
	padding: 20px;
	border-radius: 15px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	font-size: 1.1rem;
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-contact-form input::placeholder,
.ruhe-contact-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.ruhe-contact-form input:focus,
.ruhe-contact-form textarea:focus {
	outline: none;
	border-color: #ffffff;
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.ruhe-contact-form button {
	padding: 20px;
	background: #ffffff;
	color: #20af1e;
	border: none;
	border-radius: 15px;
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-family: 'Bebas Neue', sans-serif;
}

.ruhe-contact-form button:hover {
	background: #f1f5f9;
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
