/* Terms and Conditions Popup Styles */
.terms-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.terms-popup__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.terms-popup__content {
	position: relative;
	background: #fff0e9;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	max-width: 700px;
	width: 100%;
	max-height: 80vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.terms-popup__body {
	flex: 1;
	overflow-y: auto;
	padding: 0;
}

.terms-popup__content-inner {
	padding: 20px 30px;
	line-height: 1.6;
	color: #5D2D25;
	font-family: "Gilroy", Sans-serif;
}

.terms-popup__content-inner h1,
.terms-popup__content-inner h2,
.terms-popup__content-inner h3 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #5D2D25;
	font-weight: 600;
	font-family: "Gilroy", Sans-serif;
}

.terms-popup__content-inner strong {
	color: #5D2D25;
	font-weight: bold;
	margin-bottom: 16px;
	font-family: "Gilroy-semibold", Sans-serif;
}

.terms-popup__content-inner p {
	margin-bottom: 15px;
}

.terms-popup__content-inner a {
	color: #E8BE75;
	text-decoration: none;
}

.terms-popup__content-inner a:hover {
	text-decoration: underline;
}

.terms-popup__footer {
	padding: 20px;
	border-top: 1px solid #E8BE75;
	background: #fff0e9;
	display: flex;
	gap: 20px;
	justify-content: flex-end;
}

.terms-popup__accept,
.terms-popup__decline {
	padding: 10px 20px;
	border-radius: 4px;
	font-weight: 500;
	font-size: 14px;
	cursor: pointer;
	border: none;
	font-family: "Gilroy", Sans-serif;
}

.terms-popup__accept {
	background: #E8BE75;
	color: #5D2D25;
}

.terms-popup__accept:hover {
	background: #D5AE5E;
}

.terms-popup__decline {
	background: #fff0e9;
	color: #5D2D25;
	border: 1px solid #E8BE75;
}

.terms-popup__decline:hover {
	background: #FFF0E8;
}

/* Terms Link Styling */
.terms-link {
	margin: 15px 0;
	padding: 15px;
	background: #fff0e9;
	border: 1px solid #E8BE75;
	border-radius: 4px;
}

.terms-link__trigger {
	color: #E8BE75;
	text-decoration: none;
	font-weight: 500;
	cursor: pointer;
}

.terms-link__trigger:hover {
	color: #D5AE5E;
	text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
	body .elementor-4820 .elementor-element.elementor-element-58b73f1 .elementor-heading-title {
		font-size: 4.5px;
	}

	.terms-popup {
		padding: 10px;
	}
	
	.terms-popup__content {
		max-height: 90vh;
	}
	
	.terms-popup__footer {
		flex-direction: column;
		gap: 10px;
        padding-top: 10px;
	}
	
	.terms-popup__accept,
	.terms-popup__decline {
		width: 100%;
	}
}