:root {
  /* Color Palette */
  --primary-color: #6a4c93;       /* Rich Purple */
  --secondary-color: #f2b880;     /* Soft Peach */
  --accent-color: #c65146;        /* Warm Terracotta */
  --neutral-color: #3e4e50;       /* Deep Slate */
  --highlight-color: #8cb369;     /* Sage Green */
  
  /* Light/Dark Variations */
  --primary-light: #8c74ae;
  --primary-dark: #42356a;
  --secondary-light: #fad5b4;
  --secondary-dark: #d99957;
  --accent-light: #e0766c;
  --accent-dark: #9e382f;
  --neutral-light: #697678;
  --neutral-dark: #2a3536;
  --highlight-light: #afd48f;
  --highlight-dark: #648a47;
  
  /* Text Colors */
  --text-dark: #2a2a2a;
  --text-medium: #585858;
  --text-light: #f8f8f8;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

/* Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--neutral-dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: var(--neutral-dark);
}

.btn-accent {
  background-color: var(--accent-color);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: white;
}

/* Layout */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

section {
  padding: var(--spacing-lg) 0;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  font-weight: 600;
  color: var(--neutral-dark);
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--neutral-dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-light);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../ELD_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-title-1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s;
  animation-fill-mode: both;
}

.hero-desc-1 {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.4s;
  animation-fill-mode: both;
}

/* About Section */
.about {
  background-color: #fff;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  opacity: 0.3;
  z-index: 0;
}

.about-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.about-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.about-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.about-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-feature {
  background-color: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-feature-name {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.about-feature-desc {
  color: var(--text-medium);
}

/* Services Section */
.services {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--highlight-light);
  opacity: 0.2;
  z-index: 0;
}

.services-heading {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.services-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.services-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.services-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.service-desc {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.service-features li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.service-features li::before {
  content: '✓';
  color: var(--highlight-color);
  position: absolute;
  left: 0;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-top: 1rem;
}

/* Features Section */
.features {
  background-color: white;
  position: relative;
}

.features-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.features-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.features-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: #f9f9f9;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.feature-name {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.feature-desc {
  color: var(--text-medium);
}

/* Price Plans */
.priceplan {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.priceplan::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  opacity: 0.3;
  z-index: 0;
}

.priceplan-heading {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.priceplan-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.priceplan-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.priceplan-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.price-plan {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.price-header {
  background-color: var(--primary-light);
  padding: 2rem;
  color: white;
  text-align: center;
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-desc {
  opacity: 0.9;
}

.price-features {
  padding: 2rem;
}

.price-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-features-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 1rem;
}

.price-features-list li::before {
  content: '✓';
  color: var(--highlight-color);
  position: absolute;
  left: 0;
}

/* Team Section */
.team {
  background-color: white;
  position: relative;
}

.team-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.team-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.team-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.team-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .team-member-image img {
  transform: scale(1.1);
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.team-member-role {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.reviews::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: var(--highlight-light);
  opacity: 0.2;
  z-index: 0;
}

.reviews-heading {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.reviews-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.reviews-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.reviews-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.reviews-slider {
  position: relative;
  z-index: 1;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text::before {
  content: '"';
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary-light);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: -10px;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.review-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-name {
  font-weight: 600;
  color: var(--primary-color);
}

/* Core Info Section */
.coreinfo {
  background-color: white;
  position: relative;
}

.coreinfo-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.coreinfo-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.coreinfo-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.coreinfo-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.coreinfo-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.coreinfo-item-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.coreinfo-item-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

.coreinfo-item-desc {
  color: var(--text-medium);
}

/* Contact Section */
.contact {
  background-color: #f9f9f9;
  position: relative;
}

.contact-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.contact-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.contact-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: #f9f9f9;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(106, 76, 147, 0.25);
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.form-check-input {
  margin-right: 0.5rem;
}

.form-check-label {
  margin-bottom: 0;
}

.service-selection {
  margin-bottom: 1.5rem;
}

.service-option {
  display: block;
  margin-bottom: 0.5rem;
}

/* Blog Section */
.blog {
  background-color: white;
  position: relative;
}

.blog-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.blog-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.blog-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item-image {
  height: 200px;
  overflow: hidden;
}

.blog-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item:hover .blog-item-image img {
  transform: scale(1.1);
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-date {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.blog-item-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.blog-item-excerpt {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.blog-item-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.blog-item-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.blog-item-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq {
  background-color: #f9f9f9;
  position: relative;
}

.faq-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-title {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.faq-subtitle {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.faq-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-color);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: rgba(106, 76, 147, 0.05);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* Gallery Section */
.gallery {
  background-color: white;
  position: relative;
}

.gallery-heading {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Footer */
footer {
  background-color: var(--neutral-dark);
  color: white;
  padding: var(--spacing-lg) 0 var(--spacing-sm);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  margin-right: 1rem;
  color: var(--secondary-color);
}

.site-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Space Page */
#space {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-light);
  overflow: hidden;
  position: relative;
}

#space::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../ELD_images/space-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
} 