body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 50% 0%, #1a1a1a, #333333, #0d0d0d);
  line-height: 1.6;
  transition: var(--transition);
  animation: animateBg 10s infinite alternate ease-in-out;
}

.text-center {
  font-weight: bold;
  color: #e2e3e4;
}

.hero {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-left: -10%;
  margin-right: -10%;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center; 
  padding: 4rem 2rem;
  background: linear-gradient(90deg, #760ffc, #f06292, #b48c66e0, #8043cf, #760ffc);
  background-size: 200% 100%;
  color: var(--text-color-dark);
  border-radius: var(--border-radius);
  margin-top: -4%;
  z-index: auto;
  height: 60vh;
  box-sizing: border-box;
  overflow: hidden;
  perspective: 1000px;
}

@keyframes wave {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  padding-right: 2rem;
  max-height: 100%;
  overflow-y: auto;
  transform: rotateY(-10deg);
  animation: textFloat 5s ease-in-out infinite;
}

@keyframes textFloat {
  0%, 100% {
    transform: rotateY(-10deg) translateY(0);
  }
  50% {
    transform: rotateY(-10deg) translateY(-10px);
  }
}

.hero-text h1 {
  text-shadow: #000;
  font-weight: bolder;
  font-size: 3rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  margin-right: 50%;
  max-width: 90%;
  line-height: 1.6;
}

.hero-text .btn {
  display: inline-block;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  background-color: var(--primary-color);
  color: var(--text-color-dark);
  text-align: center;
  font-weight: bold;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s ease-in-out, transform 0.3s ease-in-out;
  margin-top: 20px;
  margin-right: 50%;
  text-decoration: none;
  transform: perspective(500px) rotateX(10deg);
}

.hero-text .btn:hover {
  background-color: var(--secondary-color);
  transform: perspective(500px) rotateX(0deg) translateY(-3px);
}

.laptop {
  width: auto;
  position: relative;
  top: 0;
  right: 0;
  margin-left: 90%;
  margin-top: -30%;
  transform: rotateY(10deg);
  animation: fadeInRight 1s ease-out, moveUpDown 3s ease-in-out infinite;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.screen {
  border-radius: 20px;
  box-shadow: inset 0 0 0 2px #c8cacb, inset 0 0 0 10px #000;
  height: 318px;
  width: 518px;
  margin: 0 auto;
  padding: 9px 9px 23px 9px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(
    15deg,
    #3f51b1 0%,
    #5a55ae 13%,
    #7b5fac 25%,
    #8f6aae 38%,
    #a86aa4 50%,
    #cc6b8e 62%,
    #f18271 75%,
    #f3a469 87%,
    #f7c978 100%
  );
  transform: perspective(1900px) rotateX(-88.5deg);
  transform-origin: 50% 100%;
  animation: open 4s infinite alternate;
}

@keyframes open {
  0% {
    transform: perspective(1900px) rotateX(-88.5deg);
  }
  100% {
    transform: perspective(1000px) rotateX(0deg);
  }
}

.screen::before {
  content: "";
  width: 518px;
  height: 12px;
  position: absolute;
  background: linear-gradient(#979899, transparent);
  top: -3px;
  transform: rotateX(90deg);
  border-radius: 5px 5px;
}

.text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #fff;
  font-size: large;
  font-weight: bold;
  text-shadow: 0 0 5px #180202;
  border-right: 3px solid #fff;
  padding-right: 5px;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  width: 0;
  animation: typing 4s steps(40) infinite, blink 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.header {
  width: 100px;
  height: 12px;
  position: absolute;
  background-color: #000;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 0 0 6px 6px;
}

.screen::after {
  background: linear-gradient(to bottom, #272727, #0d0d0d);
  border-radius: 0 0 20px 20px;
  bottom: 2px;
  content: "";
  height: 24px;
  left: 2px;
  position: absolute;
  width: 514px;
}

.keyboard {
  background: radial-gradient(circle at center, #e2e3e4 85%, #a9abac 100%);
  border: solid #a0a3a7;
  border-radius: 2px 2px 12px 12px;
  border-width: 1px 2px 0 2px;
  box-shadow: inset 0 -2px 8px 0 #6c7074;
  height: 24px;
  margin-top: -10px;
  margin-left: -50%;
  position: relative;
  width: 620px;
  z-index: 9;
}

.keyboard::after {
  background: #e2e3e4;
  border-radius: 0 0 10px 10px;
  box-shadow: inset 0 0 4px 2px #babdbf;
  content: "";
  height: 10px;
  left: 50%;
  margin-left: -60px;
  position: absolute;
  top: 0;
  width: 120px;
}

.keyboard::before {
  background: 0 0;
  border-radius: 0 0 3px 3px;
  bottom: -2px;
  box-shadow: -270px 0 #272727, 250px 0 #272727;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  width: 30px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero {
    padding: 3rem 1.5rem;
    height: auto;
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2.5rem;
  }
  .hero-text p {
    font-size: 1.1rem;
  }
  .laptop {
    width: 80%;
    margin-top: 2rem;
    transform: rotateY(10deg);
    animation: fadeInRight 1s ease-out, moveUpDown 3s ease-in-out infinite;
  }
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1rem;
  }
  .hero-text {
    padding-right: 0;
    padding-bottom: 2rem;
    align-items: center;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
    margin-right: 0;
  }
  .laptop {
    width: 100%;
    margin-top: 2rem;
    transform: none;
    animation: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    padding: 1rem;
    max-width: 90%;
    width: 100%;
    align-items: center;
  }
  .hero-text h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }
  .hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 90%;
    color: var(--text-color-dark);
  }
  .hero-text .btn {
    padding: 0.8rem 1rem;
    font-size: 1rem;
    width: auto;
  }
  .laptop {
    width: 100%;
    margin: 2rem 0 0 0;
    transform: none;
    animation: none;
  }
}

@media (max-width: 576px) {
  .hero {
    margin-top: -16%;
    margin-left: 0%;
    margin-right: 0%;
    padding: 2rem 1rem;
    width: 100%;
  }
  .hero-text {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
    margin-left: 2%;
    margin-right: 4%;
  }
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 5%;
  }
  .hero-text p {
    font-size: 0.9rem;
    margin-bottom: 3%;
    margin-right: 5%;
  }
  .hero-text .btn {
    font-size: 0.8rem;
    width: 100%;
    margin: 0 auto;
  }
  
  
  
  
  
  
  
  .laptop {
    width: 100%;
    margin: 1rem auto 0 auto;
    margin-left: -5%;
    transform: none;
    animation: none;
  }
  .screen {
    margin-left: 3.5%;
    height: 180px;
    width: 280px;
    
    padding: 0;
  }
  .screen::after {
    height: 12px;
    width: 290px;
  }
  .keyboard {
    height: 12px;
    margin-left: -0%;
    width: 310px;
  }

  .text {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: #fff;
    font-size: small;
    font-weight: bold;
    text-shadow: 0 0 5px #180202;
    border-right: 3px solid #fff;
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    width: 0;
    animation: typing 4s steps(40) infinite, blink 0.75s step-end infinite;
  }
}


@media (max-width: 1386px) and (min-width: 1280px) { /* 15-inch laptops */
.laptop {
  width: 360px; /* Same as screen width */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 10%, 0; /* Center horizontally */
  padding-top: 0; /* Remove extra top space */
  position: relative; 
  top: 0; 
}

.screen {
  width: 400px;
  height: 230px;
  margin-left: auto;
  margin-right: auto ;
  margin-top: -20%;
}

/* Bottom bezel effect */
.screen::after {
  content: ""; /* Required for visibility */
  position: absolute;
  bottom: 5px; /* Adjusted bezel spacing */
  left: 50%;
  transform: translateX(-50%);
  width: 395px; /* Slightly wider for effect */
  height: 15px; /* Thickness of bottom bezel */
}

.keyboard {
  width: 430px; /* Adjusted width for better alignment */
  height: 16px; /* Adjust height for better proportion */
  margin-top: -2% ;
  position: relative; /* Required for pseudo-elements */
  margin-right: -61%;
}

.keyboard::after {
  height: 10px;
  
  position: absolute;
  left: 65%;
  margin-top: 0;
  transform: translateX(-50%);
  top: 0;
}

.text{

  font-size: small;
}

.keyboard::before {
  background: transparent;
  border-radius: 0 0 3px 3px;
  bottom: 0px;
  box-shadow: -180px 0 #272727, 180px 0 #272727; /* Adjust shadow position */
  content: "";
  height: 2px;
  left: 50%;
  transform: translateX(-30%); /* Ensure centered */
  position: absolute;
  width: 30px;
}

}
  
@media (max-width: 1280px) and (min-width: 1024px) { /* 13-inch laptops */
  .laptop {
    width: 460px; /* Same as screen width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 10%, 0; /* Center horizontally */
    padding-top: 0; /* Remove extra top space */
    position: relative; 
    top: 0; 
  }

  .screen {
    width: 400px;
    height: 230px;
    margin-left: 5%; /* Remove extra margin */
    margin-top: -20%;
    position: relative; /* For after pseudo-element */
}

/* Bottom bezel effect */
.screen::after {
    position: absolute;
    bottom: -10px; /* Slightly below the screen */
    left: 0%;
    width: 420px; /* Slightly wider for effect */
    height: 15px; /* Thickness of bottom bezel */
}

.keyboard {
  width: 460px;
  height: 15px; /* Adjust height to make it visible */
  margin-left: 3%;
  margin-top: -0.5%;
  position: relative; /* Required for pseudo-elements */
}

.keyboard::after {
  background: #e2e3e4;
  border-radius: 0 0 10px 10px;
  box-shadow: inset 0 0 4px 2px #babdbf;
  content: "";
  height: 10px;
  left: 50%;
  margin-left: -60px;
  position: absolute;
  top: 0;
  width: 120px;
}

.keyboard::before {
  background: transparent;
  border-radius: 0 0 3px 3px;
  bottom: -2px;
  box-shadow: -270px 0 #27272700, 250px 0 #27262600;
  content: "";
  height: 2px;
  left: 0%;
  margin-left: 0px;
  position: absolute;
  width: 30px;
}
}


@media (max-width: 1024px) and (min-width: 800px) { /* 11-inch laptops */
    .laptop {
        width: 250px;
    }
    .screen {
        width: 240px;
        height: 160px;
    }
    .keyboard {
        width: 260px;
    }
}

@media (max-width: 400px) {
  .hero {
    padding: 1.5rem 1rem;
  }
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .hero-text p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .hero-text .btn {
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
  }
}




/* Desktop View (Default) */
.outer {
  width: 350px;
  height: 450px;
  border-radius: 10px;
  padding: 1px;
  background: radial-gradient(circle 230px at 0% 0%, #0c0d0d, #000000);
  position: relative;
  margin: 20px auto;
}

.dot {
  width: 6px;
  aspect-ratio: 1;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0 10px #ffffff;
  border-radius: 100px;
  z-index: 2;
  right: 10%;
  top: 10%;
  animation: moveDot 6s linear infinite;
}

@keyframes moveDot {
  0%, 100% {
    top: 10%;
    right: 10%;
  }
  25% {
    top: 10%;
    right: calc(100% - 39px);
  }
  50% {
    top: calc(100% - 50px);
    right: calc(100% - 39px);
  }
  75% {
    top: calc(100% - 50px);
    right: 10%;
  }
}

.card {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 9px;
  border: solid 1px #ffffff73;
  background-size: 20px 20px;
  background: radial-gradient(circle 280px at 0% 0%, #444444, #0c0d0d);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: perspective(1000px) rotateY(6deg) rotateX(6deg);
  box-shadow: 0 20px 40px rgba(122, 119, 119, 0.5);
}

.p {
  margin-left: 10%;
}

.ray {
  width: 400px;
  height: 30px;
  border-radius: 100px;
  position: absolute;
  background-color: #f551e771;
  opacity: 0.4;
  box-shadow: 0 0 50px #fff;
  filter: blur(20px);
  transform-origin: 10%;
  top: 15%;
  left: 0;
  transform: rotate(40deg);
}

.ray:hover {
  background-color: #eca307a6;
}

.card .texts {
  font-weight: bolder;
  font-size: 2.0rem;
  margin-top: 10%;
  background: linear-gradient(45deg, #dbd8d8 4%, #fff, #5a5757);
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
  text-align: center;
  padding: 5px;
  box-sizing: border-box;
  hyphens: auto;
}

.card .description {
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 20px;
  margin-left: 10%;
  margin-right: 5%;
}

.line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #2c2c2c;
}

.topl {
  top: 10%;
  background: linear-gradient(90deg, #888888 30%, #1d1f1f 70%);
}

.bottoml {
  bottom: 10%;
}

.leftl {
  left: 10%;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, #747474 30%, #222424 70%);
}

.rightl {
  right: 10%;
  width: 1px;
  height: 100%;
}

.card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.card__list_item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  animation: pulse 1.5s infinite;
}

.check_svg {
  width: 100%;
  height: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.list_text {
  font-size: 1.2rem;
  color: #fff;
}

.button {
  margin-bottom: 10%;
  padding: 5px 20px;
  background: linear-gradient(30deg, #747474 10%, #030303 100%);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  background: linear-gradient(30deg, #dd7ddd 10%, #8504f0 100%);
  color: black;
  transform: scale(0.9);
}

/* E-Card */
.e-card {
  margin: 100px auto;
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  position: relative;
  margin-top: 10%;
  width: 370px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 540px;
  height: 700px;
  opacity: 0.6;
  left: 0;
  top: 0;
  margin-left: -50%;
  margin-top: -70%;
  background: linear-gradient(744deg,#db63f3,#5b42f3 60%,#00ddeb);
}

.icon {
  width: 3em;
  margin-top: -1em;
  padding-bottom: 1em;
}

.infotop {
  text-align: center;
  font-size: 20px;
  position: absolute;
  top: 5.6em;
  left: 0;
  right: 0;
  color: rgb(255, 255, 255);
  font-weight: 400;
}
.infotop p {
  text-align:justify;
  font-size: 20px;
  position: absolute;
  top: -1em;
  margin-left: 1%;
  margin-right: 1%;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
  filter: blur(2px);
  transition: filter 0.5s linear, color 0.5s linear, text-shadow 0.5s linear;
}

.infotop p:hover {
  color: rgba(255, 255, 255, 1);
  filter: blur(0px);
  text-shadow: 0px 0px 20px rgb(65, 57, 57);
}

.infotop ul {
  margin-top: 40%;
}

.infotop h3 {
  font-weight: bold;
  margin-top: -25%;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-bottom: 10px;
}

.infotop h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #fff;
  margin: 8px auto 0;
  border-radius: 2px;
  transition: width 0.3s ease-in-out, background 0.3s ease-in-out;
}

.infotop h3:hover::after {
  width: 300px;
  background: #00ddeb;
}

.name {
  font-size: 14px;
  font-weight: 100;
  position: relative;
  top: 1em;
  text-transform: lowercase;
}

.wave:nth-child(2),
.wave:nth-child(3) {
  top: 210px;
}

.playing .wave {
  border-radius: 40%;
  animation: wave 3000ms infinite linear;
}

.wave {
  border-radius: 40%;
  animation: wave 250s infinite linear;
}

.playing .wave:nth-child(2) {
  animation-duration: 8000ms;
}

.wave:nth-child(2) {
  animation-duration: 500s;
}

.playing .wave:nth-child(3) {
  animation-duration: 5000ms;
}

.wave:nth-child(3) {
  animation-duration: 500s;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Button with Icon */
.buttons {
  width: 180px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 25%;
  background-color: #202020;
  border: 3px solid #c0dfff;
  color: white;
  gap: 8px;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.texts {
  margin-top: 4%;
  font-size: 0.8em;
  font-weight: bold;
}

.svg {
  padding-top: 5px;
  height: 100%;
  width: fit-content;
}

.svg svg {
  width: 50px;
  height: 30px;
}

.buttons:hover {
  background-color: #031c3f;
}

.buttons:active {
  border: 5px solid #c0dfff;
}

.buttons:hover .svg svg {
  animation: jello-vertical 0.9s both;
  transform-origin: left;
}

@keyframes jello-vertical {
  0% {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(0.75, 1.25, 1);
  }
  40% {
    transform: scale3d(1.25, 0.75, 1);
  }
  50% {
    transform: scale3d(0.85, 1.15, 1);
  }
  65% {
    transform: scale3d(1.05, 0.95, 1);
  }
  75% {
    transform: scale3d(0.95, 1.05, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

/* Media Queries for Responsiveness */

/* For screens smaller than 768px (tablets and small screens) */
@media (max-width: 768px) {
  .outer {
    width: 90%;
    height: 400px;
  }

  .card {
    padding: 15px;
  }

  .texts {
    font-size: 1.8rem;
  }

  .ray {
    width: 300px;
    height: 25px;
  }

  .button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
  .button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .card .description {
    font-size: 1rem;
  }

  .card__list_item {
    font-size: 1rem;
  }

}

/* For screens smaller than 480px (mobile screens) */
@media (max-width: 480px) {
  .outer {
    width: 100%;
    height: 400px;
  }

  .card {
    padding: 10px;
  }

  .texts {
    margin-bottom: -10%;
    font-size: 1.5rem;
  }

  .button {
    font-size: 0.8rem;
    padding: 8px 15px;
    margin-bottom: 20%;
  }

  .card .description {
    font-size: 0.9rem;
  }

  .card__list_item {
    font-size: 0.9rem;
  }

}


/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .e-card {
    width: 350px;
    height: 350px;
  }

  .infotop p {
    font-size: 18px;
  }

  .infotop h3 {
    font-size: 20px;
  }
}

/* Media Queries for Responsiveness */
@media only screen and (max-width: 992px) {
  .e-card {
    width: 330px;
    height: 330px;
    margin-top: 8%;
    margin-bottom: 8%;
  }

  .infotop p {
    font-size: 19px;
    margin-top: -5%;
  }

  .infotop h3 {
    font-size: 16px;
  }

  .buttons {
    width: 190px;
    height: 45px;
    margin-left: 18%;
  }

  .texts {
    margin-top: -8%;
    font-size: 1em;
    font-weight: bold;
  }
}

@media only screen and (max-width: 768px) {
  .e-card {
    width: 310px;
    height: 310px;
    margin-top: 6%;
    margin-bottom: 6%;
  }

  .infotop p {
    font-size: 18px;
    margin-top: -5%;
  }

  .infotop h3 {
    font-size: 14px;
  }

  .buttons {
    width: 180px;
    height: 45px;
    margin-left: 15%;
  }

  .texts {
    margin-top: -8%;
    font-size: 1em;
    font-weight: bold;
  }
}


@media (max-width: 576px) {
  .e-card {
    width: 300px;
    height: 400px;
    margin-left: 0%;
    margin-top: 10%;
    margin-bottom: 10%;
    }

  .infotop p {
    font-size: 15px;
    margin-top: -1%;
  }

  .infotop h3 {
    font-size: 20px;
  }

  .buttons {
    width: 210px;
    height: 40px;
    margin-left: 16%;
  }

  .infotop li {
    font-size: 17px;
    margin-right: 1%;
    margin-left: 1%;
  }

  .texts {
    margin-top: -10%;
    font-size: 1em;
    font-weight: bold;
  }
}


.faq-section {
  background-color: #f3f4f600;
  padding: 2.5rem 0;
}

.faq-container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.5rem;
  background-color: #fffefe00;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #dbd8d8;
  margin-bottom: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid #d1d5db;
  padding: 0.75rem 0;
}

.faq-title {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.75rem;
  background-color: #2563eb;
  color: white;
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.faq-title:hover {
  background-color: #d8b61d;
  color: black;
}

.faq-toggle {
  display: none;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background-color: #f7efff;
  padding: 0 0.75rem;
  border-radius: 0.5rem;
}

.faq-toggle:checked + .faq-title + .faq-content {
  max-height: 24rem;
  padding: 1rem;
}

.hr-line {
  border: 0;
  height: 1px;
  background-color: #d1d5db;
  margin: 0rem 0;
  margin-bottom: 3%;
}


/* Rates Section Styling */
.rates {
  padding: 2rem 0;
  background-color: #f8f9fa; /* Light background */
}

.rates h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

.rates h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.rates ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.rates ul li {
  font-size: 1rem;
  color: var(--text-color-light);
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .rates h2 {
      font-size: 1.8rem;
  }

  .rates h3 {
      font-size: 1.3rem;
  }

  .rates ul li {
      font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .rates h2 {
      font-size: 1.5rem;
  }

  .rates h3 {
      font-size: 1.2rem;
  }

  .rates ul li {
      font-size: 0.8rem;
  }
}
