* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
}

.viewport {
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header .logo img {
  width: 66px;
  height: 66px;
}
.header .logo h1 {
  font-family: "Outfit";
  font-size: 30px;
  font-weight: bold;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
}
.hero-content {
  width: 45%;
}
.hero-content h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.hero-image {
  width: 50%;
  text-align: right;
}
.hero-image img {
  max-width: 100%;
}

.app-store-button {
  display: inline-block;
  transition: transform 0.3s ease;
}
.app-store-button img {
  height: 65px;
}
.app-store-button:hover {
  transform: scale(1.05);
}

.features {
  padding: 50px 0;
  position: relative;
}

.swiper {
  width: 100%;
  height: auto;
  margin: 20px 0;
  padding-bottom: 10px;
}
.swiper-slide {
  width: 31%;
  margin-right: 3.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e8f3ff;
  border-radius: 22px;
  padding: 46px;
  height: auto;
}
.swiper-slide img {
  width: 100%;
  border-radius: 20px;
}
.swiper-pagination {
  position: relative;
  bottom: 0 !important;
  margin-top: 45px;
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ccc;
  opacity: 1;
  transition: width 0.3s ease-out;
  border-radius: 6px;
}
.swiper-pagination-bullet-active {
  width: 70px;
  background: #4d87de;
}
.swiper-button-prev, .swiper-button-next {
  --swiper-navigation-size: 24px;
  bottom: 0;
  top: auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #efefef;
  color: #000;
}

.recommendations {
  padding: 40px 0;
}
.recommendations h2 {
  font-family: "Outfit";
  font-size: 30px;
  text-align: center;
  margin-bottom: 45px;
  font-weight: bold;
}
.recommendations .app-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.recommendations .app-card {
  position: relative;
  flex: 1;
  background-color: #e9f0ff;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}
.recommendations .app-card:first-child {
  background-color: #e6f2ff;
}
.recommendations .app-card:last-child {
  background-color: #eaefff;
}
.recommendations .app-icon {
  width: 85px;
  height: 85px;
  margin-bottom: 20px;
}
.recommendations .app-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 15px;
}
.recommendations .app-info {
  text-align: left;
}
.recommendations .app-info h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 15px;
}
.recommendations .app-info p {
  color: #121212;
  line-height: normal;
  font-size: 14px;
}
.recommendations .app-download {
  position: absolute;
  top: 36px;
  right: 36px;
}
.recommendations .app-download .download-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}
.recommendations .app-download .download-btn:hover {
  transform: scale(1.05);
}
.recommendations .app-download .download-btn img {
  height: 65px;
  border-radius: 8px;
}

.footer {
  padding: 32px 0;
  margin-top: 50px;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}
.footer .viewport {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer a {
  color: inherit;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-left {
  font-size: 14px;
}
.footer-right {
  font-size: 14px;
  text-align: right;
}