@import url("./gordita/fonts.css");
* {
	padding: 0;
	margin: 0;
}

body {
	font-family: gordita, "sans-serif";
	overflow-x: hidden;
}

.custom-logo-link img {
	height: auto;
	margin-top: 0.5rem;
}

.page-header {
	background-color: #f3f3f3;
	padding: 15px 24px;
}

.page-header .container {
	max-width: 1110px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
}

.nav-links a {
	text-decoration: none;
	color: #101010;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
}

.get-ultra-av-container {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 16px 2px 16px;
	border-radius: 24px;
	background: var(--Main-Orange, #ff8600);
	text-decoration: none;
	height: 32px;
}

.get-ultra-av-container p {
	color: #101010;
	font-size: 12px;
	font-weight: 500;
	height: 14px;
}

.main-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.heading-section {
	background: #f3f3f3;
	width: 100%;
}

.heading-section .container {
	max-width: 650px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 60px 24px;
}

.heading-section h1 {
	color: #101010;
	font-size: 40px;
	font-weight: 500;
	line-height: 54px;
}

.heading-section p {
	color: #202020;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
}

.faqs-section {
	background: #fff;
}

.faqs-section .container {
	max-width: 1110px;
	margin: 0 auto;
	padding: 80px 24px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 30px;
}

.table-of-contents {
	flex: 1 0 260px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 20px;
}

.table-of-contents h4 {
	color: #202020;
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
}

.table-of-contents a {
	text-decoration: none;
}

.table-of-contents .content-link  h4 {
	color: #b54c00;
}

.contents {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.content-section {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 16px;
}

.content-section > h4 {
	color: #202020;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px;
}

.content-section > p {
	color: #404040;
	font-size: 20px;
	font-weight: 400;
	line-height: normal;
}

.accordion {
	width: 100%;
}

.accordion-header {
	border-radius: 10px;
	background: #f2f2f2;
	cursor: pointer;
	padding: 24px 32px;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	align-items: center;
	text-align: start;
	justify-content: space-between;
}

.accordion-header h4 {
	color: #101010;
	font-size: 20px;
	font-weight: 500;
	line-height: 28px;
	font-family: gordita, "sans-serif";
}

.accordion-header.active {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.accordion-header.active > img {
	transform: rotate(180deg);
}

.accordion-body {
	padding: 0 32px;
	background-color: #f2f2f2;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.accordion-body .container {
	color: #1e1e1e;
	padding: 0 0 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.accordion-body a {
	color: #B54C00;
	text-decoration: none;
}

.accordion-body p {
	font-size: 18px;
	font-weight: 400;
	line-height: 26px;
}

.accordion-body h5 {
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
}

.footer {
	background-color: #101010;
}

.footer-container {
	max-width: 1110px;
	margin: 0 auto;
	padding: 56px 24px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	color: #d8d8d8;
}

.footer-container .logo-section {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 16px;
	max-width: 160px;
}

.footer-container .logo-section p {
	color: #d8d8d8;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
}

.footer-links-container section {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-links-container h5 {
	color: #fefffe;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-links p {
	color: #d8d8d8;
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
}

.footer-links-container {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 32px;
}

.footer a {
	color: #d8d8d8;
	text-decoration: none;
}

.hidden {
    display: none;
}

.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4); /* Black with opacity */
}

.modal-header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.modal-header img {
    width: 1em;
    height: 1em;
    color: #000;
    opacity: .5;
	position: relative;
	top: -5px;
	left: 5px;
	cursor: pointer;
}

.modal-content {
	position: relative;
	background: #fff;
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
    max-width: 600px;
    margin: 30px auto;
	border: 1px solid rgba(0, 0, 0, .175);
    border-radius: 1.5rem;
    outline: 0;
}

.modal-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	overflow-y: auto;
}

.modal-body h2 {
	line-height: 1.4;
    font-size: 20px;
    color: #101010;
    margin: 1.25rem 0;
	font-weight: 500;
}

.modal-body p {
	margin-bottom: 1.5rem;
    color: #595959;
	font-size: 14px;
	letter-spacing: -0.32px;
	line-height: 21px;
}

.modal-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.modal-section .container {
	width: 66%;
}

.modal-section p {
	margin: 1rem 0 .75rem;
}

.modal-section ul {
	list-style: none;
}

.modal-section ul li {
	display: flex;
	align-items: center;
	gap: 8px;
	letter-spacing: -.02rem;
    color: #595959;
	font-size: 14px;
	font-weight: 400;
	line-height: 21px;
}

.modal-body .refund-text {
	margin: 1.5rem 0;
}

.uninstall_av {
	margin-left: 2rem;
}
.windows_av {
	padding-bottom: 0.5rem;
}

@media (max-width: 768px) {
	.page-header .container {
		display: none;
	}

	.faqs-section .container {
		padding: 30px 24px;
		flex-direction: column;
	}

	.accordion-header {
		padding: 24px;
		gap: 16px;
	}

	.accordion-body .container {
		padding: 0 0 24px;
	}

	.accordion-header h4 {
		font-size: 16px;
		line-height: 24px;
	}

	.accordion-body p {
		font-size: 16px;
		line-height: 26px;
	}

	.footer-container {
		flex-direction: column;
		padding: 24px;
		align-items: center;
		gap: 16px;
	}

	.footer-links-container {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.modal-section {
		flex-direction: column;
		gap: 1rem;
	}

	.modal-section .container {
		width: 100%;
	}
}
