:root {
	--ae-color-background: #f2f2f2;
	--ae-color-primary: #27a0b0;
	--ae-color-primary-light: #74cbd7;
	--ae-color-primary-dark: #06606b;
	--ae-color-secondary: #43d400;
	--ae-color-secondary-light: #a6d192;
	--ae-color-secondary-dark: #205d04;
	--ae-color-text: #212121;
	--ae-color-text-light: #757575;
	--ae-color-text-lighter: #9e9e9e;
	--ae-color-white: #ffffff;
	--ae-color-black: #000000;
	--ae-color-gray-100: #f5f5f5;
	--ae-color-gray-200: #eeeeee;
	--ae-color-gray-300: #e0e0e0;
	--ae-color-gray-400: #bdbdbd;
	--ae-color-success: #4caf50;
	--ae-color-warning: #ff9800;
	--ae-color-error: #f44336;
	--ae-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
	--ae-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
	--ae-shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.14);
	--ae-font-primary: 'Arimo', sans-serif;
	--ae-border-radius: 4px;
	--ae-border-radius-lg: 8px;
	--ae-transition-fast: 200ms ease;
	--ae-transition-normal: 300ms ease;
	--ae-transition-slow: 500ms ease;
	--ae-max-width: 1200px;
	--ae-section-spacing: 100px;
	--ae-header-height: 80px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	line-height: 1.6;
}

body {
	font-family: var(--ae-font-primary);
	color: var(--ae-color-text);
	background-color: var(--ae-color-background);
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C27B0' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	min-height: 100vh;
	overflow-x: hidden;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--ae-transition-fast);
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* ------------------------------------ */
/* 2. Typography                        */
/* ------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--ae-font-primary);
	line-height: 1.2;
	margin-bottom: 1rem;
	font-weight: 700;
}

h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 1.25rem;
}

h3 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

h4 {
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}

h5 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

h6 {
	font-size: 1rem;
	margin-bottom: 0.5rem;
}

p {
	margin-bottom: 1rem;
	line-height: 1.8;
}

strong {
	font-weight: 700;
}

.ae-text-center {
	text-align: center;
}

.ae-text-primary {
	color: var(--ae-color-primary);
}

.ae-text-secondary {
	color: var(--ae-color-secondary);
}

.ae-section-title {
	font-size: 2.75rem;
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
	padding-bottom: 1.5rem;
}

.ae-section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 4px;
	width: 80px;
	background: var(--ae-color-primary);
	border-radius: 2px;
}

.ae-section-subtitle {
	font-size: 1.25rem;
	text-align: center;
	max-width: 800px;
	margin: -2rem auto 3rem;
	color: var(--ae-color-text-light);
}

/* ------------------------------------ */
/* 3. Layout & Grid                     */
/* ------------------------------------ */
.ae-container {
	width: 100%;
	max-width: var(--ae-max-width);
	margin: 0 auto;
	padding: 0 1rem;
}

.ae-section {
	padding: var(--ae-section-spacing) 0;
	position: relative;
}

.ae-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1rem;
}

.ae-col {
	flex: 1 0 100%;
	padding: 0 1rem;
}

.ae-col-6 {
	flex: 0 0 50%;
	max-width: 50%;
	padding: 0 1rem;
}

.ae-col-4 {
	flex: 0 0 33.333333%;
	max-width: 33.333333%;
	padding: 0 1rem;
}

.ae-col-3 {
	flex: 0 0 25%;
	max-width: 25%;
	padding: 0 1rem;
}

.ae-flex {
	display: flex;
}

.ae-flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ae-flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ae-flex-column {
	display: flex;
	flex-direction: column;
}

.ae-flex-wrap {
	flex-wrap: wrap;
}

.ae-flex-grow {
	flex-grow: 1;
}

/* ------------------------------------ */
/* 4. Header & Navigation               */
/* ------------------------------------ */
.ae-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: var(--ae-shadow-sm);
	transition: var(--ae-transition-normal);
	height: var(--ae-header-height);
}

.ae-header.ae-scrolled {
	box-shadow: var(--ae-shadow-md);
	background-color: rgba(255, 255, 255, 0.98);
}

.ae-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: var(--ae-header-height);
}

.ae-logo {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--ae-color-text);
	display: flex;
	align-items: center;
	line-height: 1;
}

.ae-logo img {
	max-height: 40px;
}

.ae-nav {
	display: flex;
	align-items: center;
}

.ae-nav-list {
	display: flex;
	gap: 2rem;
}

.ae-nav-link {
	position: relative;
	font-weight: 600;
	color: var(--ae-color-text);
	padding: 0.5rem 0;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
}

.ae-nav-link::before {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: var(--ae-color-primary);
	transition: var(--ae-transition-fast);
}

.ae-nav-link:hover {
	color: var(--ae-color-primary);
}

.ae-nav-link:hover::before {
	width: 100%;
}

.ae-nav-link.ae-active::before {
	width: 100%;
	background-color: var(--ae-color-secondary);
}

.ae-nav-link.ae-active {
	color: var(--ae-color-secondary);
}

.ae-header-contact {
	display: flex;
	align-items: center;
	font-size: 0.9rem;
}

.ae-header-contact i {
	margin-right: 0.5rem;
	color: var(--ae-color-primary);
}

.ae-header-email {
	color: var(--ae-color-text);
	font-weight: 500;
	transition: var(--ae-transition-fast);
}

.ae-header-email:hover {
	color: var(--ae-color-primary);
}

.ae-mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 30px;
	height: 24px;
	position: relative;
	z-index: 1001;
}

.ae-mobile-toggle span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: var(--ae-color-text);
	border-radius: 3px;
	opacity: 1;
	left: 0;
	transform: rotate(0deg);
	transition: var(--ae-transition-fast);
}

.ae-mobile-toggle span:nth-child(1) {
	top: 0;
}

.ae-mobile-toggle span:nth-child(2) {
	top: 10px;
}

.ae-mobile-toggle span:nth-child(3) {
	top: 20px;
}

.ae-mobile-toggle.ae-active span:nth-child(1) {
	top: 10px;
	transform: rotate(135deg);
}

.ae-mobile-toggle.ae-active span:nth-child(2) {
	opacity: 0;
	left: -60px;
}

.ae-mobile-toggle.ae-active span:nth-child(3) {
	top: 10px;
	transform: rotate(-135deg);
}

/* ------------------------------------ */
/* 5. Hero Section                      */
/* ------------------------------------ */
.ae-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: var(--ae-header-height);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 242, 242, 0.9)),
		url('assets/ae-hero.jpg') no-repeat center/cover;
	position: relative;
	overflow: hidden;
}

.ae-hero .ae-row {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ae-hero-content {
	position: relative;
	z-index: 2;
}

.ae-hero-title {
	font-size: 4rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	background: linear-gradient(
		135deg,
		var(--ae-color-primary),
		var(--ae-color-secondary)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.ae-hero-subtitle {
	font-size: 1.5rem;
	max-width: 600px;
	margin-bottom: 3rem;
	color: var(--ae-color-text-light);
}

.ae-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.ae-hero-illustration {
	position: relative;
	height: 500px;
	width: 100%;
}

.ae-soul-animation {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	background-color: var(--ae-color-secondary-light);
	border-radius: 50%;
	filter: blur(40px);
	opacity: 0.5;
	animation: pulsate 4s infinite alternate;
}

.ae-soul-inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 200px;
	height: 200px;
	background-color: var(--ae-color-primary-light);
	border-radius: 50%;
	filter: blur(20px);
	opacity: 0.7;
	animation: pulsate 3s infinite alternate-reverse;
}

.ae-soul-core {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-color: var(--ae-color-white);
	border-radius: 50%;
	filter: blur(5px);
	box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
	animation: pulsate 2s infinite alternate;
}

.ae-soul-spark {
	position: absolute;
	width: 20px;
	height: 20px;
	background-color: var(--ae-color-white);
	border-radius: 50%;
	filter: blur(2px);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
	opacity: 0;
}

.ae-soul-spark:nth-child(1) {
	top: 20%;
	left: 30%;
	animation: spark 3s infinite 0.2s;
}

.ae-soul-spark:nth-child(2) {
	top: 60%;
	left: 20%;
	animation: spark 4s infinite 1s;
}

.ae-soul-spark:nth-child(3) {
	top: 30%;
	left: 70%;
	animation: spark 3.5s infinite 0.7s;
}

.ae-soul-spark:nth-child(4) {
	top: 70%;
	left: 80%;
	animation: spark 2.5s infinite 1.5s;
}

@keyframes pulsate {
	0% {
		transform: translate(-50%, -50%) scale(0.8);
	}
	100% {
		transform: translate(-50%, -50%) scale(1.1);
	}
}

@keyframes spark {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(0);
		opacity: 0;
	}
}

/* ------------------------------------ */
/* 6. Inspiration Section               */
/* ------------------------------------ */
.ae-inspiration {
	background-color: var(--ae-color-white);
	position: relative;
	overflow: hidden;
}

.ae-inspiration::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(
		to bottom,
		var(--ae-color-background),
		transparent
	);
	z-index: 1;
}

.ae-inspiration::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background: linear-gradient(to top, var(--ae-color-background), transparent);
	z-index: 1;
}

.ae-inspiration-content {
	position: relative;
	z-index: 2;
}

.ae-gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 4rem;
}

.ae-gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: var(--ae-border-radius);
	box-shadow: var(--ae-shadow-md);
	aspect-ratio: 3/4;
	cursor: pointer;
	transform-style: preserve-3d;
	perspective: 1000px;
}

.ae-gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s var(--ae-transition-normal);
}

.ae-gallery-item:hover .ae-gallery-image {
	transform: scale(1.05);
}

.ae-gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	opacity: 0;
	transition: var(--ae-transition-normal);
}

.ae-gallery-item:hover .ae-gallery-overlay {
	opacity: 1;
}

.ae-gallery-caption {
	color: var(--ae-color-white);
	font-weight: 600;
	font-size: 1.25rem;
}

.ae-quotes-slider {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 3rem 0;
}

.ae-quote-item {
	display: flex;
	align-items: flex-start;
	gap: 2rem;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(20px);
	transition:
		opacity 0.6s ease,
		transform 0.6s ease;
	padding: 1rem;
}

.ae-quote-item.ae-active {
	opacity: 1;
	position: relative;
	transform: translateY(0);
}

.ae-quote-image {
	flex: 0 0 150px;
	height: 150px;
	border-radius: var(--ae-border-radius);
	overflow: hidden;
	box-shadow: var(--ae-shadow-md);
}

.ae-quote-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ae-quote-content {
	flex-grow: 1;
}

.ae-quote-text {
	font-size: 1.5rem;
	line-height: 1.6;
	font-style: italic;
	margin-bottom: 1.5rem;
	position: relative;
	padding-left: 2rem;
}

.ae-quote-text::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -10px;
	font-size: 4rem;
	color: var(--ae-color-primary-light);
	opacity: 0.5;
	line-height: 1;
}

.ae-quote-author {
	font-weight: 700;
	color: var(--ae-color-primary);
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
}

.ae-quote-title {
	color: var(--ae-color-text-light);
}

.ae-quotes-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.ae-quote-nav {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--ae-color-white);
	border: 2px solid var(--ae-color-primary);
	color: var(--ae-color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--ae-transition-fast);
}

.ae-quote-nav:hover {
	background-color: var(--ae-color-primary);
	color: var(--ae-color-white);
}

.ae-quote-dots {
	display: flex;
	gap: 0.5rem;
	margin-top: 1rem;
	justify-content: center;
}

.ae-quote-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--ae-color-gray-300);
	cursor: pointer;
	transition: var(--ae-transition-fast);
}

.ae-quote-dot.ae-active {
	background-color: var(--ae-color-primary);
	transform: scale(1.2);
}

/* ------------------------------------ */
/* 7. Parcours Section                  */
/* ------------------------------------ */
.ae-parcours {
	background-color: var(--ae-color-background);
	position: relative;
}

.ae-steps {
	position: relative;
	margin-top: 4rem;
}

.ae-steps::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background-color: var(--ae-color-primary-light);
	z-index: 1;
}

.ae-step {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 2;
	margin-bottom: 6rem;
}

.ae-step:last-child {
	margin-bottom: 0;
}

.ae-step:nth-child(odd) {
	flex-direction: row-reverse;
}

.ae-step:nth-child(odd) .ae-step-content {
	text-align: right;
	padding-right: 4rem;
	padding-left: 0;
}

.ae-step:nth-child(even) .ae-step-content {
	text-align: left;
	padding-left: 4rem;
	padding-right: 0;
}

.ae-step-marker {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--ae-color-primary);

	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: var(--ae-shadow-lg);
	color: var(--ae-color-white);
	font-size: 1.5rem;
	z-index: 3;
}

.ae-step-content {
	flex: 0 0 calc(50% - 30px);
	max-width: calc(50% - 30px);
}

.ae-step-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
	color: var(--ae-color-primary);
}

.ae-step-description {
	margin-bottom: 1.5rem;
}

.ae-step-visual {
	flex: 0 0 calc(50% - 30px);
	max-width: calc(50% - 30px);
}

.ae-step-illustration {
	border-radius: var(--ae-border-radius);
	overflow: hidden;
	box-shadow: var(--ae-shadow-md);
}

.ae-step-illustration img {
	width: 100%;
	transition: transform 0.6s ease;
}

.ae-step-illustration:hover img {
	transform: scale(1.05);
}

.ae-step-list {
	margin-left: 1.5rem;
	margin-bottom: 1.5rem;
}

.ae-step-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
}

.ae-step-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	color: var(--ae-color-primary);
	font-weight: 700;
}

.ae-step:nth-child(odd) .ae-step-list {
	margin-left: 0;
	margin-right: 1.5rem;
}

.ae-step:nth-child(odd) .ae-step-list li {
	padding-left: 0;
	padding-right: 1.5rem;
}

.ae-step:nth-child(odd) .ae-step-list li::before {
	left: auto;
	right: 0;
}

.ae-progress-chart {
	width: 100%;
	height: 300px;
	background-color: var(--ae-color-white);
	border-radius: var(--ae-border-radius);
	box-shadow: var(--ae-shadow-md);
	padding: 1.5rem;
	position: relative;
}

.ae-progress-bar {
	height: 30px;
	margin-bottom: 1rem;
	background-color: var(--ae-color-gray-200);
	border-radius: 15px;
	overflow: hidden;
	position: relative;
}

.ae-progress-fill {
	height: 100%;
	background: linear-gradient(
		90deg,
		var(--ae-color-primary),
		var(--ae-color-secondary)
	);
	border-radius: 15px;
	transition: width 1s ease;
}

.ae-progress-label {
	position: absolute;
	top: 0;
	left: 15px;
	height: 100%;
	display: flex;
	align-items: center;
	color: var(--ae-color-white);
	font-weight: 600;
	font-size: 0.875rem;
}

.ae-progress-value {
	position: absolute;
	top: 0;
	right: 15px;
	height: 100%;
	display: flex;
	align-items: center;
	color: var(--ae-color-text);
	font-weight: 600;
	font-size: 0.875rem;
}

.ae-notes-block {
	background-color: var(--ae-color-white);
	border-radius: var(--ae-border-radius);
	box-shadow: var(--ae-shadow-md);
	padding: 1.5rem;
}

.ae-notes-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--ae-color-gray-200);
}

.ae-notes-title {
	font-size: 1.25rem;
	font-weight: 600;
}

.ae-note {
	margin-bottom: 1rem;
	padding: 1rem;
	background-color: var(--ae-color-gray-100);
	border-radius: var(--ae-border-radius);
	border-left: 4px solid var(--ae-color-secondary);
}

.ae-note-date {
	font-size: 0.875rem;
	color: var(--ae-color-text-light);
	margin-bottom: 0.5rem;
}

.ae-note-text {
	font-style: italic;
	margin-bottom: 0;
}

/* ------------------------------------ */
/* 8. Testimonials Section              */
/* ------------------------------------ */
.ae-testimonials {
	background-color: var(--ae-color-white);
	position: relative;
}

.ae-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.ae-testimonial-card {
	background-color: var(--ae-color-background);
	border-radius: var(--ae-border-radius-lg);
	box-shadow: var(--ae-shadow-md);
	padding: 2rem;
	transition: var(--ae-transition-normal);
	position: relative;
	overflow: hidden;
}

.ae-testimonial-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(
		to right,
		var(--ae-color-primary),
		var(--ae-color-secondary)
	);
}

.ae-testimonial-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--ae-shadow-lg);
}

.ae-testimonial-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.ae-testimonial-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--ae-color-primary-light);
}

.ae-testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ae-testimonial-info {
	flex-grow: 1;
}

.ae-testimonial-name {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--ae-color-primary);
}

.ae-testimonial-job {
	font-size: 0.875rem;
	color: var(--ae-color-text-light);
}

.ae-testimonial-quote {
	position: relative;
	padding-left: 1.5rem;
	font-style: italic;
	line-height: 1.8;
}

.ae-testimonial-quote::before {
	content: '"';
	position: absolute;
	left: 0;
	top: -5px;
	font-size: 2.5rem;
	color: var(--ae-color-primary-light);
	opacity: 0.5;
	line-height: 1;
}

/* ------------------------------------ */
/* 9. Pricing Section                   */
/* ------------------------------------ */
.ae-pricing {
	background-color: var(--ae-color-background);
	position: relative;
}

.ae-pricing-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.ae-pricing-card {
	background-color: var(--ae-color-white);
	border-radius: var(--ae-border-radius-lg);
	overflow: hidden;
	box-shadow: var(--ae-shadow-md);
	transition: var(--ae-transition-normal);
	position: relative;
	display: flex;
	flex-direction: column;
}

.ae-pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--ae-shadow-lg);
}

.ae-pricing-header {
	padding: 2rem;
	text-align: center;
	border-bottom: 1px solid var(--ae-color-gray-200);
}

.ae-pricing-title {
	font-size: 1.75rem;
	margin-bottom: 0.5rem;
	color: var(--ae-color-primary);
}

.ae-pricing-price {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--ae-color-text);
}

.ae-pricing-period {
	font-size: 0.875rem;
	color: var(--ae-color-text-light);
}

.ae-pricing-features {
	padding: 2rem;
	flex-grow: 1;
}

.ae-pricing-feature {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.ae-pricing-feature i {
	color: var(--ae-color-primary);
	font-size: 1.25rem;
}

.ae-pricing-action {
	padding: 0 2rem 2rem;
}

.ae-pricing-card.ae-popular {
	border: 2px solid var(--ae-color-primary);
	transform: scale(1.05);
	z-index: 2;
}

.ae-pricing-card.ae-popular:hover {
	transform: translateY(-10px) scale(1.05);
}

.ae-popular-tag {
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--ae-color-primary);
	color: var(--ae-color-white);
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
	width: 80px;
	height: 80px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding-top: 0.5rem;
}

/* ------------------------------------ */
/* 10. Contact Section                  */
/* ------------------------------------ */
.ae-contact {
	background-color: var(--ae-color-white);
	position: relative;
}

.ae-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	max-width: 800px;
	margin: 0 auto;
}

.ae-contact-form {
	background-color: var(--ae-color-background);
	border-radius: var(--ae-border-radius-lg);
	box-shadow: var(--ae-shadow-md);
	padding: 2.5rem;
}

.ae-form-group {
	margin-bottom: 1.5rem;
}

.ae-form-label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.ae-form-control {
	width: 100%;
	padding: 1rem;
	border: 1px solid var(--ae-color-gray-300);
	border-radius: var(--ae-border-radius);
	font-family: inherit;
	font-size: 1rem;
	transition: var(--ae-transition-fast);
	background-color: var(--ae-color-white);
}

.ae-form-control:focus {
	outline: none;
	border-color: var(--ae-color-primary);
	box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.2);
}

.ae-form-control::placeholder {
	color: var(--ae-color-text-lighter);
}

.ae-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.ae-form-error {
	color: var(--ae-color-error);
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ae-error-message {
	display: block;
	color: #ff4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
	position: absolute;
	top: 100%;
}

.ae-top {
	position: relative;
	top: auto;
}

.ae-form-control.ae-error {
	border-color: var(--ae-color-error);
}

.ae-form-control.ae-error + .ae-form-error {
	display: block;
}

.ae-form-submit {
	margin-top: 1rem;
	width: 100%;
}

.ae-form-submit:disabled {
	background-color: var(--ae-color-gray-400);
	cursor: not-allowed;
}

/* ------------------------------------ */
/* 11. Footer                           */
/* ------------------------------------ */
.ae-footer {
	background-color: var(--ae-color-text);
	color: var(--ae-color-white);
	position: relative;
	padding: 4rem 0 0;
}

.ae-footer-top {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.ae-footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	display: inline-block;
}

.ae-footer-tagline {
	color: var(--ae-color-gray-300);
	margin-bottom: 1.5rem;
}

.ae-footer-title {
	color: var(--ae-color-primary-light);
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.ae-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ae-footer-link {
	color: var(--ae-color-gray-300);
	transition: var(--ae-transition-fast);
}

.ae-footer-link:hover {
	color: var(--ae-color-primary-light);
	transform: translateX(5px);
}

.ae-footer-bottom {
	margin-top: 4rem;
	padding: 1.5rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	font-size: 0.875rem;
	color: var(--ae-color-gray-400);
}

.ae-footer-email {
	display: flex;
	align-items: center;
	gap: 0.5rem;

	margin-bottom: 1rem;
}

.ae-footer-email i {
	color: var(--ae-color-primary-light);
}

.ae-footer-email:hover {
	color: var(--ae-color-primary-light);
}

.ae-footer-social {
	display: flex;
	gap: 1rem;
}

.ae-social-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ae-color-white);
	transition: var(--ae-transition-fast);
}

.ae-social-icon:hover {
	background-color: var(--ae-color-primary);
	transform: translateY(-5px);
}

/* ------------------------------------ */
/* 12. Buttons & CTAs                   */
/* ------------------------------------ */
.ae-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: var(--ae-border-radius);
	font-weight: 600;
	cursor: pointer;
	transition: var(--ae-transition-normal);
	border: none;
	font-size: 1rem;
	text-align: center;
	line-height: 1.5;
}

.ae-btn-primary {
	background-color: var(--ae-color-primary);
	color: var(--ae-color-white);
	box-shadow: var(--ae-shadow-sm);
}

.ae-btn-primary:hover {
	background-color: var(--ae-color-primary-dark);
	transform: translateY(-3px);
	box-shadow: var(--ae-shadow-md);
}

.ae-btn-secondary {
	background-color: var(--ae-color-secondary);
	color: var(--ae-color-white);
	box-shadow: var(--ae-shadow-sm);
}

.ae-btn-secondary:hover {
	background-color: var(--ae-color-secondary-dark);
	transform: translateY(-3px);
	box-shadow: var(--ae-shadow-md);
}

.ae-btn-outline {
	background-color: transparent;
	color: var(--ae-color-secondary);
	border: 2px solid var(--ae-color-secondary);
}

.ae-btn-outline:hover {
	background-color: var(--ae-color-secondary);
	color: var(--ae-color-white);
	transform: translateY(-3px);
	box-shadow: var(--ae-shadow-sm);
}

.ae-btn-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.ae-btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

.ae-btn-block {
	width: 100%;
}

.ae-btn-icon {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.ae-btn i {
	font-size: 1.25rem;
}

/* ------------------------------------ */
/* 13. Forms & Inputs                   */
/* ------------------------------------ */
.ae-form {
	width: 100%;
}

.ae-input-group {
	position: relative;
	margin-bottom: 1.5rem;
}

.ae-input-icon {
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--ae-color-text-light);
	font-size: 1.25rem;
}

.ae-input-icon ~ .ae-form-control {
	padding-left: 3rem;
}

.ae-input-addon {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 0.875rem;
	color: var(--ae-color-text-light);
	user-select: none;
}

.ae-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

.ae-checkbox input[type='checkbox'] {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid var(--ae-color-gray-300);
	border-radius: var(--ae-border-radius);
	position: relative;
	cursor: pointer;
}

.ae-checkbox input[type='checkbox']:checked {
	background-color: var(--ae-color-primary);
	border-color: var(--ae-color-primary);
}

.ae-checkbox input[type='checkbox']:checked::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: var(--ae-color-white);
	font-size: 12px;
}

.ae-form-row {
	display: flex;
	gap: 1rem;
}

.ae-form-col {
	flex: 1;
}

/* ------------------------------------ */
/* 14. Cards & Panels                   */
/* ------------------------------------ */
.ae-card {
	background-color: var(--ae-color-white);
	border-radius: var(--ae-border-radius);
	box-shadow: var(--ae-shadow-md);
	overflow: hidden;
	transition: var(--ae-transition-normal);
}

.ae-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ae-shadow-lg);
}

.ae-card-image {
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.ae-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.ae-card:hover .ae-card-image img {
	transform: scale(1.1);
}

.ae-card-body {
	padding: 1.5rem;
}

.ae-card-title {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--ae-color-primary);
}

.ae-card-text {
	margin-bottom: 1.5rem;
}

.ae-card-footer {
	padding: 1rem 1.5rem;
	border-top: 1px solid var(--ae-color-gray-200);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ae-panel {
	background-color: var(--ae-color-white);
	border-radius: var(--ae-border-radius);
	box-shadow: var(--ae-shadow-md);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.ae-panel-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--ae-color-gray-200);
}

.ae-panel-title {
	font-size: 1.25rem;
	font-weight: 600;
}

.ae-panel-body {
	margin-bottom: 1rem;
}

.ae-panel-footer {
	padding-top: 1rem;
	border-top: 1px solid var(--ae-color-gray-200);
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
}

/* ------------------------------------ */
/* 15. Animations & Effects             */
/* ------------------------------------ */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes scaleUp {
	from {
		opacity: 0;
		transform: scale(0.8);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.ae-fade-in {
	animation: fadeIn 1s forwards;
}

.ae-slide-left {
	animation: slideInLeft 1s forwards;
}

.ae-slide-right {
	animation: slideInRight 1s forwards;
}

.ae-scale-up {
	animation: scaleUp 1s forwards;
}

.ae-delay-100 {
	animation-delay: 100ms;
}

.ae-delay-200 {
	animation-delay: 200ms;
}

.ae-delay-300 {
	animation-delay: 300ms;
}

.ae-delay-400 {
	animation-delay: 400ms;
}

.ae-delay-500 {
	animation-delay: 500ms;
}

/* ------------------------------------ */
/* 16. Cookie Popup                     */
/* ------------------------------------ */
.ae-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	width: 100%;
	background-color: var(--ae-color-white);
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	padding: 1.5rem 0;
	z-index: 1000;
	transition: bottom 0.5s ease;
}

.ae-cookie-popup.ae-active {
	bottom: 0;
}

.ae-cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.ae-cookie-text {
	flex-grow: 1;
	font-size: 0.95rem;
}

.ae-cookie-text a {
	color: var(--ae-color-primary);
}

.ae-cookie-actions {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

/* ------------------------------------ */
/* 17. Utilities                        */
/* ------------------------------------ */
.ae-text-center {
	text-align: center;
}

.ae-text-right {
	text-align: right;
}

.ae-text-left {
	text-align: left;
}

.ae-mt-1 {
	margin-top: 0.5rem;
}

.ae-mt-2 {
	margin-top: 1rem;
}

.ae-mt-3 {
	margin-top: 1.5rem;
}

.ae-mt-4 {
	margin-top: 2rem;
}

.ae-mt-5 {
	margin-top: 3rem;
}

.ae-mb-1 {
	margin-bottom: 0.5rem;
}

.ae-mb-2 {
	margin-bottom: 1rem;
}

.ae-mb-3 {
	margin-bottom: 1.5rem;
}

.ae-mb-4 {
	margin-bottom: 2rem;
}

.ae-mb-5 {
	margin-bottom: 3rem;
}

.ae-p-1 {
	padding: 0.5rem;
}

.ae-p-2 {
	padding: 1rem;
}

.ae-p-3 {
	padding: 1.5rem;
}

.ae-p-4 {
	padding: 2rem;
}

.ae-p-5 {
	padding: 3rem;
}

.ae-shadow {
	box-shadow: var(--ae-shadow-md);
}

.ae-shadow-lg {
	box-shadow: var(--ae-shadow-lg);
}

.ae-rounded {
	border-radius: var(--ae-border-radius);
}

.ae-rounded-lg {
	border-radius: var(--ae-border-radius-lg);
}

.ae-bg-primary {
	background-color: var(--ae-color-primary);
	color: white;
}

.ae-bg-secondary {
	background-color: var(--ae-color-secondary);
	color: white;
}

.ae-bg-white {
	background-color: var(--ae-color-white);
}

.ae-bg-light {
	background-color: var(--ae-color-background);
}

/* ------------------------------------ */
/* 18. Media Queries                    */
/* ------------------------------------ */
@media (max-width: 1200px) {
	:root {
		--ae-section-spacing: 80px;
	}

	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.25rem;
	}

	.ae-hero-title {
		font-size: 3.5rem;
	}

	.ae-hero-subtitle {
		font-size: 1.35rem;
	}

	.ae-hero-illustration {
		height: 450px;
	}

	.ae-gallery {
		grid-template-columns: repeat(3, 1fr);
	}

	.ae-pricing-grid {
		gap: 1.5rem;
	}
}

.ae-mobile-menu {
	display: none;
}

@media (max-width: 1050px) {
	.ae-nav {
		display: none;
	}

	.ae-mobile-toggle {
		display: block;
	}

	.ae-header-contact {
		display: none;
	}

	.ae-mobile-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		height: 100vh;
		background-color: var(--ae-color-white);
		z-index: 1000;
		box-shadow: var(--ae-shadow-lg);
		transition: left 0.3s ease;
		padding: 2rem;
		display: flex;
		flex-direction: column;
	}

	.ae-mobile-menu.ae-active {
		left: 0;
	}

	.ae-mobile-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 2rem;
		padding-bottom: 1rem;
		border-bottom: 1px solid var(--ae-color-gray-200);
	}

	.ae-mobile-nav {
		margin-bottom: 2rem;
	}

	.ae-mobile-nav-item {
		margin-bottom: 1rem;
	}

	.ae-mobile-nav-link {
		font-size: 1.25rem;
		font-weight: 600;
		display: block;
		padding: 0.5rem 0;
	}

	.ae-mobile-contact {
		margin-top: auto;
		padding-top: 1rem;
		border-top: 1px solid var(--ae-color-gray-200);
	}

	.ae-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		z-index: 999;
		opacity: 0;
		visibility: hidden;
		transition:
			opacity 0.3s ease,
			visibility 0.3s ease;
	}

	.ae-overlay.ae-active {
		opacity: 1;
		visibility: visible;
	}
}

@media (max-width: 992px) {
	:root {
		--ae-section-spacing: 70px;
	}

	h1 {
		font-size: 2.75rem;
	}

	h2 {
		font-size: 2rem;
	}

	.ae-section-title {
		font-size: 2.25rem;
	}

	.ae-hero-title {
		font-size: 3rem;
	}

	.ae-hero-subtitle {
		font-size: 1.25rem;
	}

	.ae-hero .ae-container {
		display: flex;
		flex-direction: column;
	}

	.ae-hero-content {
		text-align: center;
		margin-bottom: 3rem;
	}

	.ae-hero-buttons {
		justify-content: center;
	}

	.ae-hero-illustration {
		height: 400px;
	}

	.ae-pricing-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.ae-pricing-card.ae-popular {
		grid-column: span 2;
		margin-bottom: 2rem;
	}

	.ae-testimonials-grid {
		grid-template-columns: 1fr;
	}

	.ae-gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.ae-quote-image {
		flex: 0 0 100px;
		height: 100px;
	}

	.ae-quote-text {
		font-size: 1.25rem;
	}

	.ae-step-marker {
		width: 50px;
		height: 50px;
		font-size: 1.25rem;
	}

	.ae-footer-top {
		grid-template-columns: repeat(2, 1fr);
	}

	.ae-nav-list {
		gap: 1.25rem;
	}

	.ae-header-inner {
		padding: 0 1rem;
	}
}

@media (max-width: 768px) {
	:root {
		--ae-section-spacing: 60px;
		--ae-header-height: 70px;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.ae-section-title {
		font-size: 2rem;
	}

	.ae-hero-title {
		font-size: 2.5rem;
	}

	.ae-hero-subtitle {
		font-size: 1.15rem;
	}

	.ae-hero-illustration {
		height: 350px;
	}

	.ae-gallery {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.ae-testimonials-grid {
		gap: 1.5rem;
	}

	.ae-steps::before {
		display: none;
	}

	.ae-step {
		flex-direction: column;
		margin-bottom: 4rem;
		text-align: center;
	}

	.ae-step:nth-child(odd) {
		flex-direction: column;
	}

	.ae-step-marker {
		position: relative;
		left: auto;
		transform: none;
		margin: 1rem auto 1rem;
	}

	.ae-step-content {
		flex: 0 0 100%;
		max-width: 100%;
		padding: 0 !important;
		text-align: center !important;
	}

	.ae-step-visual {
		flex: 0 0 100%;
		max-width: 100%;
		margin-top: 1.5rem;
	}

	.ae-step-list {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.ae-step-list li {
		padding-left: 1.5rem !important;
		padding-right: 0 !important;
		text-align: left;
	}

	.ae-step-list li::before {
		left: 0 !important;
		right: auto !important;
	}

	.ae-pricing-grid {
		grid-template-columns: 1fr;
	}

	.ae-pricing-card.ae-popular {
		grid-column: auto;
		transform: scale(1);
	}

	.ae-pricing-card:hover {
		transform: translateY(-10px) scale(1);
	}

	.ae-pricing-card.ae-popular:hover {
		transform: translateY(-10px) scale(1);
	}

	.ae-form-row {
		flex-direction: column;
		gap: 1.5rem;
	}

	.ae-quote-item {
		flex-direction: column;
		text-align: center;
	}

	.ae-quote-image {
		margin: 0 auto 1rem;
	}

	.ae-quote-text {
		padding-left: 0;
	}

	.ae-quote-text::before {
		left: 50%;
		transform: translateX(-50%);
	}

	.ae-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.ae-cookie-actions {
		flex-direction: column;
		width: 100%;
	}

	.ae-footer-top {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 576px) {
	:root {
		--ae-section-spacing: 50px;
	}

	h1 {
		font-size: 2.25rem;
	}

	h2 {
		font-size: 1.5rem;
	}

	.ae-section-title {
		font-size: 1.75rem;
	}

	.ae-hero-title {
		font-size: 1.5rem;
	}

	.ae-hero-subtitle {
		font-size: 1rem;
	}

	.ae-hero-illustration {
		height: 300px;
	}

	.ae-soul-animation {
		width: 250px;
		height: 250px;
	}

	.ae-soul-inner {
		width: 150px;
		height: 150px;
	}

	.ae-container {
		padding: 0 1rem;
	}

	.ae-testimonial-header {
		flex-direction: column;
		text-align: center;
	}

	.ae-testimonial-avatar {
		margin: 0 auto 1rem;
	}

	.ae-logo {
		font-size: 1.5rem;
	}

	.ae-mobile-menu {
		width: 100%;
	}
}

.ae-cookies-page,
.ae-terms-page,
.ae-privacy-page {
	background-color: var(--ae-color-background);
	color: var(--ae-color-text);

	line-height: 1.6;
	padding: 2rem 0;
}

.ae-page-header {
	text-align: center;
	margin-bottom: 3rem;
	padding: 4rem 0;
	border-bottom: 2px solid var(--ae-color-primary-light);
}

.ae-page-title {
	color: var(--ae-color-primary);
	font-size: 2.8rem;
	margin: 0;
}

.ae-page-content {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
	padding: 3rem;
}

.ae-page-section {
	margin-bottom: 3rem;
}

.ae-page-section-title {
	color: var(--ae-color-primary);
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid var(--ae-color-primary-light);
}

.ae-page-section h3 {
	color: var(--ae-color-primary-dark);
	font-size: 1.3rem;
	margin-top: 1.5rem;
}

.ae-page-section ul {
	margin: 1.5rem 0;
}

.ae-page-section li {
	margin-bottom: 0.8rem;
	position: relative;
	padding-left: 1.2rem;
}

.ae-page-section li::before {
	content: '•';
	color: var(--ae-color-primary);
	position: absolute;
	left: 0;
}

.ae-page-section a {
	color: var(--ae-color-primary);
	text-decoration: none;
	transition: color 0.3s ease;
}

.ae-page-section a:hover {
	color: var(--ae-color-primary-dark);
	text-decoration: underline;
}

.ae-mb-2 {
	margin-bottom: 0.5rem;
}
.ae-mt-3 {
	margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.ae-container {
		padding: 0 1rem;
	}

	.ae-page-title {
		font-size: 2rem;
	}

	.ae-page-content {
		padding: 2rem;
	}

	.ae-page-section-title {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.ae-page-content {
		padding: 1.5rem;
	}

	.ae-page-section {
		margin-bottom: 2rem;
	}
}
