/* Base Styles and Variables */
:root {
  --eae-primary: #1E293B;
  --eae-secondary: #0F9D58;
  --eae-accent: #FFC107;
  --eae-dark-bg: #121921;
  --eae-light-text: #F3F4F6;
  --eae-muted-text: #94A3B8;
  --eae-border: #334155;
  --eae-hover: #2C3E50;
  --eae-success: #22c55e;
  --eae-error: #ef4444;
  --eae-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  --eae-subtle-noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23ffffff' fill-opacity='0.03' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

/* Global Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--eae-dark-bg);
  color: var(--eae-light-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-image: var(--eae-subtle-noise);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--eae-light-text);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--eae-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--eae-accent);
  text-decoration: underline;
}

option {
  color: var(--eae-primary);
}

/* Layout */
.eae-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .eae-wrapper {
    padding: 0 2rem;
  }
}

/* Overlapping Layers */
.eae-overlap-section {
  position: relative;
  z-index: 1;
  margin: 3rem 0;
}

.eae-overlap-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background-color: var(--eae-primary);
  border-radius: 0.5rem;
  box-shadow: var(--eae-shadow);
  margin-bottom: 3rem;
}

.eae-overlap-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--eae-shadow);
}

.eae-overlap-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.eae-overlap-image:hover img {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .eae-overlap-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .eae-overlap-section.eae-reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }
  
  .eae-overlap-section.eae-reverse > * {
    direction: ltr;
  }
  
  .eae-overlap-image {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    margin-right: -3rem;
  }
  
  .eae-overlap-content {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-left: -3rem;
  }
  
  .eae-reverse .eae-overlap-image {
    grid-column: 2 / 3;
    margin-right: 0;
    margin-left: -3rem;
  }
  
  .eae-reverse .eae-overlap-content {
    grid-column: 1 / 2;
    margin-left: 0;
    margin-right: -3rem;
  }
}

/* Header */
.eae-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(18, 25, 33, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 1rem 0;
}

.eae-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eae-logo {
  display: flex;
  align-items: center;
  z-index: 101;
}

.eae-logo svg, .eae-logo img {
  height: 40px;
  width: auto;
}

.eae-nav-toggle {
  background: none;
  border: none;
  color: var(--eae-light-text);
  font-size: 1.5rem;
  cursor: pointer;
  display: block;
  z-index: 101;
}

@media (min-width: 768px) {
  .eae-nav-toggle {
    display: none;
  }
}

.eae-navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--eae-dark-bg);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  z-index: 100;
}

.eae-navigation.eae-active {
  transform: translateX(0);
}

.eae-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .eae-navigation {
    position: static;
    height: auto;
    transform: none;
    background-color: transparent;
    padding: 0;
    width: auto;
    flex-direction: row;
  }
  
  .eae-nav-list {
    flex-direction: row;
    gap: 2rem;
  }
}

.eae-nav-link {
  color: var(--eae-light-text);
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.eae-nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--eae-accent);
  transition: width 0.3s ease;
}

.eae-nav-link:hover::after,
.eae-nav-link.eae-active::after {
  width: 100%;
}

.eae-nav-link:hover,
.eae-nav-link:focus,
.eae-nav-link.eae-active {
  color: var(--eae-accent);
  text-decoration: none;
}

/* Hero Section */
.eae-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  overflow: hidden;
}

.eae-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 25, 33, 0.7);
  z-index: 1;
}

.eae-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.eae-hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--eae-light-text);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.eae-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--eae-muted-text);
}

@media (min-width: 768px) {
  .eae-hero-title {
    font-size: 3.5rem;
  }
  
  .eae-hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Buttons */
.eae-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  font-family: 'Source Sans 3', sans-serif;
}

.eae-btn-primary {
  background-color: var(--eae-secondary);
  color: white;
}

.eae-btn-primary:hover,
.eae-btn-primary:focus {
  background-color: #0c8048;
  color: white;
  text-decoration: none;
}

.eae-btn-secondary {
  background-color: transparent;
  color: var(--eae-light-text);
  border: 2px solid var(--eae-light-text);
}

.eae-btn-secondary:hover,
.eae-btn-secondary:focus {
  background-color: var(--eae-light-text);
  color: var(--eae-dark-bg);
  text-decoration: none;
}

.eae-btn-accent {
  background-color: var(--eae-accent);
  color: var(--eae-primary);
}

.eae-btn-accent:hover,
.eae-btn-accent:focus {
  background-color: #e6ac00;
  color: var(--eae-primary);
  text-decoration: none;
}

/* Cards */
.eae-card {
  background-color: var(--eae-primary);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--eae-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.eae-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
}

.eae-card-image {
  height: 200px;
  width: 100%;
  overflow: hidden;
}

.eae-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.eae-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.eae-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--eae-light-text);
}

.eae-card-text {
  color: var(--eae-muted-text);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.eae-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

/* Grid System */
.eae-grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

.eae-grid-2 {
  grid-template-columns: 1fr;
}

.eae-grid-3 {
  grid-template-columns: 1fr;
}

.eae-grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .eae-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .eae-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .eae-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .eae-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .eae-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Sections */
.eae-section {
  padding: 4rem 0;
  position: relative;
}

.eae-section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.eae-section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--eae-accent);
}

/* Features */
.eae-feature {
  text-align: center;
  padding: 2rem;
  background-color: var(--eae-primary);
  border-radius: 0.5rem;
  box-shadow: var(--eae-shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

.eae-feature:hover {
  transform: translateY(-10px);
}

.eae-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--eae-accent);
}

.eae-feature-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.eae-feature-text {
  color: var(--eae-muted-text);
}

/* Forms */
.eae-form {
  background-color: var(--eae-primary);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--eae-shadow);
}

.eae-form-group {
  margin-bottom: 1.5rem;
}

.eae-form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.eae-form-input,
.eae-form-textarea,
.eae-form-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--eae-border);
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--eae-light-text);
  font-family: 'Source Sans 3', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.eae-form-input:focus,
.eae-form-textarea:focus,
.eae-form-select:focus {
  outline: none;
  border-color: var(--eae-secondary);
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.2);
}

.eae-form-textarea {
  min-height: 150px;
  resize: vertical;
}

.eae-form-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.eae-form-checkbox {
  margin-right: 0.5rem;
}

.eae-form-submit {
  margin-top: 1rem;
}

/* Footer */
.eae-footer {
  background-color: var(--eae-primary);
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.eae-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--eae-secondary), var(--eae-accent));
}

.eae-footer-content {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .eae-footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .eae-footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.eae-footer-logo img,
.eae-footer-logo svg {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
}

.eae-footer-about {
  color: var(--eae-muted-text);
  margin-bottom: 1.5rem;
}

.eae-footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--eae-light-text);
  position: relative;
}

.eae-footer-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--eae-accent);
}

.eae-footer-links {
  list-style: none;
}

.eae-footer-link {
  margin-bottom: 0.75rem;
}

.eae-footer-link a {
  color: var(--eae-muted-text);
  transition: color 0.3s ease;
}

.eae-footer-link a:hover,
.eae-footer-link a:focus {
  color: var(--eae-accent);
  text-decoration: none;
}

.eae-footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.eae-footer-contact-icon {
  margin-right: 0.75rem;
  font-size: 1.25rem;
  color: var(--eae-accent);
}

.eae-footer-contact-text {
  color: var(--eae-muted-text);
}

.eae-footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .eae-footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.eae-footer-copyright {
  color: var(--eae-muted-text);
  margin-bottom: 1rem;
}

.eae-footer-legal {
  display: flex;
  gap: 1.5rem;
}

.eae-footer-legal a {
  color: var(--eae-muted-text);
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.eae-fade-in {
  animation: fadeIn 1s ease forwards;
}

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

.eae-slide-up {
  animation: slideUp 0.5s ease forwards;
}

/* Cookie Consent */
.eae-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--eae-primary);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  padding: 1.5rem;
  display: none;
}

.eae-cookie-consent.eae-active {
  display: block;
}

.eae-cookie-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .eae-cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.eae-cookie-text {
  flex-grow: 1;
}

.eae-cookie-text p {
  margin-bottom: 0;
}

.eae-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.eae-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  display: none;
}

.eae-cookie-modal.eae-active {
  display: flex;
}

.eae-cookie-modal-content {
  background-color: var(--eae-primary);
  border-radius: 0.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.eae-cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--eae-border);
}

.eae-cookie-modal-title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.eae-cookie-modal-close {
  background: none;
  border: none;
  color: var(--eae-light-text);
  font-size: 1.5rem;
  cursor: pointer;
}

.eae-cookie-category {
  margin-bottom: 2rem;
}

.eae-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.eae-cookie-category-title {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.eae-cookie-category-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.eae-cookie-category-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.eae-cookie-category-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--eae-border);
  transition: .4s;
  border-radius: 24px;
}

.eae-cookie-category-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .eae-cookie-category-slider {
  background-color: var(--eae-secondary);
}

input:checked + .eae-cookie-category-slider:before {
  transform: translateX(26px);
}

.eae-cookie-category-description {
  color: var(--eae-muted-text);
}

.eae-cookie-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--eae-border);
}

/* Utility Classes */
.eae-text-center {
  text-align: center;
}

.eae-text-left {
  text-align: left;
}

.eae-text-right {
  text-align: right;
}

.eae-mt-1 {
  margin-top: 0.5rem;
}

.eae-mt-2 {
  margin-top: 1rem;
}

.eae-mt-3 {
  margin-top: 1.5rem;
}

.eae-mt-4 {
  margin-top: 2rem;
}

.eae-mb-1 {
  margin-bottom: 0.5rem;
}

.eae-mb-2 {
  margin-bottom: 1rem;
}

.eae-mb-3 {
  margin-bottom: 1.5rem;
}

.eae-mb-4 {
  margin-bottom: 2rem;
}

.eae-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.eae-w-full {
  width: 100%;
}

.eae-hidden {
  display: none;
}

/* Custom Components */
.eae-statistics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .eae-statistics {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eae-statistic {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--eae-primary);
  border-radius: 0.5rem;
  box-shadow: var(--eae-shadow);
}

.eae-statistic-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eae-accent);
  margin-bottom: 0.5rem;
}

.eae-statistic-label {
  color: var(--eae-muted-text);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eae-timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem 0;
}

.eae-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--eae-border);
}

.eae-timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
}

.eae-timeline-item:last-child {
  margin-bottom: 0;
}

.eae-timeline-content {
  position: relative;
  padding: 1.5rem;
  background-color: var(--eae-primary);
  border-radius: 0.5rem;
  box-shadow: var(--eae-shadow);
  width: calc(50% - 2rem);
}

.eae-timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--eae-secondary);
  border-radius: 50%;
}

.eae-timeline-item:nth-child(odd) .eae-timeline-content {
  margin-left: auto;
}

.eae-timeline-item:nth-child(odd) .eae-timeline-content::before {
  left: -36px;
}

.eae-timeline-item:nth-child(even) .eae-timeline-content::before {
  right: -36px;
}

.eae-timeline-date {
  color: var(--eae-accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.eae-timeline-title {
  margin-bottom: 0.5rem;
}

.eae-timeline-text {
  color: var(--eae-muted-text);
}

@media (max-width: 767px) {
  .eae-timeline::before {
    left: 30px;
  }
  
  .eae-timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px !important;
  }
  
  .eae-timeline-item:nth-child(odd) .eae-timeline-content::before,
  .eae-timeline-item:nth-child(even) .eae-timeline-content::before {
    left: -36px;
    right: auto;
  }
}

.eae-testimonial {
  padding: 2rem;
  background-color: var(--eae-primary);
  border-radius: 0.5rem;
  box-shadow: var(--eae-shadow);
  margin-bottom: 2rem;
  position: relative;
}

.eae-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--eae-accent);
  opacity: 0.3;
  font-family: serif;
}

.eae-testimonial-content {
  margin-bottom: 1.5rem;
  font-style: italic;
  color: var(--eae-muted-text);
}

.eae-testimonial-author {
  display: flex;
  align-items: center;
}

.eae-testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.eae-testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eae-testimonial-info {
  display: flex;
  flex-direction: column;
}

.eae-testimonial-name {
  font-weight: 600;
  color: var(--eae-light-text);
}

.eae-testimonial-position {
  font-size: 0.875rem;
  color: var(--eae-accent);
}

.eae-faq {
  max-width: 800px;
  margin: 3rem auto;
}

.eae-faq-item {
  margin-bottom: 1rem;
}

.eae-faq-question {
  padding: 1.5rem;
  background-color: var(--eae-primary);
  border-radius: 0.5rem;
  box-shadow: var(--eae-shadow);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.eae-faq-question:hover {
  background-color: var(--eae-hover);
}

.eae-faq-question-text {
  font-weight: 600;
  color: var(--eae-light-text);
  margin-bottom: 0;
}

.eae-faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.eae-faq-item.eae-active .eae-faq-icon {
  transform: rotate(180deg);
}

.eae-faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 0.5rem 0.5rem;
}

.eae-faq-item.eae-active .eae-faq-answer {
  max-height: 500px;
  padding: 1.5rem;
}

.eae-map-container {
  height: 400px;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--eae-shadow);
  margin: 3rem 0;
}

/* Thanks Page */
.eae-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
}

.eae-thanks-icon {
  font-size: 5rem;
  color: var(--eae-success);
  margin-bottom: 2rem;
}

.eae-thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.eae-thanks-text {
  max-width: 600px;
  margin-bottom: 2rem;
  color: var(--eae-muted-text);
}

/* Intl Tel Input Custom Styles */
.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 4;
}

.iti__selected-flag {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-radius: 0.25rem 0 0 0.25rem;
}

.iti__country-list {
  background-color: var(--eae-primary) !important;
  border: 1px solid var(--eae-border) !important;
}

.iti__country {
  color: var(--eae-light-text) !important;
}

.iti__country:hover {
  background-color: var(--eae-hover) !important;
}

.iti__country.iti__highlight {
  background-color: var(--eae-secondary) !important;
}

/* Error States */
.eae-form-error {
  color: var(--eae-error);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.eae-form-input.eae-error,
.eae-form-textarea.eae-error,
.eae-form-select.eae-error {
  border-color: var(--eae-error);
}

.eae-form-input.eae-error:focus,
.eae-form-textarea.eae-error:focus,
.eae-form-select.eae-error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}