:root {
	--primary-color: #63c1ff;
	--secondary-color: #2f2e41;
	--accent-color: #f5ff65;
	--background-light: #f9f9ff;
	--text-dark: #333333;
	--text-light: #ffffff;
	--gray-light: #f0f0f7;
	--gray-medium: #dedee9;
	--gray-dark: #8888a0;
	--success-color: #4caf50;
	--warning-color: #ff9800;
	--error-color: #f44336;
	--box-shadow: 0 5px 20px rgba(108, 99, 255, 0.2);
	--transition: all 0.3s ease;
	--border-radius: 12px;
}

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

html {
	scroll-behavior: smooth;
	font-size: 62%;
}

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	color: var(--text-dark);
	font-size: 1.6rem;
	background-color: var(--background-light);
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

ul,
ol {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.an-container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.an-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.an-section-header h2 {
	font-size: 3.6rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--secondary-color);
	position: relative;
	display: inline-block;
}

.an-section-header h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--primary-color);
	border-radius: 2px;
}

.an-section-header p {
	font-size: 1.8rem;
	max-width: 700px;
	margin: 0 auto;
	color: var(--gray-dark);
}

.an-button {
	display: inline-block;
	padding: 1.2rem 2.8rem;
	border-radius: var(--border-radius);
	font-weight: 600;
	font-size: 1.6rem;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
	border: none;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.an-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.2);
	transition: var(--transition);
	z-index: -1;
}

.an-button:hover::before {
	width: 100%;
}

.an-button.an-primary {
	background-color: var(--primary-color);
	color: var(--text-light);
}

.an-button.an-primary:hover {
	box-shadow: var(--box-shadow);
	transform: translateY(-3px);
}

.an-button.an-secondary {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.an-button.an-secondary:hover {
	background-color: var(--primary-color);
	color: var(--text-light);
	transform: translateY(-3px);
}

.an-button.an-small {
	padding: 0.8rem 1.6rem;
	font-size: 1.4rem;
}

.an-button.an-full-width {
	width: 100%;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.an-animate {
	opacity: 0;
	animation: fadeIn 0.6s ease forwards;
}

.an-active {
	opacity: 1;
}

.an-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: var(--transition);
}

.an-header .an-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
}

.an-logo {
	font-size: 2.4rem;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.an-logo-icon {
	display: inline-block;
	width: 3.6rem;
	height: 3.6rem;
	margin-right: 1rem;
	background: var(--primary-color);
	color: var(--text-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 900;
}

.an-logo-text {
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.an-nav ul {
	display: flex;
	gap: 2.4rem;
}

.an-nav a {
	color: var(--secondary-color);
	font-weight: 500;
	position: relative;
	padding: 0.5rem 0;
}

.an-nav a::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.an-nav a:hover {
	color: var(--primary-color);
}

.an-nav a:hover::after {
	width: 100%;
}

.an-mobile-menu {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	z-index: 1001;
}

.an-mobile-menu span {
	display: block;
	width: 30px;
	height: 3px;
	background: linear-gradient(
		135deg,
		var(--primary-color),
		var(--accent-color)
	);
	transition: var(--transition);
}

.an-hero {
	padding: 13rem 0 6rem;
	position: relative;
	overflow: hidden;
}

.an-hero::before {
	content: '';
	position: absolute;
	top: -10%;
	right: -10%;
	width: 500px;
	height: 500px;
	background-color: var(--primary-color);
	opacity: 0.05;
	border-radius: 50%;
	z-index: -1;
}

.an-hero::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 400px;
	height: 400px;
	background-color: var(--accent-color);
	opacity: 0.05;
	border-radius: 50%;
	z-index: -1;
}

.an-hero-content {
	display: flex;
	align-items: center;
	gap: 5rem;
}

.an-hero-text {
	flex: 1;
}

.an-hero-tagline {
	display: inline-block;
	background-color: rgba(108, 99, 255, 0.1);
	color: var(--primary-color);
	padding: 0.8rem 1.6rem;
	border-radius: 50px;
	font-weight: 500;
	margin-bottom: 2rem;
}

.an-hero-title {
	font-size: 4.8rem;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 2rem;
	color: var(--secondary-color);
}

.an-hero-title span {
	color: var(--primary-color);
}

.an-hero-description {
	font-size: 1.8rem;
	margin-bottom: 3rem;
	color: var(--gray-dark);
}

.an-hero-buttons {
	display: flex;
	gap: 1.6rem;
	margin-bottom: 3rem;
}

.an-hero-stats {
	display: flex;
	gap: 3rem;
}

.an-stat {
	display: flex;
	align-items: center;
}

.an-stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-right: 1rem;
}

.an-stat-label {
	font-size: 1.4rem;
	color: var(--gray-dark);
	font-weight: 500;
}

.an-hero-image {
	flex: 1;
	position: relative;
}

.an-hero-img {
	width: 100%;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
}

.an-features {
	padding: 8rem 0;
	background-color: var(--gray-light);
	position: relative;
	overflow: hidden;
}

.an-features::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100px;
	background-color: var(--background-light);
	clip-path: polygon(0 0, 100% 0, 100% -2%, 0 0);
}

.an-features::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: var(--background-light);
	clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.an-features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 3rem;
	position: relative;
	z-index: 10;
}

.an-feature-card {
	background-color: var(--text-light);
	border-radius: var(--border-radius);
	padding: 3rem 2.5rem;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.an-feature-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 0;
	background: linear-gradient(
		to bottom,
		var(--primary-color),
		var(--accent-color)
	);
	transition: var(--transition);
}

.an-feature-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--box-shadow);
}

.an-feature-card:hover::before {
	height: 100%;
}

.an-feature-icon {
	width: 70px;
	height: 70px;
	background-color: rgba(108, 99, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.an-feature-icon i {
	font-size: 2rem;
	color: var(--primary-color);
}

.an-feature-title {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	color: var(--secondary-color);
}

.an-feature-description {
	color: var(--gray-dark);
	margin-bottom: 2rem;
}

.an-feature-link {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.an-feature-link a {
	margin-top: auto;
}
.an-about {
	padding: 8rem 0;
}

.an-about-content {
	display: flex;
	align-items: center;
	gap: 8rem;
}

.an-about-image {
	flex: 1;
	position: relative;
}

.an-about-image-main {
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	position: relative;
	z-index: 2;
}

.an-about-image::before {
	content: '';
	position: absolute;
	top: -20px;
	left: -20px;
	width: 100%;
	height: 100%;
	border: 5px solid var(--primary-color);
	border-radius: var(--border-radius);
	z-index: 1;
}

.an-about-text {
	flex: 1;
}

.an-about-badge {
	display: inline-block;
	background-color: rgba(108, 99, 255, 0.1);
	color: var(--primary-color);
	padding: 0.8rem 1.6rem;
	border-radius: 50px;
	font-weight: 500;
	margin-bottom: 2rem;
}

.an-about-title {
	font-size: 3.6rem;
	font-weight: 700;
	margin-bottom: 2rem;
	color: var(--secondary-color);
}

.an-about-description {
	margin-bottom: 3rem;
	color: var(--gray-dark);
}

.an-about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.an-about-stat {
	display: flex;
	flex-direction: column;
}

.an-about-stat-number {
	font-size: 4rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.an-about-stat-label {
	color: var(--gray-dark);
	font-weight: 500;
}

.an-topics {
	padding: 8rem 0;
	background-color: var(--gray-light);
	position: relative;
}

.an-topics::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100px;
	background-color: var(--background-light);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.an-topics-carousel {
	margin: 0 -1.5rem;
	position: relative;
}

.an-topics-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	padding: 2rem 0;
}

.an-topic-card {
	background-color: var(--text-light);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
	min-width: 300px;
	flex: 1;
}

.an-topic-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--box-shadow);
}

.an-topic-image {
	height: 200px;
	position: relative;
	overflow: hidden;
}

.an-topic-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.an-topic-card:hover .an-topic-image img {
	transform: scale(1.1);
}

.an-topic-tag {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background-color: var(--primary-color);
	color: var(--text-light);
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 500;
}

.an-topic-content {
	padding: 2.5rem;
}

.an-topic-title {
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	color: var(--secondary-color);
}

.an-topic-description {
	color: var(--gray-dark);
	margin-bottom: 2rem;
}

.an-topic-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 2rem;
	border-top: 1px solid var(--gray-medium);
}

.an-topic-author {
	display: flex;
	align-items: center;
}

.an-topic-author-image {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 1rem;
}

.an-topic-author-name {
	font-weight: 500;
	color: var(--secondary-color);
}

.an-topic-date {
	color: var(--gray-dark);
	font-size: 1.4rem;
}

.an-newsletter {
	padding: 10rem 0;
	position: relative;
	overflow: hidden;
}

.an-newsletter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(108, 99, 255, 0.1),
		rgba(255, 101, 132, 0.1)
	);
	z-index: -1;
}

.an-newsletter-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.an-newsletter-icon {
	width: 80px;
	height: 80px;
	background-color: rgba(108, 99, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
}

.an-newsletter-icon i {
	font-size: 2rem;
	color: var(--primary-color);
}

.an-newsletter-title {
	font-size: 3.6rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: var(--secondary-color);
}

.an-newsletter-description {
	font-size: 1.8rem;
	max-width: 600px;
	margin: 0 auto 3rem;
	color: var(--gray-dark);
}

.an-newsletter-form {
	display: flex;
	gap: 1rem;
	max-width: 500px;
	margin: 0 auto;
}

.an-newsletter-input {
	flex: 1;
	padding: 1.5rem 2rem;
	border: 1px solid var(--gray-medium);
	border-radius: var(--border-radius);
	font-size: 1.6rem;
	transition: var(--transition);
}

.an-newsletter-input:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.an-contact {
	padding: 8rem 0;
	position: relative;
}

.an-contact::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100px;
	background-color: var(--background-light);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.an-contact-content {
	display: flex;
	justify-content: center;
	gap: 5rem;
}

.an-contact-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 3rem;
	max-width: 400px;
}

.an-contact-info-item {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.an-contact-icon {
	width: 60px;
	height: 60px;
	background-color: rgba(108, 99, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.an-contact-icon i {
	font-size: 2rem;
	color: var(--primary-color);
}

.an-contact-text {
	color: var(--gray-dark);
}

.an-social-links {
	display: flex;
	align-items: center;
	gap: 5px;
}

.an-social-links a:hover {
	color: var(--background-light);
}

.an-contact-text strong {
	display: block;
	color: var(--secondary-color);
	font-size: 1.8rem;
	margin-bottom: 0.5rem;
}

.an-contact-form {
	background-color: var(--text-light);
	padding: 4rem;
	border-radius: var(--border-radius);
	box-shadow: var(--box-shadow);
	max-width: 600px;
	width: 100%;
}

.an-form-title {
	font-size: 2.4rem;
	margin-bottom: 3rem;
	color: var(--secondary-color);
	text-align: center;
}

.an-form-group {
	margin-bottom: 2rem;
}

.an-form-label {
	display: block;
	margin-bottom: 0.8rem;
	font-weight: 500;
	color: var(--secondary-color);
}

.an-form-control {
	width: 100%;
	padding: 1.2rem 1.5rem;
	border: 1px solid var(--gray-medium);
	border-radius: var(--border-radius);
	font-size: 1.6rem;
	transition: var(--transition);
}

.an-form-control:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

.an-form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}
.an-error-message {
	display: block;
	color: #ff4444;
	font-size: 1.2rem;
	margin-top: 0.5rem;
}

.an-success-message {
	background-color: var(--success-color);
	color: var(--text-light);
	padding: 1.5rem;
	border-radius: var(--border-radius);
	text-align: center;
	margin-top: 2rem;
	font-weight: 500;
	display: none;
}

.an-success-message.show {
	display: block;
	animation: fadeIn 0.5s ease;
}

.an-footer {
	background-color: var(--secondary-color);
	color: var(--text-light);
	padding: 6rem 0 2rem;
}

.an-footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 5rem;
	margin-bottom: 5rem;
}

.an-footer-logo {
	margin-bottom: 2rem;
	font-size: 2.4rem;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.an-footer-tagline {
	color: var(--gray-medium);
	margin-bottom: 3rem;
	max-width: 300px;
}

.an-footer-social {
	display: flex;
	gap: 1.5rem;
}

.an-social-link {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: var(--transition);
}

.an-social-link:hover {
	background-color: var(--primary-color);
	transform: translateY(-5px);
}

.an-footer-column {
	display: flex;
	flex-direction: column;
}

.an-footer-title {
	font-size: 2rem;
	margin-bottom: 2rem;
	color: var(--text-light);
	position: relative;
	padding-bottom: 1rem;
}

.an-footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: var(--primary-color);
}

.an-footer-links {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.an-footer-link {
	color: var(--gray-medium);
	transition: var(--transition);
}

.an-footer-link:hover {
	color: var(--primary-color);
	transform: translateX(5px);
}

.an-footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: center;
	align-items: center;
}

.an-copyright {
	color: var(--gray-medium);
}

.an-footer-legal {
	display: flex;
	gap: 2rem;
}

.an-legal-link {
	color: var(--gray-medium);
	transition: var(--transition);
}

.an-legal-link:hover {
	color: var(--primary-color);
}

.an-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 400px;
	background-color: var(--text-light);
	border-radius: var(--border-radius);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: bottom 0.5s ease-in-out;
	opacity: 0;
}

.an-cookie-popup.an-show {
	bottom: 20px;
	opacity: 1;
}

.an-cookie-content {
	padding: 3rem;
}

.an-cookie-title {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--secondary-color);
}

.an-cookie-text {
	color: var(--gray-dark);
	margin-bottom: 2rem;
}

.an-cookie-text a {
	color: var(--primary-color);
	text-decoration: underline;
}

.an-cookie-buttons {
	display: flex;
	gap: 1rem;
}

.an-policy-content {
	padding: 12rem 0 6rem;
}

.an-policy-container {
	background-color: var(--text-light);
	border-radius: var(--border-radius);
	padding: 4rem;
	box-shadow: var(--box-shadow);
}

.an-policy-header {
	margin-bottom: 4rem;
	text-align: center;
}

.an-policy-header h1 {
	font-size: 3.2rem;
	color: var(--secondary-color);
	margin-bottom: 1.5rem;
}

.an-policy-header p {
	color: var(--gray-dark);
}

.an-policy-section {
	margin-bottom: 4rem;
}

.an-policy-section h2 {
	font-size: 2.4rem;
	color: var(--secondary-color);
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid var(--gray-medium);
}

.an-policy-section p,
.an-policy-section ul {
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.an-policy-section ul {
	padding-left: 2rem;
}

.an-policy-section ul li {
	margin-bottom: 1rem;
	list-style-type: disc;
}

.an-policy-date {
	margin-top: 4rem;
	text-align: center;
	color: var(--gray-dark);
	font-style: italic;
}

.an-table-wrap {
	overflow-x: auto;
}

.an-cookie-table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
}

.an-cookie-table th,
.an-cookie-table td {
	border: 1px solid var(--gray-medium);
	padding: 1.2rem;
	text-align: left;
}

.an-cookie-table th {
	background-color: var(--gray-light);
	font-weight: 600;
}

.an-cookie-table tr:nth-child(even) {
	background-color: #f9f9f9;
}

@media (max-width: 1200px) {
	.an-hero-title {
		font-size: 4rem;
	}

	.an-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1024px) {
	.an-topics-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}

@media (max-width: 992px) {
	html {
		font-size: 60%;
	}

	.an-hero-content {
		flex-direction: column;
	}

	.an-hero-image {
		order: -1;
		margin-bottom: 4rem;
	}

	.an-about-content {
		flex-direction: column;
		gap: 5rem;
	}

	.an-contact-content {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 58%;
	}

	.an-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background-color: var(--secondary-color);
		padding: 10rem 3rem 3rem;
		transition: right 0.3s ease;
		z-index: 999;
	}

	.an-nav.show {
		right: 0;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	}

	.an-nav ul {
		flex-direction: column;
		gap: 2.5rem;
	}

	.an-nav a {
		color: var(--text-light);
		font-size: 1.8rem;
		display: block;
	}

	.an-mobile-menu {
		display: flex;
	}

	.an-mobile-menu.active span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}

	.an-mobile-menu.active span:nth-child(2) {
		opacity: 0;
	}

	.an-mobile-menu.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}

	.an-hero-tagline {
		margin-bottom: 1rem;
	}

	.an-hero-title {
		font-size: 3.6rem;
	}

	.an-hero-buttons {
		flex-direction: column;
	}

	.an-form-row {
		grid-template-columns: 1fr;
	}

	.an-footer-content {
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	.an-footer-bottom {
		flex-direction: column;
		gap: 2rem;
		text-align: center;
	}

	.an-footer-legal {
		flex-direction: column;
		gap: 1rem;
		align-items: center;
	}

	.an-topics .an-container {
		width: 100%;
	}

	.an-topics {
		padding: 8rem 1rem;
	}

	.an-policy-header h1 {
		font-size: 2rem;
	}
}

@media (max-width: 576px) {
	html {
		font-size: 55%;
	}

	.an-hero-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.an-about-stats {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.an-topics-grid,
	.an-features-grid {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.an-newsletter-form {
		flex-direction: column;
		gap: 1.5rem;
	}
}
