.section-app {
  background: #f8f8f9;
  padding: 40px 0;
  margin-bottom: 40px;
}

.app-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.app-left {
  flex: 1;
}

.app-right {
  flex: 1;
  text-align: center;
}

.app-title {
  font-size: 32px;
  font-weight: 500;
  color: #28292d;
  margin-bottom: 20px;
}

.app-des {
  font-size: 16px;
  line-height: 28px;
  color: #666;
  margin-bottom: 30px;
}

.app-download-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #28292d;
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
  min-width: 180px;
}

.download-btn:hover {
  background: #ff3b51;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 59, 81, 0.3);
}

.btn-icon {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 4px;
}

.ios-btn .btn-icon {
  background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
}

.android-btn .btn-icon {
  background: linear-gradient(135deg, #3DDC84 0%, #2A9D8F 100%);
}

.btn-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.btn-text-small {
  font-size: 12px;
  opacity: 0.8;
}

.btn-text-large {
  font-size: 16px;
  font-weight: 500;
}

.app-qr {
  display: flex;
  align-items: center;
  gap: 15px;
}

.qr-code {
  width: 120px;
  height: 120px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
}

.qr-text {
  font-size: 14px;
  color: #666;
}

.app-phone {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}