* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
		sans-serif;
	line-height: 1.6;
	color: #333333;
	background-color: #f9fafb;
	overflow-x: hidden;
}

/* === ТИПОГРАФИЯ === */
.fg-font-primary {
	font-family: 'Inter', sans-serif;
}

.fg-font-heading {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	color: #333333;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
	line-height: 1.2;
}
h2 {
	font-size: 2rem;
	line-height: 1.3;
}
h3 {
	font-size: 1.5rem;
	line-height: 1.4;
}
h4 {
	font-size: 1.25rem;
	line-height: 1.4;
}
h5 {
	font-size: 1.125rem;
	line-height: 1.5;
}
h6 {
	font-size: 1rem;
	line-height: 1.5;
}

p {
	margin-bottom: 1rem;
	font-size: 1rem;
	line-height: 1.7;
}

/* === ЦВЕТА === */
.fg-bg-primary {
	background-color: #f9fafb;
}
.fg-bg-white {
	background-color: #ffffff;
}
.fg-bg-accent {
	background-color: #2d6a4f;
}
.fg-bg-accent-light {
	background-color: #40916c;
}
.fg-bg-sand {
	background-color: #f4a261;
}

.fg-text-primary {
	color: #333333;
}
.fg-text-accent {
	color: #2d6a4f;
}
.fg-text-accent-light {
	color: #40916c;
}
.fg-text-white {
	color: #ffffff;
}
.fg-text-sand {
	color: #f4a261;
}

/* === КОНТЕЙНЕРЫ === */
.fg-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.fg-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.fg-section {
	padding: 80px 0;
}

.fg-section-sm {
	padding: 60px 0;
}

/* === GRID СИСТЕМЫ === */
.fg-grid {
	display: grid;
	gap: 2rem;
}

.fg-grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.fg-grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.fg-grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.fg-grid-auto {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

/* === КНОПКИ === */
.fg-btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.fg-btn-primary {
	background-color: #2d6a4f;
	color: #ffffff;
}

.fg-btn-primary:hover {
	background-color: #40916c;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
}

.fg-btn-secondary {
	background-color: transparent;
	color: #2d6a4f;
	border: 2px solid #2d6a4f;
}

.fg-btn-secondary:hover {
	background-color: #2d6a4f;
	color: #ffffff;
	transform: translateY(-2px);
}

.fg-btn-sand {
	background-color: #f4a261;
	color: #333333;
}

.fg-btn-sand:hover {
	background-color: #e8956b;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(244, 162, 97, 0.3);
}

.fg-btn-lg {
	padding: 16px 32px;
	font-size: 1.125rem;
}

/* === КАРТОЧКИ === */
.fg-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.fg-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.fg-card-header {
	margin-bottom: 1.5rem;
}

.fg-card-title {
	font-size: 1.25rem;
	color: #2d6a4f;
	margin-bottom: 0.5rem;
}

.fg-card-text {
	color: #666666;
	line-height: 1.6;
}

/* === HEADER === */
.fg-header {
	background: #ffffff;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.fg-header-content {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	padding: 1rem 0;
	gap: 2rem;
}

.fg-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2d6a4f;
	text-decoration: none;
	font-family: 'Montserrat', sans-serif;
}

.fg-nav {
	display: flex;
	justify-content: center;
}

.fg-nav-list {
	display: flex;
	list-style: none;
	gap: 2rem;
	margin: 0;
	padding: 0;
}

.fg-nav-link {
	color: #333333;
	text-decoration: none;
	font-weight: 500;
	position: relative;
	transition: color 0.3s ease;
}

.fg-nav-link:hover,
.fg-nav-link.active {
	color: #2d6a4f;
}

.fg-nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #2d6a4f;
	transition: width 0.3s ease;
}

.fg-nav-link:hover::after,
.fg-nav-link.active::after {
	width: 100%;
}

.fg-header-cta {
	margin-left: auto;
}

/* === МОБИЛЬНОЕ МЕНЮ === */
.fg-mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: #333333;
	cursor: pointer;
}

.fg-mobile-menu {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background: #ffffff;
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
	transition: right 0.3s ease;
	z-index: 1001;
	padding: 2rem;
}

.fg-mobile-menu.active {
	right: 0;
}

.fg-mobile-menu-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
}

.fg-mobile-nav-list {
	list-style: none;
	margin: 3rem 0 0 0;
	padding: 0;
}

.fg-mobile-nav-item {
	margin-bottom: 1rem;
}

.fg-mobile-nav-link {
	color: #333333;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.125rem;
	display: block;
	padding: 0.5rem 0;
}

.fg-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
}

.fg-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* === HERO СЕКЦИЯ === */
.fg-hero {
	padding: 140px 0 80px;
	background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}

.fg-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('assets/fg-hero.webp') center/cover;
	background-attachment: fixed;
	opacity: 0.3;
}

.fg-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 2;
}

.fg-hero-text h1 {
	font-size: 3rem;
	margin-bottom: 1.5rem;
	color: #2d6a4f;
}

.fg-hero-subtitle {
	font-size: 1.25rem;
	color: #666666;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.fg-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.fg-hero-image {
	text-align: center;
	height: 100%;
	position: relative;
}

.fg-hero-image img {
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* === СЕКЦИИ КОНТЕНТА === */
.fg-content-section {
	/* margin: 2rem 0;
	border-radius: 12px;
	overflow: hidden; */
}

.fg-section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.fg-section-title {
	font-size: 2.5rem;
	color: #2d6a4f;
	margin-bottom: 1rem;
}

.fg-section-subtitle {
	font-size: 1.125rem;
	color: #666666;
	max-width: 600px;
	margin: 0 auto;
}

/* === КОМАНДА === */
.fg-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.fg-team-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

.fg-team-card:hover {
	transform: translateY(-5px);
}

.fg-team-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 1.5rem;
	background: #f4a261;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: bold;
	color: #ffffff;
}

.fg-team-avatar img {
	width: 100%;
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
}

.fg-team-name {
	font-size: 1.25rem;
	color: #2d6a4f;
	margin-bottom: 0.5rem;
}

.fg-team-role {
	color: #666666;
	font-style: italic;
}

/* === ФОРМЫ === */
.fg-form {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fg-form-group {
	margin-bottom: 1.5rem;
}

.fg-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: #333333;
}

.fg-form-input,
.fg-form-textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.fg-form-input:focus,
.fg-form-textarea:focus {
	outline: none;
	border-color: #2d6a4f;
	box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.fg-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.fg-form-error {
	color: #dc2626;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.fg-form-error.active {
	display: block;
}

/* === FOOTER === */
.fg-footer {
	background: #f9fafb;
	border-top: 1px solid #e5e7eb;
	padding: 3rem 0 1rem;
}

.fg-footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 2rem;
}

.fg-footer-brand h3 {
	color: #2d6a4f;
	margin-bottom: 1rem;
}

.fg-footer-slogan {
	color: #666666;
	font-style: italic;
}

.fg-footer-menu h4 {
	color: #333333;
	margin-bottom: 1rem;
}

.fg-footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fg-footer-links li {
	margin-bottom: 0.5rem;
}

.fg-footer-links a {
	color: #666666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.fg-footer-links a:hover {
	color: #2d6a4f;
}

.fg-footer-contact h4 {
	color: #333333;
	margin-bottom: 1rem;
}

.fg-contact-info {
	color: #666666;
	margin-bottom: 0.5rem;
}

.fg-contact-info strong {
	color: #333333;
}

.fg-footer-bottom {
	border-top: 1px solid #e5e7eb;
	padding-top: 1rem;
	text-align: center;
	color: #666666;
	font-size: 0.875rem;
}

/* === ТАБЛИЦЫ === */
.fg-table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fg-table th {
	background: #2d6a4f;
	color: #ffffff;
	padding: 1rem;
	text-align: left;
	font-weight: 600;
}

.fg-table td {
	padding: 1rem;
	border-bottom: 1px solid #e5e7eb;
}

.fg-table tr:hover {
	background: #f9fafb;
}

/* === АККОРДЕОН === */
.fg-accordion {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fg-accordion-item {
	border-bottom: 1px solid #e5e7eb;
}

.fg-accordion-item:last-child {
	border-bottom: none;
}

.fg-accordion-header {
	background: none;
	border: none;
	width: 100%;
	padding: 1.5rem;
	text-align: left;
	font-size: 1.125rem;
	font-weight: 600;
	color: #333333;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.fg-accordion-header:hover {
	background: #f9fafb;
}

.fg-accordion-icon {
	font-size: 1rem;
	transition: transform 0.3s ease;
}

.fg-accordion-header.active .fg-accordion-icon {
	transform: rotate(180deg);
}

.fg-accordion-content {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}

.fg-accordion-content.active {
	padding: 1rem 1.5rem 1.5rem;
	max-height: 1500px;
}

/* === ТАБЫ === */
.fg-tabs {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fg-tab-buttons {
	display: flex;
	background: #f9fafb;
	border-bottom: 1px solid #e5e7eb;
}

.fg-tab-button {
	background: none;
	border: none;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	color: #666666;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}

.fg-tab-button:hover {
	color: #2d6a4f;
	background: #ffffff;
}

.fg-tab-button.active {
	color: #2d6a4f;
	background: #ffffff;
	border-bottom-color: #2d6a4f;
}

.fg-tab-content {
	display: none;
	padding: 2rem;
}

.fg-tab-content.active {
	display: block;
}

/* === COOKIE POPUP === */
.fg-cookie-popup {
	position: fixed;
	display: none;
	bottom: -100px;
	left: 20px;
	right: 20px;
	max-width: 500px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 12px;
	padding: 1.5rem;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	z-index: 1002;
	transition: bottom 0.5s ease;
}

.fg-cookie-popup.show {
	bottom: 20px;
	display: block;
}

.fg-cookie-text {
	margin-bottom: 1rem;
	font-size: 0.875rem;
	color: #666666;
}

.fg-cookie-buttons {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

.fg-cookie-link {
	color: #2d6a4f;
	text-decoration: underline;
}

/* === КАРТА === */
.fg-map-container {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
}

.fg-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.fg-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.fg-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.fg-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;
}

/* === АНИМАЦИИ === */
@keyframes fg-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fg-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fg-slideInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.fg-animate-fade-up {
	animation: fg-fadeInUp 0.8s ease-out;
}

.fg-animate-fade-in {
	animation: fg-fadeIn 0.6s ease-out;
}

.fg-animate-slide-right {
	animation: fg-slideInRight 0.8s ease-out;
}

/* === СПИСКИ === */
.fg-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fg-list-item {
	padding: 0.75rem 0;
	border-bottom: 1px solid #e5e7eb;
	/* display: flex;
	align-items: center; */
}

.fg-list-item:last-child {
	border-bottom: none;
}

.fg-list-icon {
	color: #2d6a4f;
	margin-right: 0.75rem;
	font-size: 1.125rem;
}

.fg-list-checkmark::before {
	content: '✓';
	color: #2d6a4f;
	font-weight: bold;
	margin-right: 0.75rem;
}

/* === ХЛЕБНЫЕ КРОШКИ === */
.fg-breadcrumbs {
	padding: 1rem 0;
	font-size: 0.875rem;
	color: #666666;
}

.fg-breadcrumbs a {
	color: #2d6a4f;
	text-decoration: none;
}

.fg-breadcrumbs a:hover {
	text-decoration: underline;
}

.fg-breadcrumb-separator {
	margin: 0 0.5rem;
	color: #999999;
}

/* === СТАТИСТИКА === */
.fg-stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.fg-stat-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.fg-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2d6a4f;
	margin-bottom: 0.5rem;
}

.fg-stat-label {
	color: #666666;
	text-transform: uppercase;
	font-size: 0.875rem;
	letter-spacing: 1px;
}

/* === ЦИТАТЫ === */
.fg-quote {
	background: #f9fafb;
	border-left: 4px solid #2d6a4f;
	padding: 1.5rem;
	margin: 2rem 0;
	border-radius: 0 8px 8px 0;
	font-style: italic;
	position: relative;
}

.fg-quote::before {
	content: '"';
	font-size: 4rem;
	color: #2d6a4f;
	position: absolute;
	top: -10px;
	left: 1rem;
	opacity: 0.3;
}

.fg-quote-author {
	margin-top: 1rem;
	font-weight: 600;
	color: #2d6a4f;
	font-style: normal;
}

/* === ПРОГРЕСС БАР === */
.fg-progress {
	width: 100%;
	height: 8px;
	background: #e5e7eb;
	border-radius: 4px;
	overflow: hidden;
}

.fg-progress-bar {
	height: 100%;
	background: linear-gradient(90deg, #2d6a4f, #40916c);
	transition: width 0.5s ease;
}

/* === УТИЛИТАРНЫЕ КЛАССЫ === */
.fg-text-center {
	text-align: center;
}
.fg-text-left {
	text-align: left;
}
.fg-text-right {
	text-align: right;
}

.fg-mb-0 {
	margin-bottom: 0;
}
.fg-mb-1 {
	margin-bottom: 0.5rem;
}
.fg-mb-2 {
	margin-bottom: 1rem;
}
.fg-mb-3 {
	margin-bottom: 1.5rem;
}
.fg-mb-4 {
	margin-bottom: 2rem;
}

.fg-mt-0 {
	margin-top: 0;
}
.fg-mt-1 {
	margin-top: 0.5rem;
}
.fg-mt-2 {
	margin-top: 1rem;
}
.fg-mt-3 {
	margin-top: 1.5rem;
}
.fg-mt-4 {
	margin-top: 2rem;
}

.fg-p-0 {
	padding: 0;
}
.fg-p-1 {
	padding: 0.5rem;
}
.fg-p-2 {
	padding: 1rem;
}
.fg-p-3 {
	padding: 1.5rem;
}
.fg-p-4 {
	padding: 2rem;
}

.fg-hidden {
	display: none;
}
.fg-visible {
	display: block;
}

.fg-opacity-0 {
	opacity: 0;
}
.fg-opacity-50 {
	opacity: 0.5;
}
.fg-opacity-100 {
	opacity: 1;
}

.fg-rounded {
	border-radius: 8px;
}
.fg-rounded-lg {
	border-radius: 12px;
}
.fg-rounded-full {
	border-radius: 50%;
}

.fg-shadow {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.fg-shadow-lg {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.fg-shadow-none {
	box-shadow: none;
}

/* === СОСТОЯНИЯ ЗАГРУЗКИ === */
.fg-loading {
	position: relative;
	pointer-events: none;
}

.fg-loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid #e5e7eb;
	border-top-color: #2d6a4f;
	border-radius: 50%;
	animation: fg-spin 1s infinite linear;
}

@keyframes fg-spin {
	to {
		transform: rotate(360deg);
	}
}

/* === МЕДИА ЗАПРОСЫ === */
@media (max-width: 1024px) {
	.fg-hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.fg-grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.fg-footer-content {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	.fg-hero-buttons {
		justify-content: center;
	}
}

@media (max-width: 850px) {
	.fg-nav {
		display: none;
	}

	.fg-mobile-menu-toggle {
		display: block;
	}
	.fg-header-cta {
		display: none;
	}
	.fg-header-content {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

@media (max-width: 768px) {
	.fg-hero-text h1 {
		font-size: 2rem;
	}

	.fg-section-title {
		font-size: 2rem;
	}

	.fg-grid-2,
	.fg-grid-3,
	.fg-grid-4 {
		grid-template-columns: 1fr;
	}

	.fg-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.fg-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.fg-btn {
		width: 100%;
		max-width: 300px;
	}

	.fg-tab-buttons {
		flex-wrap: wrap;
	}

	.fg-tab-button {
		flex: 1;
		min-width: 120px;
	}
}

@media (max-width: 480px) {
	.fg-container {
		padding: 0 15px;
	}

	.fg-section {
		padding: 60px 0;
	}

	.fg-hero {
		padding: 120px 0 60px;
	}

	.fg-hero-text h1 {
		font-size: 1.75rem;
		line-height: 1.3;
	}

	.fg-card {
		padding: 1.5rem;
	}

	.fg-form {
		padding: 1.5rem;
	}

	.fg-cookie-popup {
		left: 10px;
		right: 10px;
		bottom: -120px;
	}

	.fg-cookie-popup.show {
		bottom: 10px;
	}

	.fg-cookie-buttons {
		flex-direction: column;
		gap: 0.5rem;
	}

	.fg-team-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.fg-section-title {
		font-size: 1.5rem;
	}

	.fg-tab-buttons {
		flex-direction: column;
	}
}

.fg-legal-container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 120px 20px;
}

.fg-legal-header {
	text-align: center;
	margin-bottom: 50px;
	padding: 40px 0;
	background: linear-gradient(135deg, #2d6a4f 0%, #40916c 100%);
	color: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(45, 106, 79, 0.15);
}

.fg-legal-title {
	font-size: 2.5em;
	font-weight: 700;
	margin-bottom: 15px;
	letter-spacing: -0.02em;
}

.fg-legal-subtitle {
	font-size: 1.2em;
	font-weight: 300;
	opacity: 0.9;
}

.fg-legal-content {
	background: #ffffff;
	border-radius: 12px;
	padding: 50px 40px;
	box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
	margin-bottom: 30px;
}

.fg-legal-section {
	margin-bottom: 40px;
	padding-bottom: 30px;
	border-bottom: 1px solid #e5e7eb;
}

.fg-legal-section:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.fg-legal-section-title {
	font-size: 1.5em;
	font-weight: 600;
	color: #2d6a4f;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.fg-legal-section-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: linear-gradient(135deg, #40916c, #2d6a4f);
	color: white;
	border-radius: 50%;
	font-size: 0.9em;
	font-weight: 700;
	flex-shrink: 0;
}

.fg-legal-text {
	color: #333333;
	margin-bottom: 16px;
}

.fg-legal-list {
	list-style: none;
	padding-left: 0;
	margin-bottom: 16px;
}

.fg-legal-list-item {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	color: #333333;
}

.fg-legal-list-item::before {
	content: '•';
	position: absolute;
	left: 0;
	color: #40916c;
	font-weight: bold;
	font-size: 1.2em;
}

.fg-legal-highlight {
	background: linear-gradient(
		120deg,
		rgba(244, 162, 97, 0.15) 0%,
		rgba(64, 145, 108, 0.15) 100%
	);
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid #40916c;
	margin: 20px 0;
}

.fg-legal-important {
	font-weight: 600;
	color: #2d6a4f;
}

.fg-legal-contact {
	background: linear-gradient(
		135deg,
		rgba(45, 106, 79, 0.05) 0%,
		rgba(64, 145, 108, 0.05) 100%
	);
	padding: 30px;
	border-radius: 12px;
	border: 1px solid rgba(64, 145, 108, 0.2);
	margin-top: 40px;
}

.fg-legal-contact-title {
	font-size: 1.3em;
	font-weight: 600;
	color: #2d6a4f;
	margin-bottom: 20px;
	text-align: center;
}

.fg-legal-contact-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	text-align: center;
}

.fg-legal-contact-item {
	padding: 15px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.fg-legal-contact-label {
	font-size: 0.9em;
	color: #666666;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.fg-legal-contact-value {
	font-weight: 600;
	color: #2d6a4f;
	font-size: 1.1em;
}

.fg-legal-date {
	text-align: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 2px solid #e5e7eb;
	color: #666666;
	font-style: italic;
}

.fg-legal-breadcrumb {
	margin-bottom: 30px;
	font-size: 0.9em;
	color: #666666;
}

.fg-legal-breadcrumb a {
	color: #40916c;
	text-decoration: none;
	font-weight: 500;
}

.fg-legal-breadcrumb a:hover {
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	.fg-legal-title {
		font-size: 2em;
	}

	.fg-legal-content {
		padding: 30px 25px;
	}

	.fg-legal-contact-info {
		grid-template-columns: 1fr;
	}

	.fg-legal-section-title {
		font-size: 1.3em;
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.fg-legal-title {
		font-size: 1.3rem;
	}

	.fg-legal-subtitle {
		font-size: 1.1rem;
	}

	.fg-legal-content {
		padding: 20px 20px;
	}

	.fg-legal-section-title {
		font-size: 1.2em;
	}
}
