* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  min-height: 100svh;
  background-color: #2e383e;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 70px 0;
  font-family: "Red Hat Display", sans-serif;
  gap: 50px;
}
a {
  text-decoration: none;
  color: #3f8cfd;
}
.logo {
  width: 200px;
}
.logo img {
  width: 100%;
  object-fit: contain;
}
.data-p-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 50%;
}
.marg {
  margin-top: 30px;
}
.data-p-container h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  color: white;
  font-size: 25px;
  font-weight: normal;
  text-transform: uppercase;
}
.data-p-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  border-bottom: 1px solid #3f8cfd;
  padding-bottom: 50px;
}
.data-p-content p {
  color: white;
  font-size: 14px;
}
.data-p-content h3 {
  color: white;
}
.data-p-content li {
  color: white;
  font-size: 14px;
  margin-bottom: 10px;
  margin-left: 20px;

}
.border-content {
  margin-top: 30px;
  border: 1px solid #3f8cfd;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.border-content p {
  font-style: italic;
}

.border-content h4 {
  color: white;
}
.fc-white {
  color: white !important;
  font-weight: 400;
  font-size: 12px;
}
@media (max-width: 700px) {
  .data-p-container h2 {
    font-size: 20px;
  }
  .data-p-container {
    width: 80%;
  }
  .fc-white {
    color: white !important;
    font-weight: 400;
    font-size: 10px;
  }
}
