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

body {
  background-color: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  padding: 60px 40px;
}

.container {
  display: flex;
  justify-content: space-between;
  flex-wra p: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}

.left {
  flex: 0 0 35%;
}

.right {
  flex: 0 0 60%;
}

.brand {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
}

.strong {
  font-weight: 700;
}

.logos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.logos img {
  width: 80px;
  height: auto;
  transition: transform 0.3s;
}

.logos img:hover {
  transform: scale(1.1);
}

@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    gap: 2rem;
  }

  .left, .right {
    flex: 100%;
  }

  .title {
    font-size: 2.2rem;
  }
}
