body {
	font-family: 'Inter', sans-serif;
	scroll-behavior: smooth;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1, h2, h3, h4 {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: -0.02em;
}

.gold {
	color: #d4af37;
}

.bg-gold {
	background-color: #d4af37;
}

.bg-near-black {
	background-color: #0f0f0f;
}

.container {
	max-width: 1200px;
}

.animate-fade-in-left {
	opacity: 0;
	transform: translateX(-30px);
	animation: fadeInLeft 1s forwards ease-out;
}

.animate-fade-in-right {
	opacity: 0;
	transform: translateX(30px);
	animation: fadeInRight 1s forwards ease-out;
}

@keyframes fadeInLeft {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.8s ease-out;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

.min-h-200 {
	min-height: 200px;
}

.gap-2 {
	gap: 0.5rem;
}

.gap-3 {
	gap: 1rem;
}

.gap-4 {
	gap: 1.5rem;
}

.z-9999 {
	z-index: 9999;
}

.inset-0 {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.swiper-pagination-bullet-active {
	background: #d4af37 !important;
}

@media screen and (max-width: 768px) {
	h1 {
		font-size: 1.5rem !important;
	}
	h2 {
		font-size: 1.2rem !important;
	}
	.vh-75-l {
		min-height: 80vh;
	}
}

.review-slider {
	padding-bottom: 50px !important;
}

input:focus, textarea:focus {
	outline: 2px solid #d4af37;
	border-color: transparent;
}

.shadow-5 {
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.shadow-4 {
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}/* Container spacing: top and sides */
.legalFoldBox {
    padding: 20px 15px 0 15px;
    box-sizing: border-box;
}

/* Moderate font sizes for headings */
.legalFoldBox h1 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 700;
    color: #fff;
}

.legalFoldBox h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
}

.legalFoldBox h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 18px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #fff;
}

.legalFoldBox h4 {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 15px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.legalFoldBox h5 {
    font-size: 14px;
    line-height: 1.3;
    margin-top: 12px;
    margin-bottom: 6px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

/* Paragraph styles */
.legalFoldBox p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #fff;
}

/* List styles */
.legalFoldBox ul {
    margin-bottom: 16px;
    padding-left: 20px;
    list-style-type: disc;
}

.legalFoldBox li {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    color: #fff;
}

/* Remove margin from the last element to prevent extra spacing */
.legalFoldBox > *:last-child {
    margin-bottom: 0;
}


.object-contain {
	object-fit: contain;
}

.swiper-pagination-bullet {
	background: #d4af37ab !important;
}