@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Poppins:wght@400;600;700&display=swap');

/* CSS Variables for Design System */
:root {
	--ae-bg-primary: #f5f7fa;
	--ae-bg-white: #ffffff;
	--ae-accent-blue: #1976d2;
	--ae-accent-orange: #ff5722;
	--ae-accent-green: #43a047;
	--ae-text-dark: #212121;
	--ae-text-gray: #757575;
	--ae-footer-bg: #eceff1;
	--ae-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--ae-shadow-hover: 0 4px 20px rgba(25, 118, 210, 0.3);
	--ae-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--ae-border-radius: 8px;
	--ae-font-primary: 'Roboto', sans-serif;
	--ae-font-heading: 'Poppins', sans-serif;
}

/* Reset and Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--ae-font-primary);
	font-weight: 400;
	line-height: 1.6;
	color: var(--ae-text-dark);
	background-color: var(--ae-bg-primary);
	overflow-x: hidden;
}

/* Typography */
.ae-heading-1 {
	font-family: var(--ae-font-heading);
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.2;
	color: var(--ae-text-dark);
	margin-bottom: 1rem;
}

.ae-heading-2 {
	font-family: var(--ae-font-heading);
	font-weight: 600;
	font-size: 2.5rem;
	line-height: 1.3;
	color: var(--ae-accent-blue);
	margin-bottom: 1rem;
}

.ae-heading-3 {
	font-family: var(--ae-font-heading);
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.4;
	color: var(--ae-text-dark);
	margin-bottom: 0.75rem;
}

.ae-heading-4 {
	font-family: var(--ae-font-heading);
	font-weight: 600;
	font-size: 1.5rem;
	word-wrap: break-word;
	line-height: 1.4;
	color: var(--ae-text-dark);
	margin-bottom: 0.5rem;
}

.ae-text-large {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--ae-text-gray);
}

.ae-text-small {
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--ae-text-gray);
}

/* Layout Utilities */
.ae-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ae-section {
	padding: 4rem 20px;
}

.ae-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}
.ae-col-third {
	height: 100%;
	display: flex;
	flex-direction: column;
}
/* Header Styles */
.ae-header {
	background-color: var(--ae-bg-white);
	box-shadow: var(--ae-shadow);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: var(--ae-transition);
}

.ae-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.ae-logo {
	font-family: var(--ae-font-heading);
	font-weight: 700;
	font-size: 1.75rem;
	text-decoration: none;
	color: var(--ae-accent-blue);
	transition: var(--ae-transition);
}

.ae-logo span {
	color: var(--ae-accent-orange);
}

.ae-logo:hover {
	transform: translateY(-2px);
}

.ae-nav {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 1rem;
}

.ae-nav-link {
	text-decoration: none;
	color: var(--ae-text-dark);
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: var(--ae-border-radius);
	transition: var(--ae-transition);
	position: relative;
}

.ae-nav-link:hover,
.ae-nav-link.ae-active {
	color: var(--ae-accent-blue);
	background-color: rgba(25, 118, 210, 0.1);
}

.ae-nav-link::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: var(--ae-accent-blue);
	transition: var(--ae-transition);
	transform: translateX(-50%);
}

.ae-nav-link:hover::after,
.ae-nav-link.ae-active::after {
	width: 100%;
}

/* Mobile Menu */
.ae-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
}

.ae-mobile-toggle span {
	width: 25px;
	height: 3px;
	background-color: var(--ae-text-dark);
	margin: 3px 0;
	transition: var(--ae-transition);
}

.ae-mobile-menu {
	position: fixed;
	top: 0;
	right: -300px;
	width: 300px;
	height: 100vh;
	background-color: var(--ae-bg-white);
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	transition: var(--ae-transition);
	z-index: 1001;
	padding: 2rem;
}

.ae-mobile-menu.ae-active {
	right: 0;
}

.ae-mobile-nav {
	list-style: none;
	margin-top: 2rem;
}

.ae-mobile-nav li {
	margin: 1rem 0;
}

.ae-mobile-nav .ae-nav-link {
	display: block;
	padding: 1rem;
	font-size: 1.1rem;
}

.ae-mobile-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: var(--ae-text-dark);
}

/* Hero Section */
.ae-hero {
	padding: 8rem 0 4rem;
	background: linear-gradient(
			135deg,
			rgba(25, 118, 210, 0.1) 0%,
			rgba(245, 247, 250, 0.7) 100%
		),
		url('assets/ae-hero.webp') center/cover no-repeat;
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.ae-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(245, 247, 250, 0.8);
	z-index: 1;
}

.ae-hero-content {
	position: relative;
	z-index: 2;
}

.ae-hero-text {
	max-width: 60%;
}

.ae-hero .ae-heading-1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
	animation: ae-fadeInUp 1s ease-out;
}

.ae-hero .ae-text-large {
	margin-bottom: 2rem;
	animation: ae-fadeInUp 1s ease-out 0.2s both;
}

.ae-hero-buttons {
	display: flex;
	gap: 1rem;
	animation: ae-fadeInUp 1s ease-out 0.4s both;
}

/* Buttons */
.ae-btn {
	display: inline-flex;
	align-items: center;
	padding: 1rem 2rem;
	border: none;
	border-radius: var(--ae-border-radius);
	text-decoration: none;
	font-family: var(--ae-font-primary);
	font-weight: 500;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--ae-transition);
	position: relative;
	overflow: hidden;
}

.ae-btn-primary {
	background-color: var(--ae-accent-blue);
	color: var(--ae-bg-white);
}

.ae-btn-primary:hover {
	background-color: #1565c0;
	transform: translateY(-2px);
	box-shadow: var(--ae-shadow-hover);
}

.ae-btn-secondary {
	background-color: transparent;
	color: var(--ae-accent-blue);
	border: 2px solid var(--ae-accent-blue);
}

.ae-btn-secondary:hover {
	background-color: var(--ae-accent-blue);
	color: var(--ae-bg-white);
	transform: translateY(-2px);
}

.ae-btn-accent {
	background-color: var(--ae-accent-orange);
	color: var(--ae-bg-white);
}

.ae-btn-accent:hover {
	background-color: #e64a19;
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(255, 87, 34, 0.3);
}

/* Card Styles */
.ae-card {
	background-color: var(--ae-bg-white);
	border-radius: var(--ae-border-radius);
	box-shadow: var(--ae-shadow);
	padding: 2rem;
	margin-bottom: 2rem;
	transition: var(--ae-transition);
	position: relative;
	overflow: hidden;
	height: 100%;
}

.ae-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--ae-shadow-hover);
}

.ae-card-icon {
	width: 60px;
	height: 60px;
	background-color: var(--ae-accent-blue);
	border-radius: 50%;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	justify-content: center;
	color: var(--ae-bg-white);
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.ae-card-title {
	font-family: var(--ae-font-heading);
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--ae-text-dark);
	margin-bottom: 1rem;
}

.ae-card-text {
	color: var(--ae-text-gray);
	line-height: 1.6;
}

/* Services Grid */
.ae-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin: 3rem 0;
}

.ae-service-card {
	background-color: var(--ae-bg-white);
	border-radius: var(--ae-border-radius);
	overflow: hidden;
	box-shadow: var(--ae-shadow);
	transition: var(--ae-transition);
	position: relative;
}

.ae-service-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--ae-shadow-hover);
}

.ae-service-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.ae-service-content {
	padding: 2rem;
}

.ae-service-title {
	font-family: var(--ae-font-heading);
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--ae-accent-blue);
	margin-bottom: 1rem;
	word-wrap: break-word;
}

.ae-service-desc {
	color: var(--ae-text-gray);
	margin-bottom: 1.5rem;
}

.ae-service-features {
	list-style: none;
}

.ae-service-features li {
	display: flex;
	align-items: center;
	margin-bottom: 0.5rem;
	color: var(--ae-text-gray);
}

.ae-service-features li::before {
	content: '✓';
	color: var(--ae-accent-green);
	font-weight: bold;
	margin-right: 0.5rem;
}

/* Testimonials */
.ae-testimonials {
	background-color: var(--ae-bg-white);
	padding: 4rem 0;
}

.ae-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.ae-testimonial {
	background-color: var(--ae-bg-primary);
	padding: 2rem;
	border-radius: var(--ae-border-radius);
	position: relative;
	border-left: 4px solid var(--ae-accent-blue);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ae-testimonial-text {
	font-style: italic;
	color: var(--ae-text-gray);
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.6;
}

.ae-testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-direction: column;
	flex-grow: 1;
	text-align: center;
}

.ae-testimonial-avatar {
	width: 50px;
	margin-top: auto;
	height: 50px;
	border-radius: 50%;
	background-color: var(--ae-accent-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--ae-bg-white);
	font-weight: bold;
	font-size: 1.2rem;
}

.ae-testimonial-avatar img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.ae-testimonial-info {
	flex: 1;
}

.ae-testimonial-name {
	font-weight: 600;
	color: var(--ae-text-dark);
	margin-bottom: 0.25rem;
}

.ae-testimonial-position {
	font-size: 0.875rem;
	color: var(--ae-text-gray);
}

/* Map Section */
.ae-map {
	height: 100%;
	min-height: 400px;

	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ae-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ae-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 1rem;
	/* overflow: hidden; */
}

.ae-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* Forms */
.ae-form {
	background-color: var(--ae-bg-white);
	padding: 3rem;
	border-radius: var(--ae-border-radius);
	box-shadow: var(--ae-shadow);
}

.ae-form-group {
	margin-bottom: 2rem;
}

.ae-form-label {
	display: block;
	font-weight: 500;
	color: var(--ae-text-dark);
	margin-bottom: 0.5rem;
}

.ae-form-input,
.ae-form-textarea,
.ae-form-select {
	width: 100%;
	padding: 1rem;
	border: 2px solid #e0e0e0;
	border-radius: var(--ae-border-radius);
	font-family: var(--ae-font-primary);
	font-size: 1rem;
	transition: var(--ae-transition);
	background-color: var(--ae-bg-white);
}

.ae-form-input:focus,
.ae-form-textarea:focus,
.ae-form-select:focus {
	outline: none;
	border-color: var(--ae-accent-blue);
	box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

.ae-form-textarea {
	min-height: 120px;
	resize: vertical;
}

.ae-form-error {
	color: #d32f2f;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.ae-form-error.ae-show {
	display: block;
}

.ae-form-input.ae-error,
.ae-form-textarea.ae-error {
	border-color: #d32f2f;
}

/* Tables */
.ae-table {
	width: 100%;
	border-collapse: collapse;
	background-color: var(--ae-bg-white);
	border-radius: var(--ae-border-radius);
	overflow: hidden;
	box-shadow: var(--ae-shadow);
	margin: 2rem 0;
}

.ae-table th,
.ae-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #e0e0e0;
}

.ae-table th {
	background-color: var(--ae-accent-blue);
	color: var(--ae-bg-white);
	font-weight: 600;
}

.ae-table tr:hover {
	background-color: rgba(25, 118, 210, 0.05);
}

/* Tabs */
.ae-tabs {
	margin: 2rem 0;
}

.ae-tab-nav {
	display: flex;
	flex-wrap: wrap;
	background-color: var(--ae-bg-white);
	border-radius: var(--ae-border-radius) var(--ae-border-radius) 0 0;
	overflow: hidden;
	box-shadow: var(--ae-shadow);
}

.ae-tab-button {
	flex: 1;
	padding: 1rem 2rem;
	background-color: transparent;
	border: none;
	font-family: var(--ae-font-primary);
	font-size: 1rem;
	font-weight: 500;
	color: var(--ae-text-gray);
	cursor: pointer;
	transition: var(--ae-transition);
	border-bottom: 3px solid transparent;
}

.ae-tab-button:hover,
.ae-tab-button.ae-active {
	background-color: rgba(25, 118, 210, 0.1);
	color: var(--ae-accent-blue);
	border-bottom-color: var(--ae-accent-blue);
}

.ae-tab-content {
	background-color: var(--ae-bg-white);
	padding: 2rem;
	border-radius: 0 0 var(--ae-border-radius) var(--ae-border-radius);
	box-shadow: var(--ae-shadow);
	display: none;
}

.ae-tab-content.ae-active {
	display: block;
}

/* Accordion */
.ae-accordion {
	margin: 2rem 0;
}

.ae-accordion-item {
	background-color: var(--ae-bg-white);
	border-radius: var(--ae-border-radius);
	box-shadow: var(--ae-shadow);
	margin-bottom: 1rem;
	overflow: hidden;
}

.ae-accordion-header {
	padding: 1.5rem 2rem;
	background-color: var(--ae-bg-white);
	border: none;
	width: 100%;
	text-align: left;
	font-family: var(--ae-font-heading);
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--ae-text-dark);
	cursor: pointer;
	transition: var(--ae-transition);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ae-accordion-header:hover {
	background-color: rgba(25, 118, 210, 0.05);
}

.ae-accordion-header.ae-active {
	background-color: var(--ae-accent-blue);
	color: var(--ae-bg-white);
}

.ae-accordion-icon {
	transition: var(--ae-transition);
}

.ae-accordion-header.ae-active .ae-accordion-icon {
	transform: rotate(180deg);
}

.ae-accordion-content {
	padding: 0 2rem;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.ae-accordion-content.ae-active {
	padding: 1.5rem 2rem;
	max-height: 1500px;
}

/* Modal */
.ae-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2000;
	opacity: 0;
	visibility: hidden;
	transition: var(--ae-transition);
}

.ae-modal.ae-active {
	opacity: 1;
	visibility: visible;
}

.ae-modal-content {
	background-color: var(--ae-bg-white);
	border-radius: var(--ae-border-radius);
	max-width: 500px;
	width: 90%;
	max-height: 90%;
	overflow-y: auto;
	position: relative;
	transform: translateY(-50px);
	transition: var(--ae-transition);
}

.ae-modal.ae-active .ae-modal-content {
	transform: translateY(0);
}

.ae-modal-header {
	padding: 2rem 2rem 1rem;
	border-bottom: 1px solid #e0e0e0;
}

.ae-modal-title {
	font-family: var(--ae-font-heading);
	font-weight: 600;
	font-size: 1.5rem;
	color: var(--ae-text-dark);
	margin: 0;
}

.ae-modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--ae-text-gray);
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: var(--ae-transition);
}

.ae-modal-close:hover {
	background-color: rgba(0, 0, 0, 0.1);
	color: var(--ae-text-dark);
}

.ae-modal-body {
	padding: 2rem;
}

/* Cookie Banner */
.ae-cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--ae-text-dark);
	color: var(--ae-bg-white);
	padding: 1rem 2rem;
	z-index: 1500;
	transform: translateY(100%);
	transition: var(--ae-transition);
}

.ae-cookie-banner.ae-show {
	transform: translateY(0);
}

.ae-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
}

.ae-cookie-text {
	flex: 1;
}

.ae-cookie-text a {
	color: var(--ae-accent-orange);
	text-decoration: underline;
}

.ae-cookie-buttons {
	display: flex;
	gap: 1rem;
}

.ae-cookie-btn {
	padding: 0.75rem 1.5rem;
	background-color: var(--ae-accent-blue);
	color: var(--ae-bg-white);
	border: none;
	border-radius: var(--ae-border-radius);
	cursor: pointer;
	font-weight: 500;
	transition: var(--ae-transition);
}

.ae-cookie-btn:hover {
	background-color: #1565c0;
}

/* Charts Container */
.ae-chart-container {
	background-color: var(--ae-bg-white);
	padding: 2rem;
	border-radius: var(--ae-border-radius);
	box-shadow: var(--ae-shadow);
	margin: 2rem 0;
}

.ae-chart-title {
	font-family: var(--ae-font-heading);
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--ae-text-dark);
	margin-bottom: 1rem;
	text-align: center;
}

/* Footer */
.ae-footer {
	background-color: var(--ae-footer-bg);
	padding: 3rem 0 1rem;
}

.ae-footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.ae-footer-section h3 {
	font-family: var(--ae-font-heading);
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--ae-text-dark);
	margin-bottom: 1rem;
}

.ae-footer-section p,
.ae-footer-section li {
	color: var(--ae-text-gray);
	margin-bottom: 0.5rem;
}

.ae-footer-nav {
	list-style: none;
}

.ae-footer-nav a {
	color: var(--ae-text-gray);
	text-decoration: none;
	transition: var(--ae-transition);
}

.ae-footer-nav a:hover {
	color: var(--ae-accent-blue);
}

.ae-social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.ae-social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: var(--ae-accent-blue);
	color: var(--ae-bg-white);
	border-radius: 50%;
	text-decoration: none;
	transition: var(--ae-transition);
}

.ae-social-link:hover {
	background-color: var(--ae-accent-orange);
	transform: translateY(-2px);
}

.ae-footer-bottom {
	border-top: 1px solid #bdbdbd;
	padding-top: 1rem;
	text-align: center;
	color: var(--ae-text-gray);
}

/* Animations */
@keyframes ae-fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes ae-fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes ae-fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ae-fadeInRight {
	from {
		opacity: 0;
		transform: translateX(30px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes ae-slideInDown {
	from {
		transform: translateY(-100%);
	}
	to {
		transform: translateY(0);
	}
}

.ae-animate-fadeIn {
	animation: ae-fadeIn 1s ease-out;
}

.ae-animate-fadeInUp {
	animation: ae-fadeInUp 1s ease-out;
}

.ae-animate-fadeInLeft {
	animation: ae-fadeInLeft 1s ease-out;
}

.ae-animate-fadeInRight {
	animation: ae-fadeInRight 1s ease-out;
}

/* Utility Classes */
.ae-text-center {
	text-align: center;
}

.ae-text-left {
	text-align: left;
}

.ae-text-right {
	text-align: right;
}

.ae-mb-0 {
	margin-bottom: 0;
}
.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-mt-0 {
	margin-top: 0;
}
.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-hidden {
	display: none;
}

.ae-visible {
	display: block;
}

.ae-flex {
	display: flex;
}

.ae-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.ae-flex-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ae-flex-column {
	display: flex;
	flex-direction: column;
}

.ae-col-half,
.ae-col-third,
.ae-col-quarter {
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.ae-nav {
		gap: 0;
	}
}

@media (max-width: 920px) {
	.ae-nav {
		display: none;
	}

	.ae-mobile-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.ae-hero .ae-heading-1 {
		font-size: 2.5rem;
	}

	.ae-hero-text {
		max-width: 100%;
	}

	.ae-hero-buttons {
		flex-direction: column;
		align-items: flex-start;
	}

	.ae-row {
		grid-template-columns: 1fr;
	}

	.ae-col-half,
	.ae-col-third,
	.ae-col-quarter {
		flex: none;
		width: 100%;
		height: 100%;
	}

	.ae-footer-content {
		grid-template-columns: 1fr;
	}

	.ae-cookie-content {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.ae-cookie-buttons {
		width: 100%;
		justify-content: flex-end;
	}

	.ae-services-grid {
		grid-template-columns: 1fr;
	}

	.ae-testimonials-grid {
		grid-template-columns: 1fr;
	}

	.ae-container {
		padding: 0 1rem;
	}

	.ae-section {
		padding: 2rem 0;
	}

	.ae-form {
		padding: 2rem;
	}
}

@media (max-width: 480px) {
	.ae-header-content {
		padding: 1rem;
	}

	.ae-row {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.ae-hero .ae-heading-1 {
		font-size: 2rem;
	}

	.ae-heading-2 {
		font-size: 2rem;
		word-wrap: break-word;
	}

	.ae-accordion-content.ae-active {
		padding: 1rem;
	}

	.ae-heading-3 {
		font-size: 1.5rem;
	}

	.ae-btn {
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
	}

	.ae-form {
		padding: 1.5rem;
	}

	.ae-modal-content {
		width: 95%;
	}

	.ae-modal-header,
	.ae-modal-body {
		padding: 1.5rem;
	}

	.ae-tab-nav {
		flex-direction: column;
		flex-wrap: nowrap;
	}
	.ae-tab-content {
		padding: 1rem;
	}
}

/* Page Header */
.ae-page-header {
	background: linear-gradient(135deg, #1976d2, #1565c0);
	color: #ffffff;
	padding: 150px 40px;
	border-radius: 16px;
	margin-bottom: 40px;
	box-shadow: 0 8px 32px rgba(25, 118, 210, 0.25);
	position: relative;
	overflow: hidden;
}

.ae-page-header::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	z-index: 0;
}

.ae-page-header::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -5%;
	width: 200px;
	height: 200px;
	background: rgba(67, 160, 71, 0.15);
	border-radius: 50%;
	z-index: 0;
}

.ae-main-title {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.ae-meta-info {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	z-index: 1;
}

.ae-date,
.ae-company {
	display: inline-block;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 25px;
	margin-right: 16px;
	font-size: 14px;
	font-weight: 500;
	backdrop-filter: blur(10px);
}

/* Content Wrapper */
.ae-content-wrapper {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	margin: 2rem 0;
	border: 1px solid rgba(25, 118, 210, 0.1);
}

/* Intro Section */
.ae-intro-section {
	padding: 40px;
	background: linear-gradient(
		135deg,
		rgba(25, 118, 210, 0.05),
		rgba(67, 160, 71, 0.05)
	);
	border-bottom: 2px solid rgba(25, 118, 210, 0.1);
}

.ae-intro-text {
	font-size: 18px;
	line-height: 1.8;
	color: #424242;
	margin: 0;
	font-weight: 400;
}

.ae-section:last-child {
	border-bottom: none;
}

.ae-section:hover {
	background: rgba(25, 118, 210, 0.02);
}

.ae-section-header {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
	gap: 20px;
}

.ae-section-number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #1976d2, #1565c0);
	color: #ffffff;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 700;
	box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
	flex-shrink: 0;
}

.ae-section-title {
	font-size: 28px;
	font-weight: 700;
	color: #212121;
	margin: 0;
	flex-grow: 1;
}

.ae-section-content {
	margin-left: 70px;
}

.ae-section-content p {
	margin-bottom: 20px;
	line-height: 1.8;
	color: #424242;
}

.ae-section-content p:last-child {
	margin-bottom: 0;
}

/* Lists */
.ae-list {
	margin: 20px 0;
	padding-left: 0;
	list-style: none;
}

.ae-list li {
	padding: 12px 0;
	padding-left: 40px;
	position: relative;
	line-height: 1.7;
	color: #424242;
	border-bottom: 1px solid rgba(25, 118, 210, 0.05);
}

.ae-list li:last-child {
	border-bottom: none;
}

.ae-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 20px;
	width: 8px;
	height: 8px;
	background: linear-gradient(135deg, #ff5722, #e64a19);
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(255, 87, 34, 0.3);
}

.ae-list li strong {
	color: #1976d2;
	font-weight: 600;
}

/* Contact Info */
.ae-contact-info {
	background: linear-gradient(
		135deg,
		rgba(25, 118, 210, 0.08),
		rgba(67, 160, 71, 0.08)
	);
	padding: 30px;
	border-radius: 12px;
	margin: 24px 0;
	border-left: 4px solid #1976d2;
}

.ae-contact-info p {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 1.6;
}

.ae-contact-info p:last-child {
	margin-bottom: 0;
}

.ae-contact-info strong {
	color: #1976d2;
	font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
	.ae-container {
		padding: 20px 16px;
	}

	.ae-main-title {
		font-size: 32px;
	}

	.ae-content-wrapper .ae-section {
		padding: 20px;
	}

	.ae-section-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.ae-section-content {
		margin-left: 0;
	}

	.ae-section-title {
		font-size: 24px;
	}

	.ae-intro-section {
		padding: 30px 24px;
	}

	.ae-contact-info {
		padding: 24px;
	}
}

@media (max-width: 480px) {
	.ae-tab-button {
		padding: 14px 16px;
		font-size: 14px;
	}

	.ae-main-title {
		font-size: 1.5rem;
		word-break: break-all;
		line-height: 1.3;
	}

	.ae-section-title {
		font-size: 22px;
		line-height: 1.4;
	}

	.ae-intro-section {
		padding: 24px 20px;
	}

	.ae-intro-text {
		font-size: 16px;
	}
}
