:root {
  --bg-dark: #121212;
  --text-light: #e0e0e0;
  --accent-start: #8e2de2;
  --accent-end: #4a00e0;
  --overlay: rgba(0, 0, 0, 0.6);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Roboto", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}
a {
  color: var(--accent-end);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1e1e1e;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  color: transparent;
}
.site-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
.site-nav a {
  color: var(--text-light);
  padding: 6px 8px;
  transition: background 0.3s;
}
.site-nav a.active,
.site-nav a:hover {
  background: var(--overlay);
  border-radius: 4px;
}

.spacer {
  height: 60px;
}

.hero-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: url("../assets/images/hero.jpeg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
}
.hero-content {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  color: transparent;
}
.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, var(--accent-start), var(--accent-end));
  color: #fff;
  border-radius: 30px;
  transition: opacity 0.3s;
}
.btn:hover {
  opacity: 0.8;
}
.btn.small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

.parallax-section {
  position: relative;
  height: 50vh;

  background-image: url("../assets/images/item1.jpeg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}
.parallax-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--accent-start), var(--accent-end));
  -webkit-background-clip: text;
  color: transparent;
}
.parallax-overlay p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #ddd;
}

section {
  padding: 80px 0;
}
h2 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 24px;
  color: var(--accent-start);
}

.about-section {
  background: #1a1a1a;
}
.about-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: #ccc;
  text-align: center;
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}
.highlight {
  background: #222;
  padding: 24px;
  border-radius: 8px;
  max-width: 300px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  text-align: center;
}
.highlight h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.highlight p {
  font-size: 0.95rem;
  color: #bbb;
}
.about-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto 40px;
  padding-left: 0;
}
.about-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #ccc;
}
.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-end);
  font-weight: bold;
}
.about-cta {
  text-align: center;
}
.btn.outline {
  background: transparent;
  border: 2px solid var(--accent-end);
  color: var(--accent-end);
}

.team-section {
  background: #1a1a1a;
}
.team-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #bbb;
  text-align: center;
}
.team-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.team-member {
  background: #222;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  text-align: center;
}
.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}
.team-member h3 {
  color: #fff;
  margin-bottom: 8px;
}
.role {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 12px;
}
.member-bio {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.5;
}

.categories-section {
  background: #1a1a1a;
}
.categories-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.category-card {
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s;
}
.category-card:hover {
  transform: translateY(-6px);
}
.category-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.category-content {
  padding: 16px;
}
.category-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #fff;
}
.category-content p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 12px;
}

.site-footer {
  background: #111;
  padding: 24px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-logo img {
  height: 40px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
}
.footer-links a {
  color: #ccc;
}
.footer-links .bar {
  color: #555;
}
.footer-copy {
  color: #777;
  margin-top: 12px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .categories-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials-section {
  background: #1a1a1a;
  padding: 80px 20px;
}
.testimonials-section h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--accent-start);
  margin-bottom: 32px;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slider {
  display: flex;
  width: calc(100% * 3);
  transition: transform 0.6s ease;
}
.slide {
  flex: 0 0 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

blockquote {
  background: #222;
  border-left: 4px solid var(--accent-end);
  padding: 24px;
  color: #ddd;
  font-style: italic;
  line-height: 1.5;
}
blockquote footer {
  text-align: right;
  margin-top: 12px;
  color: #fff;
  font-weight: bold;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--accent-end);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.slider-btn.prev {
  left: 10px;
}
.slider-btn.next {
  right: 10px;
}

.slider-dots {
  text-align: center;
  margin-top: 16px;
}
.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #444;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background 0.3s;
}
.dot.active,
.dot:hover {
  background: var(--accent-end);
}

@media (max-width: 768px) {
  .testimonials-section h2 {
    font-size: 2rem;
  }
  blockquote {
    font-size: 0.95rem;
  }
  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
}

.contact-section {
  background: #1a1a1a;
  padding: 80px 20px;
}
.contact-section h2 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--accent-start);
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}
.contact-info h3 {
  font-size: 2rem;
  color: var(--accent-end);
  margin-bottom: 16px;
}
.contact-info p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 12px;
}
.contact-info a {
  color: var(--accent-end);
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.hours-list {
  list-style: disc inside;
  margin: 16px 0;
  color: #ccc;
}
.hours-list li {
  margin-bottom: 6px;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  object-fit: cover;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-section h2 {
    font-size: 2rem;
  }
  .contact-info h3 {
    font-size: 1.6rem;
  }
}

.about-ext-section {
  background: #1a1a1a;
  padding: 80px 20px;
  color: #ccc;
}
.about-ext-section h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--accent-start);
  margin-bottom: 24px;
}
.about-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  color: #ddd;
}

.about-timeline {
  counter-reset: step;
  list-style: none;
  margin: 0 auto 40px;
  max-width: 700px;
  padding-left: 0;
}
.about-timeline li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.about-timeline li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-end);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.about-values,
.about-why,
.about-team-list {
  max-width: 800px;
  margin: 0 auto 40px;
  padding-left: 0;
}
.about-values li,
.about-why li,
.about-team-list li {
  list-style: none;
  padding-left: 32px;
  margin-bottom: 12px;
  position: relative;
  font-size: 1rem;
}
.about-values li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-start);
}
.about-why li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  display: inline-block;
  width: 1em;
  height: 1em;
  background: var(--accent-end);
  mask: url('data:image/svg+xml;utf8,<svg fill="%23fff" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2l3.09 6.26L22 9l-5 4.87L18.18 22 12 18.27 5.82 22 7 13.87 2 9l6.91-1L12 2z"/></svg>')
    center/contain no-repeat;
}
.about-team-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-end);
  font-weight: bold;
}

.about-ext-cta {
  text-align: center;
  margin-top: 24px;
}
.about-ext-cta .btn.outline {
  padding: 12px 32px;
  border: 2px solid var(--accent-end);
  color: var(--accent-end);
  background: transparent;
  border-radius: 30px;
  font-size: 1rem;
  transition: background 0.3s, color 0.3s;
}
.about-ext-cta .btn.outline:hover {
  background: var(--accent-end);
  color: #1a1a1a;
}

@media (max-width: 768px) {
  .about-ext-section {
    padding: 60px 20px;
  }
  .about-ext-section h2 {
    font-size: 2.4rem;
  }
  .about-intro {
    font-size: 1rem;
  }
  .about-timeline li,
  .about-values li,
  .about-why li,
  .about-team-list li {
    font-size: 0.95rem;
    padding-left: 28px;
  }
  .about-ext-cta .btn.outline {
    padding: 10px 24px;
  }
}

.mega-faq-section {
  background: #1a1a1a;
  padding: 80px 20px;
  color: #ddd;
}
.mega-faq-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: var(--accent-start);
  margin-bottom: 24px;
}

.faq-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 40px;
  gap: 16px;
}
#faqSearch {
  flex: 1 1 250px;
  padding: 12px 16px;
  border: 2px solid var(--accent-end);
  border-radius: 4px;
  background: #222;
  color: #ddd;
}
#faqSearch::placeholder {
  color: #777;
}
.faq-filters {
  flex: 2 1 500px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 16px;
  background: #222;
  border: 1px solid var(--accent-end);
  border-radius: 4px;
  color: #ddd;
  cursor: pointer;
  transition: background 0.3s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent-end);
  color: #1a1a1a;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-card {
  perspective: 1000px;
  cursor: pointer;
}
.card-inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.faq-card.flipped .card-inner {
  transform: rotateY(180deg);
}
.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}
.card-front {
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #fff;
}
.card-back {
  background: #222;
  color: #ccc;
  transform: rotateY(180deg);
}

.card-front p,
.card-back p {
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .mega-faq-section {
    padding: 60px 10px;
  }
  .faq-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .faq-filters {
    justify-content: center;
  }
  .faq-grid {
    gap: 16px;
  }
}

.offers-section {
  background: #121212;
  padding: 80px 20px;
  color: #eee;
}
.offers-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: var(--accent-start);
  margin-bottom: 40px;
}

.offers-current,
.offers-upcoming {
  max-width: 1000px;
  margin: 0 auto 60px;
}
.offers-current h3,
.offers-upcoming h3 {
  font-size: 2rem;
  color: var(--accent-end);
  margin-bottom: 16px;
  text-align: center;
}
.offers-current p,
.offers-upcoming p {
  text-align: center;
  color: #ccc;
  margin-bottom: 32px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.offer-card {
  background: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}
.offer-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.offer-content {
  padding: 16px;
  text-align: center;
}
.offer-content h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 8px;
}
.offer-content p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 12px;
}

.upcoming-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto 24px;
  padding-left: 0;
}
.upcoming-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
}
.upcoming-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-start);
  font-size: 1.2rem;
}

.upcoming-cta,
.offer-content .btn.small {
  text-align: center;
}
.btn.small {
  padding: 8px 20px;
  font-size: 0.9rem;
}
.upcoming-cta .btn {
  padding: 12px 32px;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .offers-section {
    padding: 60px 10px;
  }
  .offers-section h2 {
    font-size: 2.4rem;
  }
  .offers-current h3,
  .offers-upcoming h3 {
    font-size: 1.8rem;
  }
  .upcoming-list li {
    font-size: 0.95rem;
  }
}

.ge-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.ge-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #1e1e1e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 50;
}
.ge-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.ge-header__logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}
.ge-nav__list {
  list-style: none;
  display: flex;
  gap: 20px;
}
.ge-nav__link {
  padding: 6px 8px;
  color: var(--fg);
  transition: background 0.3s;
}
.ge-nav__link:hover {
  background: var(--overlay);
  border-radius: 4px;
}

.ge-spacer {
  height: 60px;
}

.ge-hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
}
.ge-hero__img-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ge-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ge-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay);
  z-index: 1;
}
.ge-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}
.ge-hero__title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  
}
.ge-hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}

.ge-section__title {
  text-align: center;
  margin-bottom: 24px;
  font-size: 2.4rem;
  color: var(--accent1);
}

.ge-overview {
  padding: 80px 0;
  background: #1e1e1e;
}
.ge-overview__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: #ddd;
  text-align: center;
}

.ge-features {
  padding: 80px 0;
  background: #121212;
}
.ge-features__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.ge-features__item {
  position: relative;
  padding-left: 28px;
}
.ge-features__item::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent2);
  font-weight: bold;
}

.ge-compare {
  padding: 80px 0;
  background: #1a1a1a;
}
.ge-compare__table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #222;
}
.ge-compare__table th,
.ge-compare__table td {
  padding: 12px 16px;
  border-bottom: 1px solid #333;
  text-align: left;
}
.ge-compare__table thead th {
  background: linear-gradient(45deg, var(--accent1), var(--accent2));
  color: #fff;
}
.ge-compare__table tbody tr:nth-child(odd) {
  background: #1e1e1e;
}

.ge-faq {
  padding: 80px 0;
  background: #121212;
}
.ge-faq__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.ge-faq__card {
  perspective: 1000px;
  cursor: pointer;
}
.ge-faq__inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.ge-faq__card.flipped .ge-faq__inner {
  transform: rotateY(180deg);
}
.ge-faq__front,
.ge-faq__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
}
.ge-faq__front {
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
}
.ge-faq__back {
  background: #222;
  color: #ccc;
  transform: rotateY(180deg);
}

.ge-contact {
  padding: 80px 0;
  background: #1e1e1e;
  text-align: center;
}
.ge-contact__title {
  font-size: 2.4rem;
  color: var(--accent1);
  margin-bottom: 16px;
}
.ge-contact__text {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 24px;
}

.ge-footer {
  background: #111;
  padding: 24px 0;
  text-align: center;
  color: #777;
}
.ge-footer__links {
  margin: 12px 0;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.ge-footer__sep {
  color: #444;
}
.ge-footer__logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .ge-spacer {
    height: 50px;
  }
  .ge-hero__title {
    font-size: 2.4rem;
  }
  .ge-faq__grid {
    gap: 16px;
  }
}

.title_background {
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  padding: 60px 20px;
  text-align: center;
  overflow: hidden;
}

.title_background .container {
  max-width: 800px;
  margin: 0 auto;
}

.title_background .title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out forwards;
}

.text_background {
  background: var(--bg);
  padding: 40px 20px;
}

.text_background .container {
  max-width: 800px;
  margin: 0 auto;
}

.text_background .text {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--fg);
  text-align: justify;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

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

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

@media (max-width: 768px) {
  .title_background .title {
    font-size: 1.6rem;
  }
  .text_background .text {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}
