.box {
	width: 100%;
	/* height: 4621px; */
}

.box .primary-sitemap {
	width: 100%;
	/* height: 4621px; */
	top: 0;
	left: 0;
}

.box .home {
	/* height: 4621px; */
}

.box .div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	width: 100%;
}

.box .navbar {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 72px;
	align-items: center;
	justify-content: center;
	padding: 0px 64px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.3); /* Initially transparent */
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-color: transparent; /* Hide border initially */
	transition: background-color 0.3s ease, border-color 0.3s ease, height 0.5s ease;
}

.box .navbar .search-icon,
.box .navbar .lang-icon,
.box .navbar .down-icon{
    filter: invert(1); /* Make SVG icons white */
}
.box .navbar.scrolled .search-icon,
.box .navbar.scrolled .lang-icon,
.box .navbar.scrolled .down-icon {
    filter: none; /* Remove invert filter to show black icons */
}

.box .navbar .link-text,
.box .navbar .search-input::placeholder {
    color: #ffffff;
    transition: color 0.3s ease;
}
/* Change text color to black when scrolled */
.box .navbar.scrolled .link-text,
.box .navbar.scrolled .search-input::placeholder {
    color: #000000;
}

/* Change text color to black when scrolled */
.box .navbar .link:hover .link-text,
.box .navbar .link-2:hover .link-text {
    color: #000000;
}

.box .navbar .link-2:hover .down-icon{
	filter: none;
}
.box .navbar.scrolled {
    background-color: #ffffff;
    /* border-color: #000000; */
	height: 55px;
}

/* Navbar Container (Flex layout for items) */
.container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* Space between logo, links, and search */
	width: 100%;
	max-width: 1200px;
}


/* Logo Section */
.content {
	margin-right: 20px;
	/* Spacing between logo and links */
}

/* Navigation Links (Center) */
.column {
	display: flex;
	gap: 20px;
	/* Space between links */
	justify-content: center;
	flex: 1;
	/* Makes it take remaining space */
}

/* Search Container (Right) */
.search-container {
	display: flex;
	align-items: center;
	position: relative;
	transition: all 0.3s ease;
	/* Smooth transition for the active class */
}

/* Search Button */
.search-button {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
	/* Smooth animation */
}

/* Search Input (Initially Hidden) */
.search-input {
	width: 0;
	opacity: 0;
	padding: 8px;
	border: 1px solid #000000;
	outline: none;
	transition: width 0.3s ease, opacity 0.3s ease;
	/* Animate width and opacity */
	background-color: transparent;
	z-index: 999;
}

/* Expanded State: Show and expand the search input */
.search-container.active .search-input {
	width: 200px;
	/* Expanded width */
	opacity: 1;
	/* Make it visible */
}
.search-icon {
    width: 24px;
    height: 24px;
}
.down-icon {
    width: 24px;
    height: 24px;
}
.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    display: none; /* Initially hidden */
    padding: 8px; /* Ensures consistent padding */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Hide it visually */
    transition: opacity 0.3s ease; /* Smooth transition */
}

/* Ensure the search-submit image matches the search button size */
.search-submit img {
    width: 20px;
    height: 20px;
}

/* When search is active, show the submit button */
.search-container.active .search-submit {
    display: flex;
    opacity: 1;
}


/* Move the search icon slightly to the left when active */
.search-container.active .search-button {
	display: none;
	/* transform: translateX(-15px); */
	/* Shift the button slightly */
}
.search-container.active .search-submit {
    display: block; /* Show submit button when active */
}
.lang-dropdown {
    position: relative;
}

.lang-button {
    background: none;
    border: none;
    cursor: pointer;
    /* padding: 8px; */
}

.lang-icon {
    width: 24px;
    height: 24px;
}

.lang-menu {
    display: none;
    position: absolute;
    left: 45px;
    top: 0px;
    background: transparent;
    border: 1px solid #ffffff;
    overflow: hidden;
    z-index: 1000;
}

.lang-option {
    padding: 10px;
    cursor: pointer;
    text-align: center;
	color:white;
	font-family: var(--text-regular-medium-font-family);
	font-weight: var(--text-regular-medium-font-weight);
	font-size: var(--text-regular-medium-font-size);
	letter-spacing: var(--text-regular-medium-letter-spacing);
	line-height: var(--text-regular-medium-line-height);
	font-style: var(--text-regular-medium-font-style);
}

.box .navbar.scrolled
.lang-option{
	color: black;
    background-color: #f0f0f0;
}

.box .navbar.scrolled
.lang-menu{
	border: 1px solid black;
}
.box .container {
	align-items: center;
	justify-content: center;
	gap: 32px;
	align-self: stretch;
	width: 100%;
	display: flex;
	position: relative;
	flex: 0 0 auto;
}

.box .content {
	display: flex;
	align-items: flex-start;
	position: relative;
	flex: 1;
	flex-grow: 1;
}

.box .company-logo {
	position: relative;
	width: 150px;
	height: 70px;
}

.box .column {
	display: inline-flex;
	align-items: center;
	gap: 32px;
	position: relative;
	flex: 0 0 auto;
}

.box .link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	position: relative;
	flex: 0 0 auto;
}

.box .link-text {
	position: relative;
	width: fit-content;
	margin-top: -1.00px;
	font-family: var(--text-regular-normal-font-family);
	font-weight: var(--text-medium-extra-bold-font-weight);
	color: var(--semantic-link-primary);
	font-size: var(--text-regular-normal-font-size);
	letter-spacing: var(--text-regular-normal-letter-spacing);
	line-height: var(--text-regular-normal-line-height);
	white-space: nowrap;
	font-style: var(--text-regular-normal-font-style);
}

.box .link-2 {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	position: relative;
	flex: 0 0 auto;
}

.link, .link-2 {
    position: relative;
    padding: 24px;
    /* border-radius: 5px; */
    transition: background-color 0.3s ease;
}

.link:hover, .link-2:hover {
    background-color: white;
    cursor: pointer;
}

.box .nav-link-dropdown {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .img {
	position: relative;
	width: 24px;
	height: 24px;
}

.box .actions {
	all: unset;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	position: relative;
	flex: 1;
	flex-grow: 1;
}

.box .button {
	all: unset;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 8px 20px;
	position: relative;
	flex: 0 0 auto;
	margin-top: -2.00px;
	margin-bottom: -2.00px;
	margin-right: -2.00px;
	/* background-color: var(--primitive-color-neutral-black); */
	border: 1px solid;
	border-color: var(--primitive-color-neutral-black);
	color: white;
}

.search-icon {
	width: 16px;
	/* Adjust the icon size */
	height: 16px;
}

.box .text-wrapper {
	all: unset;
	box-sizing: border-box;
	position: relative;
	width: fit-content;
	margin-top: -1.00px;
	margin-left: -1.00px;
	font-family: var(--text-regular-normal-font-family);
	font-weight: var(--text-regular-normal-font-weight);
	color: #ffffff;
	font-size: var(--text-regular-normal-font-size);
	letter-spacing: var(--text-regular-normal-letter-spacing);
	line-height: var(--text-regular-normal-line-height);
	white-space: nowrap;
	font-style: var(--text-regular-normal-font-style);
}

.box .header {
	height: 900px;
	padding: 0px 64px;
	background-image: url('https://pub-80122b49e3a344d687932e93ea07a818.r2.dev/20250204011059508.jpg');
	display: flex;
	width: 100%;
	align-items: center;
	position: relative;
	background-color: #00000080;
	background-size: cover;
	background-position: 50% 50%;
}

.box .column-2 {
	display: flex;
	flex-direction: column;
	width: 560px;
	align-items: flex-start;
	gap: 32px;
	position: relative;
}

.box .content-2 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .medium-length-hero {
	position: relative;
	align-self: stretch;
	margin-top: -1.00px;
	font-family: var(--heading-desktop-h1-font-family);
	font-weight: var(--heading-desktop-h1-font-weight);
	color: #ffffff;
	font-size: var(--heading-desktop-h1-font-size);
	letter-spacing: var(--heading-desktop-h1-letter-spacing);
	line-height: var(--heading-desktop-h1-line-height);
	font-style: var(--heading-desktop-h1-font-style);
}
.box .medium-length-hero .highlight {
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 0 5px;
}



.box .lorem-ipsum-dolor {
	position: relative;
	align-self: stretch;
	font-family: var(--text-medium-normal-font-family);
	font-weight: var(--text-medium-normal-font-weight);
	color: #ffffff;
	font-size: var(--text-medium-normal-font-size);
	letter-spacing: var(--text-medium-normal-letter-spacing);
	line-height: var(--text-medium-normal-line-height);
	font-style: var(--text-medium-normal-font-style);
}

.box .actions-2 {
	display: inline-flex;
	align-items: flex-start;
	gap: 16px;
	position: relative;
	flex: 0 0 auto;
}

.box .button-wrapper {
	all: unset;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	position: relative;
	flex: 0 0 auto;
	margin-top: -2.00px;
	margin-bottom: -2.00px;
	margin-left: -2.00px;
	background-color: var(--primitive-color-neutral-white);
	border: 1px solid;
	border-color: var(--primitive-color-neutral-white);
}

.box .button-2 {
	all: unset;
	box-sizing: border-box;
	position: relative;
	width: fit-content;
	margin-top: -1.00px;
	margin-left: -1.00px;
	font-family: var(--text-regular-normal-font-family);
	font-weight: var(--text-regular-normal-font-weight);
	color: #000000;
	font-size: var(--text-regular-normal-font-size);
	letter-spacing: var(--text-regular-normal-letter-spacing);
	line-height: var(--text-regular-normal-line-height);
	white-space: nowrap;
	font-style: var(--text-regular-normal-font-style);
}

.box .div-wrapper {
	all: unset;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	position: relative;
	flex: 0 0 auto;
	margin-top: -1.00px;
	margin-bottom: -1.00px;
	margin-right: -1.00px;
	border: 1px solid;
	border-color: var(--primitive-color-neutral-white);
}

.box .button-3 {
	all: unset;
	box-sizing: border-box;
	position: relative;
	width: fit-content;
	font-family: var(--text-regular-normal-font-family);
	font-weight: var(--text-regular-normal-font-weight);
	color: #ffffff;
	font-size: var(--text-regular-normal-font-size);
	letter-spacing: var(--text-regular-normal-letter-spacing);
	line-height: var(--text-regular-normal-line-height);
	white-space: nowrap;
	font-style: var(--text-regular-normal-font-style);
}

.box .layout {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: flex-start;
	gap: 80px;
	padding: 112px 64px;
	position: relative;
	flex: 0 0 auto;
	background-color: #ffffff;
}

.box .section-title {
	display: flex;
	flex-direction: column;
	max-width: 768px;
	/* Allow it to shrink on smaller screens */
	width: 100%;
	/* Make it responsive */
	align-items: flex-start;
	gap: 16px;
	position: relative;
	flex: 0 0 auto;
}

/* Ensure no extra space on mobile */
@media (max-width: 768px) {
	.box .section-title {
		width: 100%;
		text-align: center;
		/* Center text for better readability */
		align-items: center;
	}

	.box .content-2 {
		text-align: center;
	}
}

.box .tagline-wrapper {
	display: inline-flex;
	align-items: center;
	position: relative;
	flex: 0 0 auto;
}

.box .tagline {
	position: relative;
	width: fit-content;
	margin-top: -1.00px;
	font-family: var(--heading-desktop-tagline-font-family);
	font-weight: var(--heading-desktop-tagline-font-weight);
	color: #000000;
	font-size: var(--heading-desktop-tagline-font-size);
	letter-spacing: var(--heading-desktop-tagline-letter-spacing);
	line-height: var(--heading-desktop-tagline-line-height);
	white-space: nowrap;
	font-style: var(--heading-desktop-tagline-font-style);
}

.box .heading {
	font-size: var(--heading-desktop-h2-font-size);
	line-height: var(--heading-desktop-h2-line-height);
	position: relative;
	align-self: stretch;
	margin-top: -1.00px;
	font-family: var(--heading-desktop-h2-font-family);
	font-weight: var(--heading-desktop-h2-font-weight);
	color: #000000;
	letter-spacing: var(--heading-desktop-h2-letter-spacing);
	font-style: var(--heading-desktop-h2-font-style);
}

.box .text {
	align-self: stretch;
	font-family: var(--text-medium-normal-font-family);
	font-weight: var(--text-medium-normal-font-weight);
	font-size: var(--text-medium-normal-font-size);
	line-height: var(--text-medium-normal-line-height);
	position: relative;
	color: #000000;
	letter-spacing: var(--text-medium-normal-letter-spacing);
	font-style: var(--text-medium-normal-font-style);
}

/* Wrapper for the carousel */
.carousel-wrapper {
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	/* Hide overflow to create a sliding effect */
	width: 100%;
}

/* Row containing the items */
.row-wrapper {
	overflow: hidden;
	/* Prevent scrollbar */
	width: 100%;
}

/* Items inside the row */
.row {
	display: flex;
	gap: 70px;
	transition: transform 0.5s ease;
	width: max-content;
	/* Force horizontal layout */
}

body::-webkit-scrollbar {
	display: none;
}

body {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.div-2 {
	position: relative;
	/* min-width: 550px; */
	/* Ensures a reasonable width */
	width: 25vw;
	border: 1px solid black;
	/* Responsive width, adjusts based on viewport */
	max-width: 600px;
	/* Prevents it from becoming too large */
	height: 300px;
	overflow: hidden;
	flex-shrink: 0;
	/* Ensures it does not shrink */
}

.div-2 a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
	/* Ensure no underlines */
	color: inherit;
	/* Ensure text inside links has proper color */
}

.placeholder-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.div-2 .content-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
  padding: 20px 10px;
	align-items: flex-start;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	/* Allow clicking through to the link */
}

.div-2:hover .placeholder-image {
	transform: scale(1.1);
	filter: brightness(95%);
}

.div-2:hover .content-2 {
	opacity: 1;
}

.heading-2,
.p {
	margin: 0; /* Remove vertical spacing */
	text-align: left; /* Align to left */
	color: #c6c1c1;
	transition: transform 0.4s ease;
}

.heading-2 {
  font-size: var(--heading-desktop-h5-font-size, 16px); /* Keep global style with a fallback */
  line-height: var(--heading-desktop-h5-line-height, 1.2); /* Ensure compact spacing */
  font-family: var(--heading-desktop-h5-font-family, sans-serif);
  font-weight: var(--heading-desktop-h5-font-weight, 400);
  letter-spacing: var(--heading-desktop-h5-letter-spacing, 0);
  font-style: var(--heading-desktop-h5-font-style, normal);
	color: #ccc;
  margin-bottom: 0; /* Remove space below heading */
}

.p {
	font-size: var(--text-tiny-normal-font-size, 16px); /* Keep global style with a fallback */
  line-height: var(--text-tiny-normal-line-height, 1.2); /* Ensure compact spacing */
  font-family: var(--text-tiny-normal-font-family, sans-serif);
  font-weight: var(--text-tiny-normal-font-weight, 400);
  letter-spacing: var(--text-tiny-normal-letter-spacing, 0);
  font-style: var(--text-tiny-normal-font-style, normal);
	font-size: 20px; /* Keep it readable but compact */
	line-height: 1.2; /* Reduce extra space */
	margin-top: -5px; /* Remove space above paragraph */
}

.div-2:hover .heading-2,
.div-2:hover .p {
	transform: translateY(0);
}



/* Arrow buttons for carousel navigation */
.carousel-arrow {
	position: absolute;
	top: 50%;
	z-index: 2;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	border: none;
	padding: 12px;
	font-size: 24px;
	cursor: pointer;
	transform: translateY(-50%);
}

.carousel-arrow.left {
	left: 0;
}

.carousel-arrow.right {
	right: 0;
}

/* Media query for laptops (3 items) */
@media (min-width: 768px) {
	.div-2 {
		flex: 0 0 calc(100% / 3 - 16px);
		/* 3 items on laptop */
	}
}

.carousel-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(222, 219, 219, 0.5);
	cursor: pointer;
	transition: background 0.3s ease;
}

.carousel-dot.active {
	background: #8B0000;
	transform: scale(1.2);
}


.box .actions-3 {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	position: relative;
	flex: 0 0 auto;
}

.box .button-4 {
	all: unset;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	position: relative;
	flex: 0 0 auto;
	margin-top: -1.00px;
	margin-bottom: -1.00px;
	margin-left: -1.00px;
	border: 1px solid;
	border-color: var(--primitive-color-neutral-black);
}

.box .button-5 {
	all: unset;
	box-sizing: border-box;
	position: relative;
	width: fit-content;
	font-family: var(--text-regular-normal-font-family);
	font-weight: var(--text-regular-normal-font-weight);
	color: #000000;
	font-size: var(--text-regular-normal-font-size);
	letter-spacing: var(--text-regular-normal-letter-spacing);
	line-height: var(--text-regular-normal-line-height);
	white-space: nowrap;
	font-style: var(--text-regular-normal-font-style);
}

.box .button-6 {
	all: unset;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	flex: 0 0 auto;
}

.box .div-wrapper-2 {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	gap: 40px;
	/* Reduced gap for better spacing */
	padding: 10vw 5vw;
	/* Responsive padding */
	position: relative;
	flex: 0 0 auto;
	background-color: #ffffff;
}


.box .content-3 {
	display: flex;
	align-items: flex-start;
	gap: 40px;
	width: 100%;
	flex-wrap: nowrap;
	/* Prevent wrapping by default */
	justify-content: flex-start;
}

/* Mobile: Stack text above the image */
@media (max-width: 768px) {
	.box .content-3 {
		flex-direction: column;
		/* Stack elements vertically */
		align-items: center;
		/* Center content */
	}

	.box .content-4 {
		width: 100%;
		/* Full width */
		text-align: center;
	}

	.box .placeholder-image-2 {
		width: 100%;
		/* Ensure image takes full width */
	}
}

.box .content-4 {
	display: flex;
	flex-direction: column;
	width: 100%;
	/* Full width on smaller screens */
	max-width: 420px;
	/* Limits max width */
	align-items: flex-start;
	gap: 24px;
	/* Slightly reduced gap */
}

.box .text-2,
.box .text-wrapper-2,
.box .text-wrapper-3 {
	white-space: normal;
	/* Allows text to wrap */
}

.box .content-5 {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	position: relative;
	flex: 0 0 auto;
}

.box .tag {
	display: inline-flex;
	align-items: flex-start;
	padding: 4px 8px;
	position: relative;
	flex: 0 0 auto;
	background-color: var(--semantic-background-color-secondary);
}

.box .text-2 {
	width: fit-content;
	margin-top: -1.00px;
	font-family: var(--text-small-semi-bold-font-family);
	font-weight: var(--text-small-semi-bold-font-weight);
	font-size: var(--text-small-semi-bold-font-size);
	line-height: var(--text-small-semi-bold-line-height);
	white-space: nowrap;
	position: relative;
	color: #000000;
	letter-spacing: var(--text-small-semi-bold-letter-spacing);
	font-style: var(--text-small-semi-bold-font-style);
}

.box .text-wrapper-2 {
	width: fit-content;
	white-space: nowrap;
	position: relative;
	font-family: var(--text-small-semi-bold-font-family);
	font-weight: var(--text-small-semi-bold-font-weight);
	color: #000000;
	font-size: var(--text-small-semi-bold-font-size);
	letter-spacing: var(--text-small-semi-bold-letter-spacing);
	line-height: var(--text-small-semi-bold-line-height);
	font-style: var(--text-small-semi-bold-font-style);
}

.box .blog-title-heading {
	position: relative;
	align-self: stretch;
	font-family: var(--heading-desktop-h2-font-family);
	font-weight: var(--heading-desktop-h2-font-weight);
	color: #000000;
	font-size: var(--heading-desktop-h2-font-size);
	letter-spacing: var(--heading-desktop-h2-letter-spacing);
	line-height: var(--heading-desktop-h2-line-height);
	font-style: var(--heading-desktop-h2-font-style);
	text-align: left;
	/* Keep left alignment on desktop */
}

@media (max-width: 768px) {
	.box .blog-title-heading {
		text-align: center;
		/* Center align on smaller screens */
	}
}

.box .content-6 {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	padding: 4px 0px 0px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .text-wrapper-3 {
	position: relative;
	width: fit-content;
	margin-top: -1.00px;
	font-family: var(--text-small-normal-font-family);
	font-weight: var(--text-small-normal-font-weight);
	color: #000000;
	font-size: var(--text-small-normal-font-size);
	letter-spacing: var(--text-small-normal-letter-spacing);
	line-height: var(--text-small-normal-line-height);
	white-space: nowrap;
	font-style: var(--text-small-normal-font-style);
}

.box .placeholder-image-2 {
	height: auto;
	max-height: 450px;
	width: 100%;
	/* Make it responsive */
	object-fit: cover;
}

@media (max-width: 768px) {
	.box .content-3 {
		flex-direction: column;
		/* Stack elements vertically */
		gap: 20px;
	}

	.box .content-4 {
		width: 90%;
		/* Make text container fit better */
		text-align: center;
		align-items: center;
	}

	.box .placeholder-image-2 {
		max-height: 300px;
		/* Adjusts image height for smaller screens */
	}
}


.box .container-2 {
	display: flex;
	align-items: center;
	gap: 40px;
	width: 100%;
	flex-wrap: nowrap;
	/* Keep items in a row on desktop */
	justify-content: flex-start;
}

.box .placeholder-image-3 {
	width: 50%;
	height: auto;
	object-fit: cover;
}

/* Text takes half width on larger screens */
.box .div-3 {
	width: 50%;
}

/* Mobile: Stack text ABOVE image */
@media (max-width: 768px) {
	.box .container-2 {
		flex-direction: column-reverse;
		/* Reverse the order */
		align-items: center;
		gap: 20px;
	}

	.box .placeholder-image-3 {
		width: 100%;
		height: auto;
	}

	.box .div-3 {
		width: 100%;
		text-align: center;
	}

	.box .actions-3 {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
}

.box .section-title-2 {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .container-wrapper {
	flex-direction: column;
	gap: 80px;
	padding: 112px 64px;
	flex: 0 0 auto;
	background-image: url('https://pub-80122b49e3a344d687932e93ea07a818.r2.dev/20250204011141074.jpg');
	display: flex;
	width: 100%;
	align-items: center;
	position: relative;
	background-color: #00000080;
	background-size: cover;
	background-position: 50% 50%;
}

.box .container-3 {
	flex-direction: column;
	width: 768px;
	align-items: center;
	gap: 32px;
	display: flex;
	position: relative;
	flex: 0 0 auto;
}

.box .section-title-3 {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .tagline-wrapper-2 {
	display: inline-flex;
	align-items: center;
	position: relative;
	align-self: stretch;
	flex: 0 0 auto;
}

.box .tagline-2 {
	position: relative;
	width: fit-content;
	margin-top: -1.00px;
	font-family: var(--heading-desktop-tagline-font-family);
	font-weight: var(--heading-desktop-tagline-font-weight);
	color: #ffffff;
	font-size: var(--heading-desktop-tagline-font-size);
	text-align: center;
	letter-spacing: var(--heading-desktop-tagline-letter-spacing);
	line-height: var(--heading-desktop-tagline-line-height);
	white-space: nowrap;
	font-style: var(--heading-desktop-tagline-font-style);
}

.box .content-7 {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .text-wrapper-4 {
	position: relative;
	align-self: stretch;
	margin-top: -1.00px;
	font-family: var(--heading-desktop-h1-font-family);
	font-weight: var(--heading-desktop-h1-font-weight);
	color: #ffffff;
	font-size: var(--heading-desktop-h1-font-size);
	text-align: center;
	letter-spacing: var(--heading-desktop-h1-letter-spacing);
	line-height: var(--heading-desktop-h1-line-height);
	font-style: var(--heading-desktop-h1-font-style);
}

.box .uncover-hidden-gems {
	position: relative;
	align-self: stretch;
	font-family: var(--text-medium-normal-font-family);
	font-weight: var(--text-medium-normal-font-weight);
	color: #ffffff;
	font-size: var(--text-medium-normal-font-size);
	text-align: center;
	letter-spacing: var(--text-medium-normal-letter-spacing);
	line-height: var(--text-medium-normal-line-height);
	font-style: var(--text-medium-normal-font-style);
}

.box .footer {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	gap: 80px;
	padding: 80px 64px;
	background-color: #ffffff;
	position: relative;
	flex: 0 0 auto;
}

.box .content-8 {
	display: flex;
	align-items: flex-start;
	gap: 64px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .column-3 {
	display: flex;
	flex-direction: column;
	width: 864px;
	align-items: flex-start;
	gap: 32px;
	position: relative;
}

.box .content-9 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .text-wrapper-5 {
	align-self: stretch;
	margin-top: -1.00px;
	position: relative;
	font-family: var(--text-small-semi-bold-font-family);
	font-weight: var(--text-small-semi-bold-font-weight);
	color: #000000;
	font-size: var(--text-small-semi-bold-font-size);
	letter-spacing: var(--text-small-semi-bold-letter-spacing);
	line-height: var(--text-small-semi-bold-line-height);
	font-style: var(--text-small-semi-bold-font-style);
}

.box .text-wrapper-6 {
	position: relative;
	align-self: stretch;
	font-family: var(--text-small-normal-font-family);
	font-weight: var(--text-small-normal-font-weight);
	color: #000000;
	font-size: var(--text-small-normal-font-size);
	letter-spacing: var(--text-small-normal-letter-spacing);
	line-height: var(--text-small-normal-line-height);
	font-style: var(--text-small-normal-font-style);
}

.box .container-4 {
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	width: 100%;
	display: flex;
	position: relative;
	flex: 0 0 auto;
}

.box .text-wrapper-7 {
	position: relative;
	align-self: stretch;
	margin-top: -1.00px;
	font-family: var(--text-small-link-font-family);
	font-weight: var(--text-small-link-font-weight);
	color: var(--semantic-link-primary);
	font-size: var(--text-small-link-font-size);
	letter-spacing: var(--text-small-link-letter-spacing);
	line-height: var(--text-small-link-line-height);
	text-decoration: underline;
	font-style: var(--text-small-link-font-style);
}

.box .text-wrapper-8 {
	position: relative;
	align-self: stretch;
	font-family: var(--text-small-link-font-family);
	font-weight: var(--text-small-link-font-weight);
	color: var(--semantic-link-primary);
	font-size: var(--text-small-link-font-size);
	letter-spacing: var(--text-small-link-letter-spacing);
	line-height: var(--text-small-link-line-height);
	text-decoration: underline;
	font-style: var(--text-small-link-font-style);
}

.box .social-links {
	display: inline-flex;
	align-items: flex-start;
	gap: 12px;
	position: relative;
	flex: 0 0 auto;
}

.box .column-4 {
	display: flex;
	align-items: flex-start;
	gap: 24px;
	position: relative;
	flex: 1;
	flex-grow: 1;
}

.box .link-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	flex: 1;
	flex-grow: 1;
}

.box .link-3 {
	display: flex;
	align-items: flex-start;
	padding: 8px 0px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .text-wrapper-9 {
	position: relative;
	flex: 1;
	margin-top: -1.00px;
	font-family: var(--text-small-semi-bold-font-family);
	font-weight: var(--text-small-semi-bold-font-weight);
	color: var(--semantic-link-primary);
	font-size: var(--text-small-semi-bold-font-size);
	letter-spacing: var(--text-small-semi-bold-letter-spacing);
	line-height: var(--text-small-semi-bold-line-height);
	font-style: var(--text-small-semi-bold-font-style);
}

.box .credits {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .divider {
	position: relative;
	align-self: stretch;
	width: 100%;
	height: 1px;
	background-color: #000000;
	border: 1px solid;
}

.box .row-2 {
	justify-content: space-between;
	display: flex;
	align-items: flex-start;
	position: relative;
	align-self: stretch;
	width: 100%;
	flex: 0 0 auto;
}

.box .footer-links {
	display: inline-flex;
	align-items: flex-start;
	gap: 24px;
	position: relative;
	flex: 0 0 auto;
}

.box .text-wrapper-10 {
	position: relative;
	width: fit-content;
	margin-top: -1.00px;
	font-family: var(--text-small-link-font-family);
	font-weight: var(--text-small-link-font-weight);
	color: var(--semantic-link-primary);
	font-size: var(--text-small-link-font-size);
	letter-spacing: var(--text-small-link-letter-spacing);
	line-height: var(--text-small-link-line-height);
	text-decoration: underline;
	white-space: nowrap;
	font-style: var(--text-small-link-font-style);
}



:root {
	--font-size-h2: 1.8rem; /* Increased subheading size */
	--font-size-h3: 1.5rem;
	--sidebar-width: 250px;
	--content-max-width: 80%;
}

.content-container {
	display: flex;
	justify-content: center;
	max-width: var(--content-max-width);
	margin: 0 auto;
	padding: 1.25rem; /* Use rem for padding */
	gap: 2rem; /* Add gap between main content and sidebar */
}

.main-content {
	flex: 3; /* Increase the flex value to use more horizontal area */
	padding: 2rem; /* Use rem for padding */
	font-family: 'Helvetica Neue', Arial, sans-serif; /* Use a clean, modern font */
	font-size: 1rem; /* Standardize font size */
	line-height: 1.5; /* Improve readability */
	background-color: #ffffff;

	/* border-radius: 0.5rem;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.sidebar {
    width: 20%;
    padding: 1rem;
    background-color: #ffffff;
    border-left: 2px solid #bababa;
    position: sticky;
    top: 4rem;
    align-self: flex-start;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}


.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    display: flex;
    align-items: center;
    border-radius: 8px;
    margin: 5px 0;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 5px;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.sidebar-menu li .icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.sidebar-menu li:hover a {
    background: #f3f3f3;
    border-radius: 8px;
}

.sidebar-menu .active a {
    background: #f3f3f3;
    font-weight: bold;
    border-radius: 8px;
}

h1 {
	font-size: 2rem; /* Standardize font size */
	margin-bottom: 1rem; /* Use rem for margin */
	line-height: 1.5; /* Improve readability */
	font-family: 'Helvetica Neue', Arial, sans-serif; /* Use a clean, modern font */
	font-weight: 700; /* Bolder font weight */
	color: #111; /* Darker color for better readability */
	text-align: left; /* Ensure left alignment */
}

h2 {
	font-size: 1.5rem; /* Standardize font size */
	margin-bottom: 1rem; /* Use rem for margin */
	line-height: 1.5; /* Improve readability */
	font-family: 'Helvetica Neue', Arial, sans-serif; /* Use a clean, modern font */
	font-weight: 600; /* Slightly bolder font weight */
	color: #333; /* Darker color for better readability */
	text-align: left; /* Ensure left alignment */
}

h3 {
	font-size: 1.25rem; /* Standardize font size */
	line-height: 1.5; /* Improve readability */
	font-family: 'Helvetica Neue', Arial, sans-serif; /* Use a clean, modern font */
	font-weight: 500; /* Slightly bolder font weight */
	color: #555; /* Darker color for better readability */
	text-align: left; /* Ensure left alignment */
}
.content-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.content-section.reverse {
    flex-direction: row-reverse;
}

.content-section.reverse .text-body {
    flex-direction: row-reverse;
}

.content-section.vertical {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    align-items: flex-start; /* Align children to the left */
}

.text-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%; /* Ensure it takes full width */
    text-align: left; /* Ensure text inside is aligned to the left */
}

.text-content h1, .text-content h2 {
    width: 100%;
    margin-bottom: 1rem;
    display: block;
    text-align: left; /* Ensure headings are aligned to the left */
}

.text-body {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.text-body > div {
	flex: 1; /* Ensures both text and image take equal space */
}

/* General styles for .image-content and .content-image (applies to all sections) */
.image-content {
    flex: 1;
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically */
    max-width: 50%; /* Ensures the image doesn't take more than half of the width */
    height: 100%; /* Ensure the image content div stretches to fill available height */
    overflow: hidden; /* Prevents overflow if image is too large */
}

.image-content img {
	max-height: 300px; 
    width: 100%; /* Ensure the image takes full width of its container */
    height: 100%; /* Ensure the image fills the container vertically */
    object-fit: cover; /* Ensure the image covers the entire area without distortion */
}

.content-image {
    width: 100%; /* Ensure the image takes the full width of the container */
    height: auto; /* Maintain aspect ratio */
    margin-top: 1rem; /* Use rem for margin */
}

/* Override styles for .content-section.vertical */
.content-section.vertical .image-content {
    width: 100%; /* Ensure the container takes full width */
    max-width: 100%; /* Override max-width for full-width images */
    margin: 0;
    padding: 0;
}

.content-section.vertical .image-content img {
	max-height: none;
    width: 100%; /* Ensure the image takes full width of its container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any extra space below the image */
    object-fit: contain; /* Ensures the image fits within the container */
}
/* Responsive adjustments */
@media (max-width: 768px) {
	.content-container {
		flex-direction: column;
		padding: 1rem; /* Use rem for padding */
	}

	.sidebar {
		width: 100%;
		border-left: none;
		border-top: 2px solid #ddd;
		margin-top: 1rem; /* Use rem for margin */
		position: relative;
		top: 0;
	}

	.content-section {
		flex-direction: column;
	}

	.content-section.reverse {
		flex-direction: column;
	}
}

.box .lorem-ipsum-dolor .highlight {
	background-color: white;
	color: rgb(0, 0, 0);
	padding: 0 5px;
}

.box .header .down-icon{
	height: 25px;
	width: 25px;
	fill: white;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.content-list li {
    margin-bottom: 10px;
}

.content-list li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, color 0.3s ease;
}

.content-list li a:hover {
    background: #f3f3f3;
    color: #000;
}

.content-list li a::before {
    content: "📍"; /* Location pin icon */
    margin-right: 8px;
    font-size: 1.1rem;
}
