@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Regular.ttf') format('truetype');
	font-weight: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat-Bold.ttf') format('truetype');
	font-weight: bold;
}

body {
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	background-color: #f5faff;
	color: #111;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(5px);
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 2rem;
	border-bottom: 1px solid #ddd;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #005f96;
}

.main-nav a {
	margin-left: 2rem;
	text-decoration: none;
	color: #333;
	font-weight: 500;
}

.hero-section {
	background-image: url('../img/hero.jpg');
	background-size: cover;
	background-position: center;
	height: 100vh;
	max-height: 1100px;
	position: relative;
}

.overlay {
	background-color: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-content {
	text-align: center;
	color: #fff;
	padding: 2rem;
}

.hero-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.hero-content p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}

.cta-button {
	display: inline-block;
	padding: 0.75rem 2rem;
	background-color: #00aaff;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-radius: 4px;
	width: 100%;
	max-width: 240px;
	transition: background-color 0.3s;
}

.cta-button:hover {
	background-color: #0077aa;
}

.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	z-index: 1000;
	border-bottom: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.header-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1rem;
}

.logo-burger {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #005f96;
	text-decoration: none;
}

.burger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.burger span {
	width: 25px;
	height: 3px;
	background-color: #333;
	display: block;
	transition: all 0.3s ease;
}

/* Навигация */
.main-nav {
	display: flex;
	gap: 1.5rem;
}

.main-nav a {
	text-decoration: none;
	color: #222;
	font-weight: 500;
	transition: color 0.2s ease;
}

.main-nav a:hover {
	color: #0077aa;
}

/* Адаптив под мобильные устройства */
@media (max-width: 768px) {
	.header-container {
		align-items: flex-start;
	}

	.main-nav {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
		border-top: 1px solid #ddd;
		background-color: #fff;
		padding: 0 1rem;
	}

	.main-nav.active {
		max-height: 300px;
		padding-top: 1rem;
	}

	.burger {
		display: flex;
	}
}

.adventure-section {
	padding: 6rem 1rem 4rem;
	background-color: #f9fbfd;
}

.adventure-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
}

.adventure-text {
	flex: 1 1 40%;
	max-width: 500px;
}

.adventure-text h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.adventure-text p {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.adventure-cards {
	flex: 1 1 50%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: flex-end;
}

.adventure-card {
	width: 100%;
	max-width: 320px;
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.adventure-card img {
	width: 100%;
	height: auto;
	display: block;
}

.caption {
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	color: #333;
	background-color: #f2f6f8;
	font-style: italic;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.adventure-container {
		flex-direction: column;
		align-items: center;
	}

	.adventure-cards {
		align-items: center;
	}
}

.terrain-section {
	padding: 5rem 1rem 4rem;
	background-color: #eef5f9;
}

.terrain-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
}

.terrain-map {
	flex: 1 1 45%;
	text-align: center;
}

.terrain-map img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.terrain-info {
	flex: 1 1 50%;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.terrain-block {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.terrain-block img {
	width: 60px;
	height: 60px;
	object-fit: cover;
	border-radius: 6px;
}

.terrain-block h3 {
	margin: 0 0 0.3rem;
	color: #005f96;
}

.terrain-block p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #333;
}

/* Mobile */
@media (max-width: 768px) {
	.terrain-container {
		flex-direction: column;
	}

	.terrain-block {
		align-items: center;
		text-align: left;
	}
}

/* Scroll reveal base */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.animate-on-scroll.in-view {
	opacity: 1;
	transform: translateY(0);
}

.adventure-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.terrain-block:hover img {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

.terrain-block img {
	transition: transform 0.3s ease;
}

.testimonial-section {
	background-image: url('../img/feedback-bg.jpg');
	background-size: cover;
	background-position: center;
	position: relative;
	padding: 6rem 1rem;
	color: #fff;
}

.testimonial-overlay {
	background-color: rgba(0, 0, 0, 0.55);
	padding: 4rem 1rem;
}

.testimonial-content {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.testimonial-content h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #fff;
}

.highlight-quote {
	font-style: italic;
	font-size: 1.1rem;
	margin-bottom: 3rem;
	color: #cceeff;
}

.testimonial-scroller {
	display: flex;
	overflow-x: auto;
	gap: 1.5rem;
	scroll-snap-type: x mandatory;
	padding-bottom: 1rem;
}

.testimonial-card {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 1.2rem;
	border-radius: 8px;
	min-width: 250px;
	flex: 0 0 auto;
	scroll-snap-align: start;
	color: #fff;
	font-size: 0.95rem;
	backdrop-filter: blur(4px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.testimonial-card:hover {
	transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
	.testimonial-scroller {
		padding-left: 1rem;
	}

	.testimonial-card {
		min-width: 80%;
	}
}

.tips-section {
	background-color: #ffffff;
	padding: 5rem 1rem 4rem;
}

.tips-container h2 {
	text-align: center;
	margin-bottom: 3rem;
	font-size: 2rem;
	color: #005f96;
}

.tips-timeline {
	position: relative;
	margin: 0 auto;
	padding-left: 2rem;
	border-left: 3px solid #00aaff;
	max-width: 800px;
}

.tip-item {
	position: relative;
	margin-bottom: 3rem;
	display: flex;
	gap: 1rem;
	align-items: flex-start;
}

.tip-item img {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
}

.tip-text h3 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
	color: #0077aa;
}

.tip-text p {
	margin: 0;
	font-size: 0.95rem;
	color: #444;
}

/* Mobile */
@media (max-width: 768px) {
	.tips-timeline {
		padding-left: 1rem;
	}

	.tip-item {
		flex-direction: column;
		align-items: flex-start;
	}

	.tip-item img {
		margin-bottom: 0.5rem;
	}
}

.spotlight-section {
	background-color: #f3f7fb;
	padding: 5rem 1rem;
}

.spotlight-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
}

.spotlight-image img {
	max-width: 100%;
	border-radius: 8px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.spotlight-text {
	flex: 1 1 40%;
}

.spotlight-text h2 {
	color: #005f96;
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.spotlight-text p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	margin-bottom: 1rem;
}

.world-section {
	background-color: #ffffff;
	padding: 6rem 1rem;
	text-align: center;
}

.world-container h2 {
	font-size: 2.2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.subtitle {
	font-size: 1.05rem;
	max-width: 700px;
	margin: 0 auto 2rem;
	color: #444;
	line-height: 1.6;
}

.world-stats {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.stat-block h3 {
	font-size: 2.4rem;
	color: #0077aa;
	margin-bottom: 0.3rem;
}

.stat-block p {
	font-size: 1rem;
	color: #555;
}

.world-map-wrapper {
	text-align: center;
	margin-bottom: 3rem;
}

.world-map {
	width: 100%;
	max-width: 800px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.user-stories {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}

.user-story {
	background: #f6fafd;
	padding: 1.5rem 2rem;
	border-left: 5px solid #00aaff;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.user-story h4 {
	color: #005f96;
	margin-bottom: 0.5rem;
	font-size: 1.1rem;
}

.user-story p {
	color: #333;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Mobile adjustments */
@media (max-width: 768px) {
	.world-stats {
		flex-direction: column;
		align-items: center;
	}

	.user-story {
		padding: 1.2rem;
	}
}

.lab-section {
	background-color: #f7fafe;
	padding: 6rem 1rem;
}

.lab-container {
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
	align-items: center;
}

.lab-text {
	flex: 1 1 50%;
}

.lab-text h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.lab-text p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	margin-bottom: 1.5rem;
}

.lab-facts {
	list-style: none;
	padding-left: 0;
}

.lab-facts li {
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
	padding-left: 1.2rem;
	position: relative;
	color: #0077aa;
}

.lab-facts li::before {
	content: '✔';
	position: absolute;
	left: 0;
	color: #00aaff;
}

.lab-image {
	flex: 1 1 45%;
}

.lab-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Mobile */
@media (max-width: 768px) {
	.lab-container {
		flex-direction: column;
	}

	.lab-text {
		text-align: left;
	}
}

.fit-section {
	padding: 6rem 1rem;
	background-color: #f0f7fc;
	text-align: center;
}

.fit-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.fit-intro {
	max-width: 700px;
	margin: 0 auto 3rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #444;
}

.fit-grid {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.fit-card {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
	max-width: 320px;
	transition: transform 0.3s ease;
}

.fit-card:hover {
	transform: translateY(-6px);
}

.fit-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.fit-content {
	padding: 1.5rem;
	text-align: left;
}

.fit-content h3 {
	color: #0077aa;
	margin-bottom: 0.5rem;
}

.fit-content p {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.5;
	margin-bottom: 1rem;
}

.fit-link {
	color: #005f96;
	text-decoration: underline;
	font-weight: bold;
	font-size: 0.95rem;
}

/* Mobile */
@media (max-width: 768px) {
	.fit-card img {
		height: 180px;
	}
}

.collective-section {
	padding: 6rem 1rem;
	background-color: #ffffff;
	text-align: center;
}

.collective-container h2 {
	font-size: 2.2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.collective-intro {
	max-width: 800px;
	margin: 0 auto 3rem;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

.collective-grid {
	display: flex;
	gap: 2rem;
	justify-content: center;
	flex-wrap: wrap;
}

.collective-card {
	background-color: #f0f9ff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
	max-width: 320px;
	text-align: left;
	transition: transform 0.3s ease;
}

.collective-card:hover {
	transform: translateY(-6px);
}

.collective-card h3 {
	color: #0077aa;
	font-size: 1.3rem;
	margin-bottom: 0.75rem;
}

.collective-card p {
	font-size: 0.95rem;
	color: #333;
	margin-bottom: 1rem;
}

.collective-card ul {
	list-style: none;
	padding-left: 0;
	font-size: 0.9rem;
	color: #005f96;
	line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
	.collective-card {
		max-width: 100%;
	}
}

.contact-form {
	background-color: #f5fbff;
	padding: 6rem 1rem;
}

.contact-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 2rem;
}

.contact-header h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.contact-header p {
	font-size: 1rem;
	color: #444;
	line-height: 1.5;
}

.form-wrapper {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.form-wrapper input,
.form-wrapper textarea {
	padding: 1rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 1rem;
	font-family: inherit;
	resize: vertical;
}

.form-wrapper textarea {
	min-height: 150px;
}

.form-checkbox {
	font-size: 0.9rem;
	color: #333;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.form-checkbox a {
	color: #0077aa;
	text-decoration: underline;
}

.cta-button {
	align-self: flex-start;
	padding: 0.75rem 2rem;
	background-color: #00aaff;
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.cta-button:hover {
	background-color: #0077aa;
}

/* Mobile */
@media (max-width: 768px) {
	.form-wrapper {
		padding: 0 1rem;
	}

	.cta-button {
		width: 100%;
		max-width: 240px;
		text-align: center;
	}
}

.footer {
	background-color: #002b3f;
	color: #f2f9ff;
	padding-top: 3rem;
	font-size: 0.95rem;
}

.footer a {
	color: #cceeff;
	text-decoration: none;
	transition: color 0.3s;
}

.footer a:hover {
	color: #ffffff;
}

.footer-main {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2rem;
	padding: 0 1rem 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
	flex: 1 1 250px;
}

.footer-brand h3 {
	color: #00cfff;
	margin-bottom: 0.5rem;
}

.footer-links,
.footer-legal {
	flex: 1 1 160px;
}

.footer-links h4,
.footer-legal h4 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
	color: #80dfff;
}

.footer-links ul,
.footer-legal ul {
	list-style: none;
	padding-left: 0;
	line-height: 1.6;
}

.footer-bottom {
	background-color: #001a27;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	font-size: 0.85rem;
}

.back-to-top {
	background: none;
	border: 1px solid #00cfff;
	color: #00cfff;
	padding: 0.4rem 0.8rem;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.85rem;
	transition: background-color 0.3s;
}

.back-to-top:hover {
	background-color: #00cfff;
	color: #001a27;
}

/* Mobile */
@media (max-width: 768px) {
	.footer-main {
		flex-direction: column;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 0.5rem;
	}

	.back-to-top {
		width: 100%;
		text-align: center;
	}
}

.cta-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	background-color: #00aaff;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-radius: 4px;
	width: 100%;
	max-width: 240px;
	box-sizing: border-box;
	text-align: center;
	overflow-wrap: break-word;
	transition: background-color 0.3s;
}

@media (max-width: 480px) {
	.cta-button {
		font-size: 0.9rem;
		padding: 0.6rem 1rem;
		max-width: 90%;
	}
}

.collection-hero {
	background: linear-gradient(to right, #00334d, #004466);
	color: #fff;
	padding: 10rem 1rem 4rem;
	text-align: center;
}

.collection-hero h1 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
	color: #cceeff;
}

.collection-hero p {
	font-size: 1rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	line-height: 1.6;
	color: #e0f5ff;
}

.category-tags {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.category-tags a {
	background-color: #00aaff;
	color: #fff;
	padding: 0.5rem 1rem;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.3s;
}

.category-tags a:hover {
	background-color: #0077aa;
}

.gear-section {
	padding: 5rem 1rem;
	background-color: #f4f9fc;
	text-align: center;
}

.gear-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.gear-subtitle {
	max-width: 700px;
	margin: 0 auto 3rem;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

.gear-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 2rem;
}

.gear-card {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	padding: 1.5rem;
	transition: transform 0.3s;
	text-align: left;
}

.gear-card:hover {
	transform: translateY(-5px);
}

.gear-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 1rem;
}

.gear-card h3 {
	font-size: 1.1rem;
	color: #0077aa;
	margin-bottom: 0.5rem;
}

.gear-card p {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.4;
}

.checklist-section {
	background-color: #ffffff;
	padding: 5rem 1rem;
}

.checklist-section h2 {
	text-align: center;
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.checklist-intro {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 2rem;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

.checklist-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.checklist-group {
	flex: 1 1 300px;
	background-color: #f4f9fc;
	border-radius: 10px;
	padding: 2rem;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.checklist-group h3 {
	font-size: 1.2rem;
	color: #0077aa;
	margin-bottom: 1rem;
}

.checklist-group ul {
	list-style: none;
	padding-left: 0;
}

.checklist-group li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1rem;
	font-size: 0.95rem;
	color: #333;
}

.checklist-group li span {
	position: absolute;
	left: 0;
	top: 0;
	color: #00aaff;
	font-weight: bold;
}

.compare-section {
	padding: 6rem 1rem;
	background-color: #eef7fb;
	text-align: center;
}

.compare-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.compare-intro {
	max-width: 700px;
	margin: 0 auto 3rem;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

.compare-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.compare-card {
	background-color: #fff;
	border-radius: 10px;
	padding: 2rem;
	max-width: 300px;
	flex: 1 1 260px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.compare-card:hover {
	transform: translateY(-4px);
}

.compare-card h3 {
	font-size: 1.2rem;
	color: #0077aa;
	margin-bottom: 1rem;
}

.compare-card ul {
	list-style: none;
	padding: 0;
	font-size: 0.95rem;
	color: #333;
	line-height: 1.6;
}

.compare-card.highlight {
	border: 2px solid #00aaff;
	box-shadow: 0 6px 16px rgba(0, 170, 255, 0.15);
}

.fieldstories-section {
	background-color: #fefefe;
	padding: 5.5rem 1rem;
	text-align: center;
}

.fieldstories-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.field-intro {
	font-size: 1rem;
	max-width: 700px;
	margin: 0 auto 2.5rem;
	color: #444;
	line-height: 1.6;
}

.fieldstories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.story-card {
	background-color: #f3faff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
	text-align: left;
	transition: transform 0.3s ease;
}

.story-card:hover {
	transform: translateY(-5px);
}

.story-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.story-content {
	padding: 1.2rem 1.5rem;
}

.story-content h4 {
	color: #0077aa;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.story-content p {
	color: #333;
	font-size: 0.95rem;
	line-height: 1.5;
}

.kitbuilder-section {
	background-color: #f4faff;
	padding: 6rem 1rem;
	text-align: center;
}

.kitbuilder-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.kit-intro {
	max-width: 700px;
	margin: 0 auto 2.5rem;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

.kit-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.kit-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	max-width: 320px;
	text-align: left;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease;
}

.kit-card:hover {
	transform: translateY(-6px);
}

.kit-card h3 {
	font-size: 1.2rem;
	color: #0077aa;
	margin-bottom: 1rem;
}

.kit-items {
	display: flex;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.kit-items img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	border-radius: 6px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.kit-card p {
	font-size: 0.95rem;
	color: #333;
	margin-bottom: 1rem;
}

.kit-link {
	font-weight: bold;
	color: #005f96;
	text-decoration: underline;
	font-size: 0.95rem;
}

.origin-section {
	padding: 10rem 1rem;
	background-color: #ffffff;
}

.origin-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-items: center;
}

.origin-image {
	flex: 1 1 40%;
}

.origin-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.origin-text {
	flex: 1 1 55%;
}

.origin-text h1 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.origin-text p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
	margin-bottom: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
	.origin-container {
		flex-direction: column;
	}

	.origin-text {
		text-align: left;
	}
}

.values-section {
	background-color: #f5fbff;
	padding: 6rem 1rem;
	text-align: center;
}

.values-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.values-intro {
	font-size: 1rem;
	max-width: 700px;
	margin: 0 auto 3rem;
	color: #444;
	line-height: 1.6;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
}

.value-card {
	background-color: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.value-card:hover {
	transform: translateY(-4px);
}

.value-card img {
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
}

.value-card h3 {
	font-size: 1.1rem;
	color: #0077aa;
	margin-bottom: 0.5rem;
}

.value-card p {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.5;
}

.behind-section {
	background-color: #ffffff;
	padding: 6rem 1rem;
	text-align: center;
}

.behind-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.behind-intro {
	font-size: 1rem;
	max-width: 700px;
	margin: 0 auto 3rem;
	color: #444;
	line-height: 1.6;
}

.behind-grid {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.behind-step {
	background-color: #f4f9fc;
	padding: 2rem;
	max-width: 320px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	text-align: left;
	transition: transform 0.3s;
}

.behind-step:hover {
	transform: translateY(-5px);
}

.behind-step img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 6px;
	margin-bottom: 1rem;
}

.behind-step h3 {
	color: #0077aa;
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.behind-step p {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.5;
}

.team-section {
	background-color: #f9fbfd;
	padding: 6rem 1rem;
	text-align: center;
}

.team-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.team-intro {
	max-width: 700px;
	margin: 0 auto 3rem;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

.team-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.team-member {
	background-color: #fff;
	border-radius: 10px;
	padding: 2rem;
	max-width: 280px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	text-align: center;
	transition: transform 0.3s;
}

.team-member:hover {
	transform: translateY(-5px);
}

.team-member img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.team-member h3 {
	font-size: 1.1rem;
	color: #0077aa;
	margin-bottom: 0.3rem;
}

.role {
	font-size: 0.9rem;
	color: #555;
	margin-bottom: 0.5rem;
}

.quote {
	font-style: italic;
	font-size: 0.95rem;
	color: #333;
	line-height: 1.4;
}

.commitments-section {
	background-color: #f0f7fc;
	padding: 6rem 1rem;
	text-align: center;
}

.commitments-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.commitments-intro {
	max-width: 700px;
	margin: 0 auto 3rem;
	font-size: 1rem;
	color: #444;
	line-height: 1.6;
}

.commitments-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.commitment-card {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 2rem;
	max-width: 300px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease;
}

.commitment-card:hover {
	transform: translateY(-5px);
}

.commitment-card h3 {
	font-size: 1.1rem;
	color: #0077aa;
	margin-bottom: 0.5rem;
}

.commitment-card p {
	font-size: 0.95rem;
	color: #333;
	line-height: 1.5;
}

.studio-section {
	background-color: #ffffff;
	padding: 6rem 1rem;
	text-align: center;
}

.studio-section h2 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 1rem;
}

.studio-intro {
	font-size: 1rem;
	color: #444;
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.studio-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1rem;
}

.studio-gallery img {
	width: 100%;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
	object-fit: cover;
	height: 200px;
}

.why-section {
	background-color: #002b3f;
	color: #f0faff;
	padding: 6rem 1rem;
	text-align: center;
}

.why-section h2 {
	font-size: 2rem;
	color: #00cfff;
	margin-bottom: 2rem;
}

.why-text {
	font-size: 1.1rem;
	line-height: 1.8;
	max-width: 700px;
	margin: 0 auto;
	font-style: italic;
	white-space: pre-line;
}

.thankyou-section {
	background: linear-gradient(to right, #00334d, #004466);
	color: #fff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 4rem 1rem;
}

.thankyou-container {
	max-width: 600px;
}

.thankyou-title {
	font-size: 2.2rem;
	margin-bottom: 1rem;
	color: #cceeff;
}

.thankyou-message {
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 2rem;
	color: #e0f5ff;
}

.policy-section {
	background-color: #ffffff;
	padding: 6rem 1rem;
	color: #111;
}

.policy-section .container {
	max-width: 800px;
	margin: 0 auto;
}

.policy-section h1 {
	font-size: 2rem;
	color: #005f96;
	margin-bottom: 2rem;
	text-align: center;
}

.policy-section p {
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	color: #333;
}

.policy-section p strong {
	display: block;
	font-size: 1.05rem;
	color: #0077aa;
	margin-bottom: 0.3rem;
}

.policy-section a {
	color: #0077aa;
	text-decoration: underline;
}

@media (max-width: 768px) {
	.policy-section h1 {
		font-size: 1.6rem;
	}

	.policy-section p {
		font-size: 0.95rem;
	}
}
