* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bai Jamjuree', sans-serif;
  background: #F5F6F8;
  color: #4C545C;
}

.container {
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}
header {
  background: url('./images/bg-header-desktop.png') no-repeat center top;
  padding: 100px 20px 60px;
}

header img.logo {
  width: 100px;
  margin-bottom: 40px;
}

h1 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

p {
  color: #9EABB2;
  line-height: 1.6;
}
.buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 15px 35px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.btn-ios {
  background: #26BBA4;
  box-shadow: 0px 10px 20px #89E5C780;
}

.btn-mac {
  background: #6174FF;
  box-shadow: 0px 10px 20px #00000019;
}

.btn:hover {
  opacity: 0.8;
}
.section {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section p {
  max-width: 600px;
  margin: 0 auto;
}

.features {
  display: flex;
  align-items: center;
  gap: 139px;
  margin-top: 80px;
  text-align: left;
}

.features img {
  width: 50%;
}

.feature-text {
  width: 50%;
}

.feature {
  margin-bottom: 40px;
}

.feature h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.devices img {
  width: 80%;
  margin-top: 60px;
}
.workflow {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  gap: 30px;
}

.workflow-item {
  flex: 1;
}

.workflow-item img {
  margin-bottom: 30px;
}

.workflow-item h3 {
  margin-bottom: 15px;
}
.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 120px 0;
  flex-wrap: wrap;
  gap: 40px;
}

.logos img {
  height: 40px;
}
footer {
  background: #EAEFF2;
  padding: 40px 20px;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #4C545C;
}

.socials img {
  margin-left: 15px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .features {
    flex-direction: column;
    text-align: center;
  }

  .features img,
  .feature-text {
    width: 100%;
  }

  .workflow {
    flex-direction: column;
  }

  .logos {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-direction: column;
    text-align: center;
  }
}
