img {
  border: 0;
  outline: none;
  max-width: 100%;
}

.primary {
  color: var(--color-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button */

.button {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-family-title);
  line-height: var(--lineheight);
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.button {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #fff;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(91, 71, 255, 0.3);
}

.button--primary {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.button--outlined {
  border-color: var(--color-primary);
}

.button--small {
  font-size: 14px;
  padding: 8px 12px;
}

/* Titles */
section {
  padding: 80px 0;
}

.section-title {
  font-size: 48px;
  font-family: var(--font-family-title);
  font-weight: bold;
  line-height: 64px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* Text */
.text {
  font-family: var(--font-family-text);
  font-size: 18px;
  font-weight: normal;
  line-height: var(--lineheight);
  color: var(--color-text);
  margin-bottom: 24px;
}

.text-small {
  font-size: 16px;
}

/* Responsive Design for Common Elements */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .section-title {
    font-size: 42px;
    line-height: 56px;
  }
}

@media (max-width: 992px) {
  .container {
    padding: 0 25px;
  }

  .section-title {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 60px 0;
  }

  .text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .text-small {
    font-size: 15px;
  }

  .button {
    font-size: 15px;
    padding: 14px 20px;
  }

  .button--small {
    font-size: 13px;
    padding: 10px 16px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
  }

  .text {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 16px;
  }

  .text-small {
    font-size: 14px;
  }

  .button {
    font-size: 14px;
    padding: 12px 18px;
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .button--small {
    font-size: 12px;
    padding: 8px 14px;
    width: auto;
    max-width: none;
  }
}
