.module-7 {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.blob-wrapper-big {
  transform: scale(0.16);
  margin-top: -51px;
  position: relative;
  right: 26px;
}

.module-7 .container {
  background-color: var(--bg-light);
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding-top: 128px;
  padding-inline: 118px;
  padding-bottom: 40px;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 40, 0.1);
  border-radius: 16px;
}

.module-7 .content {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.module-7 h2 {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 500;
  line-height: 64px;
  font-size: var(--text-48);
  line-height: var(--text-48);
  color: black;
  margin: 0;
}

.module-7 p {
  font-size: var(--text);
  line-height: 1.5;
  color: black;
  font-weight: 300;
  line-height: normal;
}

.module-7 p strong {
  font-weight: 700;
}

.module-7 .btn {
  margin-top: 16px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  .module-7 {
    padding: 60px 0;
  }

  .module-7 h2 {
    font-size: 2rem;
  }

  .module-7 p {
    font-size: 1rem;
  }

  .module-7 .logo-text {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .module-7 {
    padding: 40px 0;
  }

  .module-7 h2 {
    font-size: 1.75rem;
  }

  .module-7 .logo-text {
    font-size: 1.5rem;
  }
  .module-7 .container {
    padding-inline: 30px;
  }
}
