/* Font Face Declarations */

/* Amstelvar Font Family */
@font-face {
	font-family: 'Amstelvar';
	src: url('./fonts/Amstelvar/Amstelvar-Roman[wdth,wght,opsz].ttf')
		format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Amstelvar';
	src: url('./fonts/Amstelvar/Amstelvar-Italic[wdth,wght,opsz].ttf')
		format('truetype');
	font-weight: 100 900;
	font-style: italic;
	font-display: swap;
}

/* Halyard Display Font Family */
@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_ExtraLight.otf')
		format('opentype');
	font-weight: 200;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_ExtraLight_Italic.otf')
		format('opentype');
	font-weight: 200;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Light.otf')
		format('opentype');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Light_Italic.otf')
		format('opentype');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display Book';
	src: url('./fonts/Halyard-display/Halyard_Display_Book.otf')
		format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display Book';
	src: url('./fonts/Halyard-display/Halyard_Display_Book_Italic.otf')
		format('opentype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Regular.otf')
		format('opentype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Italic.otf')
		format('opentype');
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Medium.otf')
		format('opentype');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Medium_Italic.otf')
		format('opentype');
	font-weight: 500;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_SemiBold.otf')
		format('opentype');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_SemiBold_Italic.otf')
		format('opentype');
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Bold.otf')
		format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Bold_Italic.otf')
		format('opentype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Black.otf')
		format('opentype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Halyard Display';
	src: url('./fonts/Halyard-display/Halyard_Display_Black_Italic.otf')
		format('opentype');
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}

/* Reset and base styles */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;

	/* Brand book colors */
	--pure-white: #ffffff;
	--cotton-white: #fbf9f7;
	--muted-charcoal: #282223;
	--blue-aura: #adbed3;
	--meadowland-green: #9b9b5b;

	/* New added colors */
	--soft-pearl: #e5e0dd;
	--ivory-blush: #f4ede1;
	--rose-sand: #dac6bf;
	--slate-gray: #707070;

	/* Font sizes */
	--font-size-base: 22px;
	--font-size-xl: 35px;
	--font-size-xxl: 70px;
}

body {
	font-family: 'Halyard Display', 'Halyard Display Book', 'Amstelvar',
		sans-serif;
	line-height: 1.6;
	color: var(--muted-charcoal);
	background-color: var(--pure-white);
	font-size: 16px;
	font-weight: 400;
	scroll-behavior: smooth;
}

.container {
	max-width: 1920px;
	margin: 0 auto;
}

/* Hero Section */
.hero {
	color: var(--muted-charcoal);
	text-align: left;
	max-width: 1920px;
	aspect-ratio: 1920/936;
	padding: 280px 150px 120px;
	margin: 0 auto;
	position: relative;
}

.hero .container {
	width: 900px;
	position: relative;
	z-index: 2;
	margin: 0;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 55%;
	z-index: -1;
	will-change: auto;
	backface-visibility: hidden;
	transform: translateZ(0);
}

/* CSS fallback for responsive images - works even without JavaScript */
@media (max-width: 767px) {
	.hero-background {
		/* This will be overridden by JavaScript, but provides a fallback */
		content: url('https://static.snackeet.com/snackeet_assets/solcotton_v2/4P3A1034ok_batcheditor_fotor%20(2).webp');
	}
}

.hero-title {
	font:
		normal normal 400 72px/99px 'Halyard Display Book',
		sans-serif;
	margin-bottom: 24px;
	letter-spacing: 3.5px;

	b {
		font:
			normal normal 500 72px/99px 'Halyard Display',
			sans-serif;
	}
}

.hero-subtitle {
	font:
		normal normal 300 35px/50px 'Halyard Display',
		sans-serif;
	letter-spacing: 2px;
	margin-bottom: 50px;
}

.cta-button {
	background-color: var(--blue-aura);
	color: var(--muted-charcoal);
	/* border: 1px solid var(--cotton-white); */
	padding: 20px 24px;
	border-radius: 4px;
	font:
		normal normal 400 35px/50px 'Halyard Display',
		sans-serif;
	cursor: pointer;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
	0% {
		transform: translateX(-50%) rotate(180deg) translateY(0);
	}
	25% {
		transform: translateX(-50%) rotate(180deg) translateY(-15px);
	}
	50% {
		transform: translateX(-50%) rotate(180deg) translateY(0);
	}
	75% {
		transform: translateX(-50%) rotate(180deg) translateY(-8px);
	}
	100% {
		transform: translateX(-50%) rotate(180deg) translateY(0);
	}
}

.icon-button {
	width: 120px;
	height: 80px;
	background-color: var(--cotton-white);
	mask-image: url('./assets/Icons/noun-chevron-3976805.svg');
	mask-size: cover;
	mask-position: center;
	position: absolute;
	bottom: 120px;
	left: 50%;
	transform: translateX(-50%) rotate(180deg);
	animation: bounce 2s infinite;
	z-index: 2;
}

/* Main Content */

.introduction-section {
	padding: 160px 185px 110px;
	background-color: var(--cotton-white);
	max-width: 1680px;
	margin: 0 auto;
	text-align: left;
	display: flex;
	justify-content: flex-end;

	.intro-wrapper {
		.cta-button {
			margin-top: 20px;
			font-size: 22px;
			line-height: 30px;
			padding: 12px 24px;
		}
	}
}

.introduction-logo {
	width: 327px;
	height: auto;
	margin-bottom: 40px;
}

.introduction-text {
	font:
		normal normal 500 35px/50px 'Amstelvar',
		sans-serif;
	letter-spacing: 0px;
	margin-bottom: 20px;
	color: var(--muted-charcoal);
}

.introduction-description {
	font:
		normal normal 300 30px/42px 'Halyard Display',
		sans-serif;
	color: var(--muted-charcoal);
	letter-spacing: 0.45px;
	max-width: 660px;
}

/* Why Section */
.why-section {
	color: var(--muted-charcoal);
	max-width: 1920px;
	min-height: 1800px;
	text-align: left;
	padding: 160px 150px 140px;
	margin: 0 auto;
	position: relative;
}

.why-section-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
	will-change: auto;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.why-section-answer {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: -460px;
	left: 180px;
}

.why-section-answer-image {
	width: 604px;
	height: 693px;
	object-fit: cover;
	margin-bottom: 40px;
}

.why-section-answer-content {
	padding-left: 25px;

	.cta-button {
		margin-top: 20px;
		font-size: 22px;
		line-height: 30px;
		padding: 12px 24px;
	}
}

.why-section-answer-title {
	font:
		normal normal 400 45px/99px 'Amstelvar',
		sans-serif;
	letter-spacing: 2.25px;
	color: var(--muted-charcoal);
	margin-bottom: 30px;
}

.why-section-answer-description-title {
	font:
		normal normal 500 35px/50px 'Amstelvar',
		sans-serif;
	letter-spacing: 0px;
	color: var(--muted-charcoal);
	margin-bottom: 10px;
}

.why-section-answer-description {
	font:
		normal normal 300 30px/42px 'Halyard Display',
		sans-serif;
	letter-spacing: 0.45px;
	color: var(--muted-charcoal);
	max-width: 710px;
}

.why-section-join {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 153px;
	right: 110px;

	.cta-button {
		align-self: flex-start;
		margin-top: 20px;
		font-size: 22px;
		line-height: 30px;
		padding: 12px 24px;
	}
}

.why-section-join-title {
	font:
		normal normal 400 45px/99px 'Amstelvar',
		sans-serif;
	letter-spacing: 2.25px;
	color: var(--muted-charcoal);
	margin-bottom: 10px;
}

.why-section-join-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.why-section-join-item {
	display: flex;
	align-items: center;
	padding-left: 50px;
	gap: 10px;
}

.why-section-join-item-image {
	width: 39px;
	height: 48px;
	mask-image: url('./assets/Icons/noun-stars-1354331.svg');
	mask-size: cover;
	mask-position: center;
	background-color: var(--meadowland-green);
	margin-top: 10px;
}

.why-section-join-item-description {
	font:
		normal normal 300 30px/42px 'Halyard Display',
		sans-serif;
	letter-spacing: 0.45px;

	b {
		font:
			italic normal 400 30px/42px 'Halyard Display Book',
			sans-serif;
		letter-spacing: 0.45px;
	}
}

/* Info Cards */
.info-cards {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--cotton-white);
	gap: 110px;

	padding: 100px;
}

.info-card {
	width: 721px;
	height: 890px;
	background: var(--ivory-blush);
}

.card-image {
	width: 783px;
	height: 650px;
	margin: -30px 0px 60px -30px;
	position: relative;

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.card-image-text-overlay {
		position: absolute;
		width: 100%;
		bottom: 42px;
		text-align: center;
	}

	.card-image-text-overlay h3 {
		color: var(--black);
		font:
			normal normal 400 41px/58px 'Amstelvar',
			sans-serif;
		letter-spacing: 2.05px;
	}

	.card-image-text-overlay h3 em {
		color: var(--black);
		font:
			italic normal normal 41px/49px 'Amstelvar',
			sans-serif;
		letter-spacing: 2.05px;
	}
}

.info-card-list-wrapper {
	width: 100%;
	padding: 0 10px;
}

.info-card-list {
	padding-left: 80px;
	list-style-type: decimal;

	li {
		font:
			normal normal 300 30px/42px 'Halyard Display',
			sans-serif;
		letter-spacing: 0.45px;
		color: var(--muted-charcoal);
	}

	li::marker {
		font:
			italic normal normal 38px/45px 'Amstelvar',
			sans-serif;
		letter-spacing: 1.9px;
		text-transform: uppercase;
		color: var(--muted-charcoal);
	}
}

/* Missions Section */
.missions-section {
	max-width: 1920px;
	padding: 80px 140px;
	text-align: center;
	position: relative;
}

.missions-section-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
	will-change: auto;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.missions-section-title {
	color: var(--pure-white);
	text-align: center;
	font:
		normal normal 400 40px/50px 'Amstelvar',
		sans-serif;
	letter-spacing: 2px;
	margin-bottom: 40px !important;
}

.missions-section-content {
	min-height: 400px;
}

/* Application Section */
.application-section {
	width: 100%;
	overflow: hidden;
}

.application-container {
	width: 100%;
	position: relative;
}

.application-image-section {
	width: 1564px;
	transform: translateX(-305px);
}

.application-image-section img {
	max-width: 100%;
}

.application-content-section {
	width: 1165px;
	position: absolute;
	right: 0px;
	top: 83px;
	background-color: var(--cotton-white);
	padding: 96px;

	.cta-button {
		margin-top: 20px;
		font:
			normal normal 400 30px/45px 'Halyard Display Book',
			sans-serif;
		letter-spacing: 1.35px;
		padding: 12px 24px;
	}
}

.application-content-section img {
	width: 160px;
	margin-bottom: 47px;
}

.application-content-section h2 {
	text-align: left;
	font:
		normal normal 300 40px/99px 'Amstelvar',
		sans-serif;
	letter-spacing: 2px;
}

.application-content-section h2 em {
	text-align: left;
	font:
		italic normal 400 40px/99px 'Amstelvar',
		sans-serif;
	letter-spacing: 2px;
}

.application-content-section-description {
	text-align: left;
	font:
		normal normal 500 30px/45px 'Halyard Display',
		sans-serif;
	letter-spacing: 0px;
	margin: 0px 0px 19px;
}

.application-content-section-description-list {
	display: grid;
	grid-template-columns: 46px 1fr;
	margin-left: 47px;
	margin-bottom: 26px;
}

.application-content-section-description-list .star {
	width: 46px;
	height: 48px;
	background-color: var(--meadowland-green);
	mask-image: url('./assets/Icons/noun-stars-1354331.svg');
	mask-size: cover;
	mask-position: center;
	margin-top: 14px;
}

.application-content-section-description-list p {
	max-width: 760px;
	text-align: left;
	font:
		normal normal 300 28px/39px 'Halyard Display',
		sans-serif;
	letter-spacing: 0.42px;
}

.application-footer {
	text-align: center;
	margin: 80px auto 80px;
}

.application-footer-quote {
	text-align: center;
	font:
		italic normal 400 40px/48px 'Amstelvar',
		sans-serif;
	letter-spacing: 2px;
}

.application-footer-description {
	text-align: center;
	font:
		normal normal 300 40px/56px 'Halyard Display',
		sans-serif;
	letter-spacing: 0.6px;
}

/* Ambassador Section */
.ambassador-section {
	width: 100%;
	text-align: center;
	background-color: var(--rose-sand);
	padding: 60px 0px 80px;

	.cta-button {
		margin-top: 40px;
		font-size: 22px;
		line-height: 30px;
		padding: 12px 24px;
	}
}

.ambassador-section-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 60px;
}

.ambassador-section-title h2 {
	color: var(--cotton-white);
	font:
		normal normal 300 60px/99px 'Amstelvar',
		sans-serif;
	letter-spacing: 3px;
}

.ambassador-section-title h2 em {
	font:
		italic normal 400 60px/99px 'Amstelvar',
		sans-serif;
	letter-spacing: 3px;
}

.ambassador-section-title-heart {
	width: 58px;
	height: 76px;
	background-color: var(--cotton-white);
	mask-image: url('./assets/Icons/noun-heart-3612331.svg');
	mask-size: cover;
	mask-position: center;
	margin-top: 18px;
}

.ambassador-grid {
	display: grid;
	grid-template-columns: repeat(3, 370px);
	justify-content: center;
	gap: 40px;
}

.ambassador-card {
	width: 370px;
	height: auto;
}

.ambassador-video {
	width: 100%;
	height: 100%;
}

.ambassador-video {
	position: relative;
	width: 100%;
	height: 100%;
}

.ambassador-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
}

.play-button-overlay {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 2;
}

.play-button-overlay:hover {
	transform: translate(-50%, -50%) scale(1.1);
}

.play-button-overlay img {
	width: 150px;
	height: 150px;
	filter: brightness(0) invert(1);
}

.play-button-overlay.playing {
	opacity: 0 !important;
	pointer-events: none !important;
	visibility: hidden !important;
}

/* Team Knowledge Section */
.team-section {
	text-align: center;
	background-color: var(--cotton-white);
	padding: 80px 0px 80px;
}

.team-section h2 {
	text-align: center;
	font:
		normal normal 400 40px/56px 'Amstelvar',
		sans-serif;
	letter-spacing: 0px;
}

.team-section h3 {
	text-align: center;
	font:
		normal normal 300 40px/56px 'Amstelvar',
		sans-serif;
	letter-spacing: 0.6px;
}

.team-profiles {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.profile {
	width: 560px;
	background-color: var(--ivory-blush);
	padding: 28px;
	border-radius: 4px;
}

.profile-header {
	display: flex;
	align-items: center;
	gap: 25px;
	text-align: left;
}

.profile-avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.profile-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-info h4 {
	color: var(--muted-charcoal);
	font:
		italic normal 400 25px/34px 'Amstelvar',
		sans-serif;
	letter-spacing: 1.125px;
}

.profile-info p {
	color: var(--muted-charcoal);
	font:
		normal normal 300 25px/34px 'Halyard Display',
		sans-serif;
	letter-spacing: 0.375px;
	color: var(--muted-charcoal);
}

.profile-content {
	padding: 28px;
}

.profile-content p {
	text-align: left;
	color: var(--muted-charcoal);
	font:
		normal normal 300 22px/30px 'Halyard Display',
		sans-serif;
	letter-spacing: 0.375px;
}

/* FAQ Section */
.faq-section {
	padding: 80px 0px 80px;
	position: relative;
}

.faq-section-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
	will-change: auto;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.faq-section h2 {
	color: var(--muted-charcoal);
	text-align: center;
	font:
		normal normal 400 60px/85px 'Amstelvar',
		sans-serif;
	letter-spacing: 0px;
	margin-bottom: 0px;
}

.faq-subtitle {
	color: var(--muted-charcoal);
	text-align: center;
	font:
		normal normal 300 40px/56px 'Halyard Display',
		sans-serif;
	letter-spacing: 0.6px;
	margin-top: 0px;
}

.faq-content {
	width: 100%;
	margin: 55px auto 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

/* Ensure accordion items are properly styled within FAQ content */
.faq-content .accordion-item {
	width: 100%;
	max-width: 1087px;
}

/* FAQ Accordion Styles - Matching Original FAQ Design */
.accordion-item {
	margin-bottom: 40px;
	border-radius: 4px;
	overflow: hidden;
	width: 1087px;
	background: rgba(255, 255, 255, 0.6) 0% 0% no-repeat padding-box;
	background: rgba(255, 255, 255, 0.6) 0% 0% no-repeat padding-box;
}

.accordion-button {
	width: 100%;
	background: transparent;
	border: none;
	padding: 46px 44px 20px 44px;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	transition: all 0.3s ease;
}

.accordion-button.collapsed {
	padding-bottom: 46px;
}

.accordion-button:focus {
	outline: none;
	background: transparent;
}

.accordion-button:active {
	background: transparent;
}

.accordion-button:hover {
	background: transparent;
}

.accordion-button h3 {
	color: var(--muted-charcoal);
	font:
		normal normal 500 28px/39px 'Amstelvar',
		sans-serif;
	letter-spacing: 0.42px;
	margin: 0 0 8px 0;
	flex: 1;
}

.accordion-icon {
	font-size: 32px;
	font-weight: bold;
	color: var(--muted-charcoal);
	margin-left: 20px;
	margin-top: -5px;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: transparent;
}

.accordion-content.active {
	max-height: 500px;
}

.accordion-content-inner {
	padding: 0 44px 46px 44px;
}

.accordion-content-inner ul {
	padding-left: 20px;
	list-style-type: decimal;
	margin-left: 10px;
}

.accordion-content-inner li {
	color: var(--muted-charcoal);
	text-align: left;
	font:
		normal normal 300 28px/39px 'Halyard Display',
		sans-serif;
	letter-spacing: 0.42px;
	margin-bottom: 0;
}

.accordion-content-inner p {
	color: var(--muted-charcoal);
	text-align: left;
	font:
		normal normal 300 28px/39px 'Halyard Display',
		sans-serif;
	letter-spacing: 0.42px;
	margin: 0;
}

/* Footer */
.footer {
	max-width: 1920px;
	margin: 0 auto;
	background-color: var(--cotton-white);
	padding: 80px 140px 60px;
}

.footer-content {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 100px;
	margin-bottom: 30px;
}

.footer-right-sections {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 80px;
	margin-top: 20px;
}

.footer-section img {
	width: 300px;
	margin-bottom: 28px;
}

.footer-section-quote {
	color: var(--muted-charcoal);
	text-align: left;
	font:
		italic normal 400 20px/24px 'Amstelvar',
		sans-serif;
	letter-spacing: 1px;
}

.footer-section h4 {
	margin-bottom: 20px;
	color: #ecf0f1;
}

.footer-section a {
	text-decoration: none;
	color: var(--muted-charcoal);
	text-align: left;
	font:
		normal normal 400 30px/45px 'Halyard Display Book',
		sans-serif;
	letter-spacing: 1.5px;
}

.footer-section-contact {
	color: var(--muted-charcoal);
	text-align: left;
	font:
		normal normal 400 30px/45px 'Halyard Display Book',
		sans-serif;
	letter-spacing: 1.5px;
	margin-bottom: 8px;
}

.footer-section-contact-info {
	color: var(--muted-charcoal);
	text-align: left;
	font:
		normal normal 300 25px/45px 'Halyard Display',
		sans-serif;
	letter-spacing: 1.25px;
}

.footer-section-follow {
	color: var(--muted-charcoal);
	text-align: left;
	font:
		normal normal 400 30px/45px 'Halyard Display Book',
		sans-serif;
	letter-spacing: 1.5px;
}

.social-links {
	display: flex;
	gap: 16px;
	margin-top: 16px;
}

.social-icon {
	width: 45px;
	height: 45px;
	background-color: var(--muted-charcoal);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;

	img {
		width: 30px !important;
		height: 30px !important;
		margin: 0;
		filter: brightness(0) invert(1);
	}

	&.instagram {
		img {
			width: 28px !important;
			height: 28px !important;
		}
	}
}

.footer-bottom {
	color: var(--muted-charcoal);
	text-align: center;
	font:
		normal normal 200 20px/29px 'Halyard Display',
		sans-serif;
	letter-spacing: 1px;
	margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1920px) {
	.container {
		max-width: 100%;
		padding: 0 20px;
	}

	.hero {
		padding: 220px 100px 100px;
		aspect-ratio: 1920/936;
		position: relative;

		.cta-button {
			font-size: 24px;
			line-height: 32px;
			padding: 16px 24px;
		}

		.icon-button {
			bottom: 60px;
		}
	}

	.hero-background {
		object-position: 50% 50%;
	}

	.hero-title {
		font-size: 50px;
		line-height: 70px;
		letter-spacing: 3px;
		margin-bottom: 16px;

		b {
			font-size: 50px;
			line-height: 70px;
			letter-spacing: 3px;
		}
	}

	.hero-subtitle {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 32px;
	}

	.introduction-section {
		width: 100%;
		padding: 120px 100px 80px;
		display: flex;
		justify-content: flex-end;

		.intro-wrapper {
			width: 45%;
		}
	}

	.introduction-text {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: 0.1px;
		margin-bottom: 12px;
	}

	.introduction-description {
		font-size: 24px;
		line-height: 32px;
	}

	.why-section {
		padding: 120px 100px 100px;
		min-height: 1600px;
	}

	.why-section-background {
		object-position: center;
	}

	.why-section-answer {
		right: 0px;
		width: 45%;
		left: 100px;
	}

	.why-section-answer-image {
		margin-left: 10px;
		max-width: 80%;
	}

	.why-section-answer-title {
		font-size: 36px;
		line-height: 45px;
		letter-spacing: 1.8px;
		margin-bottom: 12px;
	}

	.why-section-answer-description-title {
		font-size: 28px;
		line-height: 38px;
		margin-bottom: 12px;
	}

	.why-section-answer-description {
		font-size: 24px;
		line-height: 32px;
		max-width: 90%;
	}

	.why-section-join {
		right: 60px;
		bottom: 100px;
	}

	.why-section-join-title {
		font-size: 28px;
		line-height: 38px;
		margin-bottom: 12px;
	}

	.why-section-join-item {
		padding-left: 16px;
		gap: 12px;
	}

	.why-section-join-item-description {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 0.1px;
	}

	.why-section-join-item-description b {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 0.1px;
	}

	.why-section-join-item-image {
		width: 30px;
		height: 44px;
	}

	.info-cards {
		padding: 80px 60px;
		gap: 80px;
	}

	.info-card {
		max-width: 40%;
		height: 750px;
	}

	.card-image {
		max-width: 110%;
		height: 550px;
		margin-bottom: 20px;

		.card-image-text-overlay h3 {
			font-size: 28px;
			line-height: 38px;
		}

		.card-image-text-overlay h3 em {
			font-size: 28px;
			line-height: 38px;
		}
	}

	.info-card-list {
		li {
			font-size: 24px;
			line-height: 32px;
		}

		li::marker {
			font-size: 24px;
			line-height: 32px;
		}
	}

	.missions-section {
		padding: 60px 100px;
	}

	.application-content-section {
		max-width: 65%;
		padding: 40px;

		.cta-button {
			font-size: 24px;
			line-height: 36px;
			padding: 6px 12px;
		}
	}

	.application-content-section img {
		width: 120px;
		margin-bottom: 20px;
	}

	.application-content-section h2 {
		font-size: 36px;
		line-height: 45px;
		letter-spacing: 1.8px;
		margin-bottom: 20px;
	}

	.application-content-section-description {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 15px;
	}

	.application-content-section-description-list {
		margin-left: 0;
		margin-bottom: 20px;
		text-align: left;
	}

	.application-content-section-description-list .star {
		width: 30px;
		height: 36px;
		margin-top: 6px;
	}

	.application-content-section-description-list p {
		font-size: 22px;
		line-height: 30px;
		max-width: 100%;
	}

	.application-image-section {
		width: 1200px;
		transform: translateX(-200px);
	}

	.application-footer {
		margin: 60px auto 60px;
	}

	.application-footer-quote {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
	}

	.application-footer-description {
		font-size: 24px;
	}

	.ambassador-section-title h2 {
		font-size: 36px;
		line-height: 45px;
		letter-spacing: 1.8px;
	}

	.ambassador-section-title h2 em {
		font-size: 36px;
		line-height: 45px;
		letter-spacing: 1.8px;
	}

	.ambassador-section-title-heart {
		width: 36px;
		height: 40px;
		margin-top: 12px;
	}

	.ambassador-grid {
		grid-template-columns: repeat(3, 300px);
		gap: 30px;
	}

	.ambassador-card {
		width: 300px;
	}

	.play-button-overlay {
		width: 90px;
		height: 90px;
	}

	.play-button-overlay img {
		width: 135px;
		height: 135px;
	}

	.team-section {
		padding: 60px 0px 60px;
	}

	.team-section h2 {
		font-size: 36px;
		line-height: 45px;
		letter-spacing: 1.8px;
	}

	.team-section h3 {
		font-size: 28px;
		line-height: 36px;
	}

	.profile {
		max-width: 40%;
	}

	.profile-header {
		gap: 15px;
	}

	.profile-avatar {
		width: 60px;
		height: 60px;
	}

	.profile-info h4 {
		font-size: 18px;
		line-height: 24px;
		letter-spacing: 0.05px;
	}

	.profile-info p {
		font-size: 18px;
		line-height: 24px;
		letter-spacing: 0.05px;
	}

	.profile-content {
		padding-left: 16px;
	}

	.profile-content p {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.05px;
	}

	.faq-section {
		padding: 60px 100px 60px;
	}

	.faq-section h2 {
		font-size: 36px;
		line-height: 45px;
		letter-spacing: 1.8px;
	}

	.faq-subtitle {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
	}

	.faq-content {
		gap: 24px;
		margin-top: 24px;
	}

	/* FAQ Accordion Responsive */
	.accordion-item {
		width: 100%;
		max-width: 80%;
	}

	.accordion-button {
		padding: 30px 32px 20px 32px;
	}

	.accordion-button.collapsed {
		padding-bottom: 30px;
	}

	.accordion-button h3 {
		font-size: 22px;
		line-height: 32px;
		letter-spacing: 1.2px;
	}

	.accordion-icon {
		font-size: 28px;
	}

	.accordion-content-inner {
		padding: 0 32px 30px 32px;
	}

	.accordion-content-inner li,
	.accordion-content-inner p {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 0.1px;
	}

	.footer {
		padding: 60px 80px 40px;
	}

	.footer-section {
		gap: 40px;
	}

	.footer-section img {
		width: 200px;
		margin-bottom: 16px;
	}

	.footer-section-quote {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.1px;
	}

	.footer-section-contact {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 0.1px;
	}

	.footer-section a {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 0.1px;
	}

	.footer-section-contact-info {
		font-size: 20px;
		line-height: 30px;
		letter-spacing: 0.1px;
	}

	.footer-section-follow {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 0.1px;
	}

	.social-links {
		gap: 12px;
		margin-top: 10px;
	}

	.social-icon {
		width: 30px;
		height: 30px;
		background-color: var(--muted-charcoal);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;

		img {
			width: 20px !important;
			height: 20px !important;
			margin: 0;
			filter: brightness(0) invert(1);
		}

		&.instagram {
			img {
				width: 16px !important;
				height: 16px !important;
			}
		}
	}

	.footer-content {
		gap: 80px;
	}

	.footer-right-sections {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 80px;
	}

	.footer-bottom {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.05px;
	}
}

@media (max-width: 1024px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		padding-top: 140px;
		padding-left: 80px;
		position: relative;

		.container {
			max-width: 500px;
		}

		.cta-button {
			font-size: 20px;
			line-height: 28px;
			padding: 6px 12px;
		}
	}

	.hero::before {
		background-color: rgba(251, 249, 247, 0.4);
	}

	.hero-background {
		object-position: 50% 50%;
	}

	.hero-title {
		font-size: 30px;
		line-height: 45px;
		letter-spacing: 1.8px;
		margin-bottom: 0px;
	}

	.hero-title b {
		font-size: 30px;
		line-height: 45px;
		letter-spacing: 1.8px;
	}

	.hero-subtitle {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 1.2px;
		margin-bottom: 16px;
	}

	.icon-button {
		width: 60px;
		height: 60px;
		bottom: 80px;
		z-index: 2;
	}

	.introduction-section {
		padding: 120px 60px;
		display: flex;
		justify-content: flex-end;

		.intro-wrapper {
			width: 50%;
		}
	}

	.introduction-logo {
		width: 250px;
		margin-bottom: 30px;
	}

	.introduction-text {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 12px;
	}

	.introduction-description {
		font-size: 20px;
		line-height: 28px;
	}

	.why-section {
		padding: 120px 60px;
		min-height: 1200px;
	}

	.why-section-answer {
		top: -340px;
		left: 60px;
	}

	.why-section-answer-image {
		max-height: 500px;
	}

	.why-section-answer-title {
		font-size: 28px;
		line-height: 38px;
	}

	.why-section-answer-description-title {
		font-size: 24px;
		line-height: 32px;
	}

	.why-section-answer-description {
		font-size: 20px;
		line-height: 28px;
	}

	.why-section-join {
		right: 60px;
	}

	.why-section-join-title {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 12px;
	}

	.why-section-join-item {
		padding-left: 16px;
		gap: 12px;
	}

	.why-section-join-item-description {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 0.1px;
	}

	.why-section-join-item-description b {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 0.1px;
	}

	.why-section-join-item-image {
		width: 24px;
		height: 36px;
	}

	.info-cards {
		width: 100%;
		align-items: stretch;
	}

	.info-card {
		width: unset;
		height: unset;
		padding-bottom: 20px;
	}

	.card-image {
		width: 100%;
		height: 300px;
		margin: 0px 0px 16px;

		.card-image-text-overlay {
			bottom: 20px;
		}

		.card-image-text-overlay h3 {
			font-size: 20px;
			line-height: 28px;
		}

		.card-image-text-overlay h3 em {
			font-size: 20px;
			line-height: 28px;
		}
	}

	.info-card-list {
		padding-left: 40px;
	}

	.info-card-list li {
		font-size: 18px;
	}

	.missions-section {
		padding: 60px 30px;
	}

	.missions-section-title {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: 1.6px;
	}

	.application-content-section {
		top: 50px;
	}

	.application-content-section img {
		width: 100px;
		margin-bottom: 20px;
	}

	.application-content-section h2 {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: 1.6px;
		margin-bottom: 15px;
	}

	.application-content-section h2 em {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: 1.6px;
	}

	.application-content-section-description {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 15px;
	}

	.application-content-section-description-list {
		margin-bottom: 20px;
	}

	.application-content-section-description-list p {
		font-size: 22px;
		line-height: 30px;
	}

	.application-button {
		font-size: 24px;
		line-height: 36px;
		padding: 6px 10px;
	}

	.application-footer-quote {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
	}

	.application-footer-description {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 0.1px;
	}

	.ambassador-section-title h2 {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: 1.6px;
	}

	.ambassador-section-title-heart {
		width: 32px;
		height: 40px;
	}

	.ambassador-grid {
		grid-template-columns: repeat(3, 270px);
		gap: 10px;
	}

	.ambassador-card {
		max-width: 270px;
		margin: 0 auto;
	}

	.team-section {
		padding: 40px 30px;
	}

	.team-section h2 {
		font-size: 36px;
		line-height: 45px;
		letter-spacing: 1.8px;
	}

	.team-section h3 {
		font-size: 28px;
		line-height: 38px;
		letter-spacing: 1.4px;
	}

	.team-profiles {
		display: flex;
		justify-content: center;
		gap: 24px;
		margin-top: 16px;
	}

	.profile {
		margin: 0;
	}

	.profile-header {
		gap: 12px;
	}

	.profile-avatar {
		width: 48px;
		height: 48px;
	}

	.profile-info h4 {
		font-size: 18px;
		line-height: 24px;
		letter-spacing: 0.1px;
	}

	.profile-info p {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.05px;
	}

	.profile-content {
		padding: 12px;
	}

	.profile-content p {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.05px;
	}

	.footer {
		padding: 40px 30px;
	}

	.footer-content {
		display: flex;
		gap: 40px;
		justify-content: space-evenly;
	}

	.footer-section-quote {
		max-width: 320px;
	}

	.footer-right-sections {
		display: flex;
		gap: 40px;
	}

	.footer-section {
		margin: 0px !important;
	}

	.footer-section a {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.05px;
	}

	.footer-section-contact {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.05px;
	}

	.footer-section-contact-info {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.05px;
	}

	.footer-section-follow {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.05px;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	.hero {
		padding: 80px 30px 60px;
		min-height: 500px;
		aspect-ratio: unset;
		text-align: center;
		position: relative;
	}

	.hero-background {
		object-position: 50% 50%;
	}

	.hero::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(251, 249, 247, 0.6);
		z-index: 1;
	}

	.hero .container {
		width: 100%;
		height: 100%;
		position: relative;
		margin: 0 auto;
		z-index: 2;
	}

	.hero-title {
		font-size: 40px;
		line-height: 50px;
		letter-spacing: 2px;
		margin-bottom: 30px;
	}
	.hero-title b {
		font-size: 40px;
		line-height: 50px;
		letter-spacing: 2px;
		margin-bottom: 30px;
	}

	.hero-subtitle {
		font-size: 24px;
		line-height: 32px;
		max-width: 100%;
		margin-bottom: 40px;
	}

	.cta-button {
		font-size: 24px;
		line-height: 36px;
		padding: 12px 24px;
	}

	.icon-button {
		width: 80px;
		height: 60px;
		bottom: 120px;
		z-index: 2;
		display: none;
	}

	.introduction-section {
		padding: 80px 30px 60px;
		text-align: center;

		.intro-wrapper {
			width: 100%;
		}
	}

	.introduction-logo {
		width: 250px;
		margin: 0px auto 30px;
	}

	.introduction-text {
		max-width: 100%;
		font-size: 28px;
		line-height: 38px;
		margin-bottom: 15px;
	}

	.introduction-description {
		font-size: 24px;
		line-height: 32px;
		max-width: 100%;
	}

	.why-section {
		padding: 80px 30px 60px;
		min-height: 1000px;
		text-align: center;
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 60px;
	}

	.why-section-background {
		object-position: center;
	}

	.why-section-answer {
		position: initial;
		max-width: 100%;
		width: 100%;
		display: flex;
		flex-direction: row;
		gap: 20px;
		text-align: left;
		background: rgba(var(--pure-white), 0.6) 0% 0% no-repeat padding-box;
		background: rgba(255, 255, 255, 0.6) 0% 0% no-repeat padding-box;
		padding: 16px;
	}

	.why-section-answer-image {
		width: 100%;
		height: 260px;
		margin: 0px;
	}

	.why-section-answer-content {
		max-width: 100%;
		padding-left: 0;
	}

	.why-section-answer-title {
		font-size: 36px;
		line-height: 45px;
		letter-spacing: 1.8px;
	}

	.why-section-answer-description-title {
		font-size: 28px;
		line-height: 38px;
	}

	.why-section-answer-description {
		font-size: 24px;
		line-height: 32px;
		max-width: 100%;
	}

	.why-section-join {
		position: relative;
		bottom: 0;
		left: 0;
		background: rgba(var(--pure-white), 0.6) 0% 0% no-repeat padding-box;
		background: rgba(255, 255, 255, 0.6) 0% 0% no-repeat padding-box;
		padding: 16px;
	}

	.why-section-join-title {
		font-size: 36px;
		line-height: 45px;
		letter-spacing: 1.8px;
	}

	.why-section-join-item {
		padding-left: 30px;
		gap: 15px;
	}

	.why-section-join-item-description {
		font-size: 24px;
		line-height: 32px;
	}

	.why-section-join-item-description b {
		font-size: 24px;
		line-height: 32px;
	}

	.info-cards {
		width: 100%;
		flex-direction: column;
		padding: 60px 30px;
		gap: 40px;
	}

	.info-card {
		width: 100%;
		max-width: unset;
		display: flex;
		flex-direction: row;
		gap: 20px;
		padding: 16px;
	}

	.card-image {
		width: 220px;
		min-width: 220px;
		height: 160px;
		margin: 0;

		img {
			width: 220px;
			height: 160px;
			object-fit: cover;
		}
	}

	.info-card-list {
		padding-left: 40px;
		padding-bottom: 0px;
	}

	.info-card-list li {
		font-size: 24px;
		line-height: 32px;
	}

	.missions-section {
		padding: 60px 30px;
	}

	.missions-section-title {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: 1.6px;
	}

	.application-container {
		display: flex;
		flex-direction: column;
	}

	.application-image-section {
		display: none;
	}

	.application-image-section img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.application-content-section {
		position: initial;
		width: 100%;
		max-width: 100%;
		padding: 40px 30px;
		text-align: left;
	}

	.application-content-section img {
		width: 120px;
		margin-bottom: 30px;
	}

	.application-content-section h2 {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: 1.6px;
		margin-bottom: 20px;
	}

	.application-content-section-description {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 15px;
	}

	.application-content-section-description-list {
		margin-left: 0;
		margin-bottom: 20px;
		text-align: left;
	}

	.application-content-section-description-list p {
		font-size: 22px;
		line-height: 30px;
		max-width: 100%;
	}

	.application-button {
		font-size: 24px;
		line-height: 36px;
		padding: 12px 24px;
	}

	.application-footer {
		margin: 60px auto 60px;
		padding: 0 30px;
	}

	.application-footer-quote {
		font-size: 22px;
		line-height: 30px;
		letter-spacing: 1.2px;
	}

	.application-footer-description {
		font-size: 20px;
		line-height: 28px;
		transform: none;
	}

	.ambassador-section {
		padding: 40px 30px 60px;
	}

	.ambassador-section-title {
		margin-bottom: 16px;
	}

	.ambassador-section-title h2 {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
	}

	.ambassador-section-title h2 em {
		font-size: 24px;
		line-height: 32px;
	}

	.ambassador-grid {
		display: flex;
		flex-direction: row;
		gap: 30px;
	}

	.ambassador-card {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}

	.play-button-overlay {
		width: 50px;
		height: 50px;
	}

	.play-button-overlay img {
		width: 120px;
		height: 120px;
	}

	.team-section {
		padding: 60px 30px;
	}

	.team-section h2 {
		font-size: 32px;
		line-height: 40px;
	}

	.team-section h3 {
		font-size: 28px;
		line-height: 36px;
	}

	.team-profiles {
		flex-direction: column;
		gap: 30px;
	}

	.profile {
		width: 100%;
		max-width: 100%;
		margin: 20px auto 0;
	}

	.profile-header {
		gap: 15px;
	}

	.profile-avatar {
		width: 60px;
		height: 60px;
	}

	.profile-info h4 {
		font-size: 18px;
		line-height: 26px;
		letter-spacing: 0.9px;
	}

	.profile-info p {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.8px;
	}

	.profile-content {
		padding: 15px;
	}

	.profile-content p {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.8px;
	}

	.faq-section {
		padding: 40px 20px;
	}

	.faq-section h2 {
		font-size: 32px;
		line-height: 40px;
	}

	.faq-subtitle {
		font-size: 24px;
		line-height: 32px;
	}

	/* FAQ Accordion Responsive */
	.accordion-button {
		padding: 30px 32px;
	}

	.accordion-button h3 {
		font-size: 22px;
		line-height: 32px;
		letter-spacing: 1.2px;
	}

	.accordion-icon {
		font-size: 28px;
	}

	.accordion-content-inner {
		padding: 0 32px 30px;
	}

	.accordion-content-inner li,
	.accordion-content-inner p {
		font-size: 20px;
		line-height: 28px;
		letter-spacing: 0.1px;
	}

	.footer {
		padding: 40px 20px 30px;
	}

	.footer-content {
		display: flex;
		flex-direction: row;
		gap: 30px;
		justify-content: space-evenly;
	}

	.footer-right-sections {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px 30px;
	}

	.footer-section {
		margin: 0px !important;
	}

	.footer-section img {
		width: 180px;
		margin-bottom: 14px;
	}

	.footer-section-quote {
		max-width: 300px;
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.7px;
	}

	.footer-section a,
	.footer-section-contact,
	.footer-section-follow {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.8px;
	}

	.footer-section-contact {
		margin-bottom: 0px;
	}

	.footer-section-contact-info {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.8px;
	}

	.social-icon {
		width: 30px;
		height: 30px;
		background-color: var(--muted-charcoal);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;

		img {
			width: 20px !important;
			height: 20px !important;
			margin: 0;
			filter: brightness(0) invert(1);
		}

		&.instagram {
			img {
				width: 16px !important;
				height: 16px !important;
			}
		}
	}

	.footer-bottom {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.7px;
		margin-top: 30px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 10px;
	}

	.hero {
		padding: 60px 20px 40px;
		min-height: 500px;
		position: relative;
	}

	.hero-background {
		object-position: 50% 34%;
	}

	.hero::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(251, 249, 247, 0.6);
		z-index: 1;
	}

	.hero-title {
		font-size: 32px;
		line-height: 40px;
		letter-spacing: 1.6px;
		margin-bottom: 25px;

		b {
			font-size: 32px;
			line-height: 40px;
			letter-spacing: 1.6px;
		}
	}

	.hero-subtitle {
		font-size: 20px;
		line-height: 26px;
		margin-bottom: 30px;
	}

	.cta-button {
		font-size: 20px;
		line-height: 30px;
		padding: 10px 20px;
	}

	.icon-button {
		width: 60px;
		height: 40px;
		bottom: 60px;
		z-index: 2;
	}

	.introduction-section {
		padding: 60px 20px 40px;

		.intro-wrapper {
			width: 100%;
		}

		.cta-button {
			margin-top: 20px;
			font-size: 16px;
			line-height: 24px;
			padding: 6px 12px;
		}
	}

	.introduction-logo {
		width: 200px;
		margin-bottom: 25px;
	}

	.introduction-text {
		font-size: 24px;
		line-height: 32px;
		margin-bottom: 15px;
	}

	.introduction-description {
		font-size: 20px;
		line-height: 28px;
	}

	.why-section {
		position: relative;
		padding: 60px 20px 40px;
		min-height: 1000px;
	}

	.why-section-background {
		object-position: center;
	}

	.why-section-answer {
		flex-direction: column;
		gap: 16px;
	}

	.why-section-answer-content {
		width: 100%;

		.cta-button {
			display: block;
			margin: 16px auto 0px;
			font-size: 16px;
			line-height: 24px;
			padding: 6px 12px;
		}
	}

	.why-section-answer-image {
		width: 100%;
		max-width: 100%;
		height: 200px;
		margin: 0px;
		object-fit: cover;
	}

	.why-section-answer-title {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
		margin-bottom: 12px;
	}

	.why-section-answer-description-title {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 8px;
	}

	.why-section-answer-description {
		font-size: 16px;
		line-height: 24px;
	}

	.why-section-join {
		.cta-button {
			display: block;
			margin: 16px auto 0px;
			font-size: 16px;
			line-height: 24px;
			padding: 6px 12px;
		}
	}

	.why-section-join-title {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
		margin-bottom: 12px;
	}

	.why-section-join-item {
		flex-direction: column;
		gap: 12px;
		padding: 0px;
	}

	.why-section-join-item-description {
		font-size: 20px;
		line-height: 28px;
	}

	.why-section-join-item-description b {
		font-size: 20px;
		line-height: 28px;
	}

	.info-cards {
		padding: 40px 20px;
		gap: 30px;
	}

	.info-card {
		flex-direction: column;
		gap: 12px;
	}

	.card-image {
		width: 100%;
		min-width: 100%;
		height: 200px;

		img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.card-image-text-overlay {
			bottom: 12px;
		}

		.card-image-text-overlay h3 {
			font-size: 22px;
			line-height: 30px;
		}

		.card-image-text-overlay h3 em {
			font-size: 22px;
			line-height: 30px;
		}
	}

	.info-card-list {
		padding-left: 30px;
		padding-bottom: 12px;
	}

	.info-card-list li {
		font-size: 18px;
		line-height: 26px;
	}

	.info-card-list li::marker {
		font-size: 18px;
		line-height: 26px;
	}

	.missions-section {
		padding: 40px 20px;
	}

	.missions-section-title {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
		margin-bottom: 12px;
	}

	.application-content-section {
		padding: 30px 20px;
		align-items: center;
		text-align: center;
	}

	.application-content-section img {
		width: 100px;
		margin: 0px auto 16px;
	}

	.application-content-section h2 {
		text-align: center;
		font-size: 26px;
		line-height: 34px;
		letter-spacing: 1.4px;
	}

	.application-content-section h2 em {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
	}

	.application-content-section-description {
		font-size: 20px;
		line-height: 28px;
		text-align: center;
	}

	.application-content-section-description b {
		font-size: 20px;
		line-height: 28px;
	}

	.application-content-section-description-list {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
	.application-content-section-description-list p {
		font-size: 18px;
		line-height: 26px;
		text-align: center;
	}

	.application-button {
		display: block;
		font-size: 20px;
		line-height: 30px;
		padding: 10px 20px;
		margin: 0px auto;
	}

	.application-footer {
		margin: 40px auto 40px;
		padding: 0 12px;
	}

	.application-footer-quote {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.8px;
	}

	.application-footer-description {
		font-size: 16px;
		line-height: 24px;
	}

	.ambassador-section {
		padding: 30px 20px 40px;

		.cta-button {
			margin-top: 40px;
			font-size: 16px;
			line-height: 24px;
			padding: 6px 12px;
		}
	}

	.ambassador-section-title h2 {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
	}

	.ambassador-section-title h2 em {
		font-size: 24px;
		line-height: 32px;
		letter-spacing: 1.2px;
	}

	.ambassador-section-title-heart {
		display: none;
	}

	.ambassador-grid {
		gap: 10px;
	}

	.play-button-overlay {
		width: 45px;
		height: 45px;
	}

	.play-button-overlay img {
		width: 105px;
		height: 105px;
	}

	.team-section {
		padding: 40px 20px;
	}

	.team-section h2 {
		font-size: 24px;
		line-height: 32px;
	}

	.team-section h3 {
		font-size: 20px;
		line-height: 28px;
	}

	.team-profiles {
		margin-top: 16px;
		gap: 16px;
	}

	.profile {
		max-width: 100%;
		padding: 20px;
		margin-top: 0px;
	}

	.profile-header {
		gap: 12px;
	}

	.profile-avatar {
		width: 60px;
		height: 60px;
	}

	.profile-info h4 {
		font-size: 18px;
		line-height: 26px;
		letter-spacing: 0.9px;
	}

	.profile-info p {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.7px;
	}

	.profile-content {
		padding: 15px;
	}

	.profile-content p {
		font-size: 14px;
		line-height: 20px;
	}

	.faq-section {
		padding: 30px 20px;
	}

	.faq-section h2 {
		font-size: 24px;
		line-height: 36px;
	}

	.faq-subtitle {
		font-size: 20px;
		line-height: 28px;
	}

	/* FAQ Accordion Responsive */
	.accordion-item {
		width: 100%;
		max-width: 100%;
	}

	.accordion-button {
		padding: 25px 20px 20px 20px;
	}

	.accordion-button.collapsed {
		padding-bottom: 25px;
	}

	.accordion-button h3 {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.8px;
	}

	.accordion-icon {
		font-size: 24px;
	}

	.accordion-content-inner {
		padding: 0 20px 25px 20px;
	}

	.accordion-content-inner li,
	.accordion-content-inner p {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.7px;
	}

	.footer {
		padding: 40px 20px 30px;
	}

	.footer-content {
		display: flex;
		flex-direction: column;
		gap: 30px;
		justify-content: space-evenly;
		align-items: center;
	}

	.footer-right-sections {
		display: flex;
		gap: 20px;
		justify-content: center;
		flex-wrap: wrap;
		margin-top: 0px;
	}

	.footer-section {
		margin: 0px !important;
		text-align: center;
	}

	.footer-section img {
		width: 70%;
		margin: 0px auto 16px;
	}

	.footer-section-quote {
		max-width: 100%;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0.8px;
		text-align: center;
	}

	.footer-section a,
	.footer-section-contact,
	.footer-section-follow {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.8px;
	}

	.footer-section-contact {
		margin-bottom: 0px;
	}

	.footer-section-contact-info {
		font-size: 16px;
		line-height: 24px;
		letter-spacing: 0.8px;
	}

	.footer-section-follow {
		text-align: center;
	}

	.social-icon {
		width: 30px;
		height: 30px;
		background-color: var(--muted-charcoal);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;

		img {
			width: 20px !important;
			height: 20px !important;
			margin: 0;
			filter: brightness(0) invert(1);
		}

		&.instagram {
			img {
				width: 16px !important;
				height: 16px !important;
			}
		}
	}

	.footer-bottom {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: 0.7px;
		margin-top: 30px;
	}
}
