* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  color: white;
  border: none;
  outline: none;
  font-family: "Manrope", sans-serif;
}

:root {
  --Main-font: "Manrope", sans-serif;
  --primary-bg: rgba(7, 7, 8, 1);
  --secondary-color: rgba(87, 58, 238, 1);
  --primary-font-color: rgba(196, 196, 196, 1);
  --secondary-font-color: rgba(255, 255, 255, 1);
  --main-font-color: rgba(121, 124, 134, 1);
}

body {
  background: var(--primary-bg);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

/* Header & Navigation */
header {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5rem;
  background-color: var(--primary-bg);
  backdrop-filter: blur(5px);
  padding: 3rem 5%;
  border-bottom: solid 1px rgba(28, 28, 33, 1);
  align-items: center;
  justify-content: center;
  animation: dropIn 1s ease-out forwards;
  z-index: 1000;
}

@keyframes dropIn {
  from {
    transform: translateY(-100px);
    opacity: 0.5;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 5rem;
  z-index: 10000;
}

nav p {
  color: var(--secondary-font-color);
  font-family: var(--Main-font);
  text-transform: uppercase;
  font-size: clamp(20px, 2vw, 40px);
  font-weight: 700;
  transition: all 0.3s ease;
}

nav p:hover {
  transform: scale(1.05);
}

nav p:active {
  transform: scale(0.95);
}

nav ul {
  display: flex;
  gap: 4rem;
  list-style: none;
}

nav a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: var(--primary-font-color);
  font-family: var(--Main-font);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--secondary-font-color);
}

nav a:active {
  transform: scale(0.95);
}

nav a.active::after {
  width: 100%;
}

nav a:hover::after {
  width: 100%;
}

nav button {
  background: rgba(28, 28, 33, 1);
  color: var(--secondary-font-color);
  font-size: 18px;
  padding: 16px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

nav button:hover {
  background: rgb(45, 45, 53);
  transform: scale(1.02);
}

nav button:active {
  background: rgb(72, 72, 84);
  transform: scale(0.95);
}

/* Hero Section */
.hero-container {
  margin: 10% 5% 8%;
  padding-top: 2rem;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-text {
  width: 100%;
  max-width: 582px;
}

.hero-text p {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 100%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #62646c;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 600;
  line-height: 100%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #e4e4e6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}

.hero-buttons h2 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
  color: var(--secondary-font-color);
}

.hero-buttons button {
  background: var(--secondary-color);
  color: var(--secondary-font-color);
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--Main-font);
}

.hero-buttons button:hover {
  transform: translateY(-3px);
}

.hero-buttons button:active {
  transform: translateY(0);
}

.hero-buttons img {
  width: 17px;
  height: 17px;
}

/* Infinite Scroll */
@keyframes scrollleft {
  to {
    left: -250px;
  }
}

.infinite-scroll {
  width: 100%;
  overflow: hidden;
  background: rgba(14, 14, 16, 1);
  border: solid 1px rgba(28, 28, 33, 1);
}

.infinite-scroll ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  height: 43px;
  position: relative;
  width: 100%;
  justify-content: center;
}

.infinite-scroll ul :nth-child(1) {
  animation-delay: calc((30s / 7) * (7 - 1) * -1);
}

.infinite-scroll ul :nth-child(2) {
  animation-delay: calc((30s / 7) * (7 - 2) * -1);
}

.infinite-scroll ul :nth-child(3) {
  animation-delay: calc((30s / 7) * (7 - 3) * -1);
}

.infinite-scroll ul :nth-child(4) {
  animation-delay: calc((30s / 7) * (7 - 4) * -1);
}

.infinite-scroll ul :nth-child(5) {
  animation-delay: calc((30s / 7) * (7 - 5) * -1);
}

.infinite-scroll ul :nth-child(6) {
  animation-delay: calc((30s / 7) * (7 - 6) * -1);
}

.infinite-scroll ul :nth-child(7) {
  animation-delay: calc((30s / 7) * (7 - 7) * -1);
}

.infinite-scroll li {
  position: absolute;
  animation: scrollleft 30s linear infinite;
  left: 100%;
  width: 100%;
  font-size: clamp(14px, 2vw, 18px);
}

/* Image Container */
.image-container {
  margin: 5% 5%;
}

.image-content img {
  width: 100%;
  height: auto;
}

/* About Section */
.about-container {
  margin: 7% 5%;
}

.text {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  line-height: 100%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #797c86;
  margin-bottom: 10px;
}

.about-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-text h3 {
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 600;
  line-height: 100%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #e4e4e6;
}

.about-text button {
  background: #1c1c21;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 29, 29, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--Main-font);
  white-space: nowrap;
}

.about-text button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(63, 63, 63, 0.4);
}

.about-text button:active {
  transform: translateY(0);
}

.line {
  border: 1px solid #1c1c21;
  margin: 50px 0;
}

.about-image {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 500px;
  height: 700px;
}

.about-stars {
  border: 1px solid #1c1c21;
  padding: 40px;
  border-radius: 20px;
  flex: 1;
  min-width: 300px;
}

.about-stars img {
  width: 24px;
  height: 24px;
}

span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #cacace;
  font-weight: 500;
  font-size: clamp(20px, 3vw, 30px);
}

.about-stars p {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #afb0b6;
  margin: 20px 0;
}

.about-contacts {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  align-items: center;
  margin-top: 40px;
}

.about-contacts p {
  margin-top: 5px;
}

.about-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.about-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-buttons button {
  background: #1c1c21;
  color: #fff;
  border: none;
  padding: 18px 34px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(29, 29, 29, 0.4);
  font-family: var(--Main-font);
  white-space: nowrap;
}

.about-buttons button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(63, 63, 63, 0.4);
}

.about-buttons button:active {
  transform: translateY(0);
}

/* Services Section */
.services-container {
  margin: 10% 5%;
}

.services-text p {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #797c86;
  margin: 30px 0;
}

.services-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.services-buttons p {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 100%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #797c86;
  margin-bottom: 10px;
}

.services-buttons button {
  background: var(--secondary-color);
  color: var(--secondary-font-color);
  border: none;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(87, 58, 238, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--Main-font);
}

.services-buttons button:hover {
  transform: translateY(-3px);
}

.services-buttons button:active {
  transform: translateY(0);
}

.services-buttons img {
  width: 20px;
  height: 20px;
}

.services-info img {
  width: 24px;
  height: 24px;
}

.services-highlights h5 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 150%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #cacace;
  margin: 20px 0;
}

.services-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  border: 1px solid #1c1c21;
  margin: 10px 0;
  border-radius: 12px;
}

.services-highlights p {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #afb0b6;
}

/* Explore Section */
.explore-container {
  margin: 10% 5%;
}

.explore-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: start;
}

.explore-image img {
  width: 100%;
  height: auto;
}

.explore-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.explore-buttons img {
  width: 16px;
  height: 16px;
}

.explore-btn button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #cacace;
  border: none;
  border-radius: 10px;
  border-bottom: 1px solid #2f2f37;
  font-weight: 600;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--Main-font);
  padding: 5px 0;
}

.explore-btn button:hover {
  color: var(--secondary-font-color);
}

.explore-buttons h5 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 150%;
  font-family: var(--Main-font);
  text-transform: uppercase;
  color: #cacace;
}

.explore-buttons p {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #797c86;
}

/* FAQ Styles matching service page */
#faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 50px auto;
}

.faq {
  margin: 70px auto 16px auto;
  width: 90%;
}

.accordion {
  transition: all 0.3s ease;
}

.accordion:hover {
  border-color: rgba(128, 128, 128, 0.6) !important;
}

/* Mobile responsive FAQ */

.review {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #62646c;
  margin-top: 10px;
}

/* Testimonials Section */
.testimonial-container {
  margin: 10% 5%;
}

.testimonial-reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: space-between;
}

.testimonial-reviews {
  padding: 30px;
  background: #0e0e10;
  border: 1px solid #1c1c21;
  border-radius: 10px;
}

.testimonial-review {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-stars img {
  margin: 5px 2px;
  width: 20px;
  height: 20px;
}

.testimonial-text h5 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #e4e4e6;
  margin-bottom: 5px;
}

.testimonial-text p {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #62646c;
}

.testimonial-stars p {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 400;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #e4e4e6;
  margin-top: 10px;
}

/* Enhanced FAQ Styles */
.questions-text {
  display: flex;
  margin: 20px 0;
  justify-content: space-between;
  border: 1px solid #1c1c21;
  padding: 25px;
  border-radius: 8px;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(14, 14, 16, 0.5);
}

.questions-text:hover {
  border-color: #2f2f37;
  transform: translateY(-2px);
}

.questions-text h5 {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 150%;
  font-family: var(--Main-font);
  color: #afb0b6;
  margin-bottom: 0;
  transition: color 0.3s ease;
  flex: 1;
  margin-right: 20px;
}

.questions-text:hover h5 {
  color: #e4e4e6;
}

.questions-text-image button {
  background: none;
  border: 1px solid #1c1c21;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
}

.questions-text-image button:hover {
  background: rgba(87, 58, 238, 0.1);
  border-color: var(--secondary-color);
}

.questions-text-image img {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.questions-texts-1 {
  width: 100%;
  max-width: 600px;
  padding: 0 10px;
}

.questions-texts {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: var(--primary-bg);
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Top footer sections */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 40px;
}

.cta {
  grid-column: span 1;
}

.cta p {
  font-size: 14px;
  color: var(--main-font-color);
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 500;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--secondary-font-color);
  font-weight: 700;
}

.cta button {
  background: var(--secondary-color);
  color: var(--secondary-font-color);
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(87, 58, 238, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--Main-font);
}

.cta button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(87, 58, 238, 0.4);
}

.cta button:active {
  transform: translateY(0);
}

.footer-links h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--secondary-font-color);
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 8px;
  font-weight: 600;
}

.footer-links h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: var(--primary-font-color);
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  font-weight: 400;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Bottom footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  font-size: 14px;
  color: var(--main-font-color);
}

.footer-bottom .socials {
  display: flex;
  gap: 20px;
}

.footer-bottom .socials a {
  color: var(--primary-font-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom .socials a:hover {
  color: var(--secondary-font-color);
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom .legal {
  display: flex;
  gap: 20px;
}

.footer-bottom .legal a {
  color: var(--primary-font-color);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 400;
}

.footer-bottom .legal a:hover {
  color: var(--secondary-color);
}

.copyright {
  text-align: center;
  width: 100%;
  margin-top: 15px;
  font-size: 13px;
  color: var(--main-font-color);
}

.DAMIEN {
  font-size: clamp(3rem, 15vw, 10rem);
  font-family: var(--Main-font);
  color: rgba(121, 124, 134, 0.3);
  text-transform: uppercase;
  display: flex;
  justify-content: flex-end;
  width: 95%;
  font-weight: 600;
  margin: 2rem 0;
}

/* Mobile Menu Styles */
.menu,
.Xmenu {
  display: none !important;
}

.backdrop-overlay {
  display: none;
}

/* AOS Animation Customizations */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Fix AOS horizontal overflow */
body,
html {
  overflow-x: hidden !important;
  max-width: 100vw;
}

/* Ensure all sections respect viewport width */

/* Prevent AOS animations from creating overflow */
[data-aos] {
  overflow-x: none;
}

@media (max-width: 1100px) {
  nav p {
    font-size: clamp(15px, 2.5vw, 40px);
  }

  nav ul {
    gap: 2rem;
  }

  nav a {
    font-size: 15px;
  }

  nav a:hover {
    font-size: 15.3px;
  }
  nav button {
    font-size: 15px;
    padding: 13px 17px;
  }

  .DAMIEN {
    font-size: 7.5rem;
  }

  .infinite-scroll li {
    font-size: 12.5px;
  }

  .about-image img {
    width: 25rem;
    height: 25rem;
  }

  .about-stars {
    padding: 30px;
  }
  .about-stars p {
    font-size: 13px;
  }

  span {
    font-size: 20px;
  }

  .about-stars img {
    width: 20px;
    height: 20px;
  }
  .about-stars p {
    font-size: 12px;
    margin: 10px 0;
  }
  .about-contacts {
    gap: 0px;
  }

  .line {
    margin: 30px 0;
  }
  .hero-text h1 {
    font-size: clamp(40px, 6vw, 80px);
  }

  .hero-text p {
    font-size: clamp(12px, 1.6vw, 17px);
  }

  .hero-buttons h2 {
    font-size: clamp(15px, 2.5vw, 27px);
  }

  .footer-bottom {
    gap: 5px;
    flex-direction: column;
  }

  .services-info img {
    width: 24px;
    height: 24px;
  }

  .about-text h3 {
    font-size: 40px;
  }
  .text {
    font-size: 17px;
  }

  .services-text p {
    font-size: 14px;
  }

  .services-highlight {
    gap: 20px;
    padding: 15px;
  }
  .services-highlights p {
    font-size: 13px;
  }

  .text {
    font-size: 15px;
  }
  .about-text h3 {
    font-size: 30px;
  }
  .explore-images {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .explore-buttons h5 {
    font-size: 13px;
  }

  .explore-buttons p {
    font-size: 12px;
  }
}

@media (max-width: 780px) {
  header {
    padding: 2rem 5%;
  }

  nav a {
    font-size: 12px;
  }

  nav a:hover {
    font-size: 12.3px;
  }
  nav button {
    font-size: 12px;
    padding: 11px 11px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    width: 100%;
  }
  .infinite-scroll li {
    font-size: 11px;
  }
  .about-image img {
    width: 28rem;
    height: 25rem;
  }
  .about-stars img {
    width: 20px;
    height: 20px;
  }
  .about-image {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .footer-bottom {
    gap: 20px;
    flex-direction: column;
  }
  .services-info img {
    width: 24px;
    height: 24px;
  }

  .footer-links h3 {
    font-size: 14px;
  }

  .footer-links ul li a {
    font-size: 13px;
  }

  .copyright {
    font-size: 11px;
  }
}

@media (max-width: 500px) {
  .menu {
    display: block !important;
  }
  nav ul {
    gap: 2rem;
    position: fixed;
    top: 0;
    border: white solid 1px;
    right: -100%;
    height: fit-content;
    padding: 10px 10px 30px 10px;
    margin-top: 25vh;
    border-radius: 20px;
    width: 50vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    transition: all 0.6s ease-in-out;
  }

  .about-buttons button {
    background: #1c1c21;
    color: #fff;
    border: none;
    padding: 13px 17px;
    font-size: 10px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 29, 29, 0.4);
    font-family: var(--Main-font);
    white-space: nowrap;
  }
  nav a.active::after {
    width: 0%;
  }

  nav a.active {
    color: var(--secondary-color);
    font-weight: 700;
  }

  .Xmenu {
    display: flex;
    width: 14%;
    height: 25px;
    align-items: center;
    justify-content: center;
    display: flex !important;
    justify-content: right;
    width: 100%;
  }
  .Xmenu-icon {
    height: 30px;
    width: 30px;
  }

  .backdrop-overlay {
    top: 0;
    right: 0;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.526);
    display: none;
  }
  nav a {
    font-size: 15px;
  }

  nav button {
    font-size: 12px;
    padding: 10px 28px;
    position: absolute;
    top: 85vh;
    right: 33%;
    display: none;
  }

  .hero-container {
    margin: 15% 5% 8%;
    padding-top: 2rem;
  }

  #faq-container {
    grid-template-columns: 1fr;
  }

  .DAMIEN {
    font-size: 4rem;
  }

  .infinite-scroll li {
    font-size: 7.5px;
  }

  .infinite-scroll ul {
    height: 25px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    font-size: 11px;
    gap: 20px;
    flex-direction: column;
  }

  .copyright {
    font-size: 9px;
  }

  .text {
    font-size: 15px;
    margin-bottom: 0px;
  }

  .about-text button {
    padding: 11px 11px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 10px;
  }
  .about-image img {
    width: 24rem;
    height: 24rem;
  }

  .line {
    margin: 25px 0;
  }

  .about-text h3 {
    font-size: 18px;
  }

  .text {
    font-size: 10px;
    margin-bottom: 0px;
  }

  .services-buttons p {
    font-size: 25px;

    margin-bottom: 10px;
  }

  .about-stars img {
    width: 20px;
    height: 20px;
  }

  .services-buttons button {
    padding: 8px 17px;
    border-radius: 30px;
    margin-bottom: 8px;
  }

  .services-info img {
    width: 15px;
    height: 15px;
  }

  header {
    width: 100vw;
  }

  body {
    overflow-x: hidden; /* Prevents horizontal scroll */
  }

  #faq-container {
    max-width: 100%;
    overflow-x: hidden;
  }
}
