* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


#pege6 {
  display: flex;
  flex-direction: column;
  padding: 50px;
  color: #000;
}

.faqu {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
}

.fragee {
  display: flex;
  justify-content: center;
  font-size: 4vw;
  margin-top: 70px;
  margin-bottom: 80px;
}

.questionn {
  background-color: #e4e4e4;
  padding: 50px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}


.questionn:hover .answerr {
  display: block;
}

.footer-linkss {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.footer-linkss a {
  margin: 0 10px;
  color: #000;
  text-decoration: none;
  font-size: 50px;
}

.footer-linkss a:hover {
  color: rgb(34, 34, 152);
  transform: scale(130%);
}



/* Responsive Design */
@media (max-width: 768px) {
  #pege6 {
    padding: 20px;
  }

  .questionn {
    padding: 30px;
  }

  .footer-linkss a {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .fragee {
    font-size: 6vw;
    text-align: center;
  }
  .questionn {
    padding: 20px;
  }
  .questionn h2 {
    font-size: 20px;
  }

  .answerr {
    font-size: 10px;
  }
}
