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

body {
  font-family: "Asap", sans-serif;
  background-color: #efeeea;
  color: #0c5e4b;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* Logo Section */
.logo-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px 40px;
}

.logo {
  width: 130px;
  height: auto;
  object-fit: contain;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 0 20px 50px;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  color: #0c5e4b;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #0c5e4b;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Phone Carousel Section */
.phone-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  height: 434px;
}

.phone-carousel {
  position: relative;
  width: 340px;
  height: 434px;
}

.phone-container {
  position: absolute;
  width: 340px;
  height: 434px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.phone-container.active {
  opacity: 1;
}

.phone-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #efeeea;
  border: 1px solid #058a6a;
  color: #0c5e4b;
  font-size: 20px;
  font-family: "Asap", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: #0c5e4b;
  color: white;
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: calc(50% - 340px);
}

.carousel-btn-next {
  right: calc(50% - 340px);
}

.carousel-btn span {
  display: block;
  line-height: 1;
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
}

/* Description Section */
.description-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0px;
  margin-bottom: 60px;
}

.description-container {
  text-align: center;
  max-width: 402px;
  padding: 24px;
}

.description-title {
  font-size: 24px;
  font-weight: 600;
  color: #0c5e4b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.description-text {
  font-size: 15px;
  font-weight: 400;
  color: #0c5e4b;
  line-height: 1.5;
}

/* Pagination Dots */
.pagination {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 0px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #9ca3af;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  background-color: #068a6a;
}

.dot:hover {
  opacity: 0.8;
}

/* App Store Badges */
.badges-section {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 0 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.badge-link {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.badge-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.badge-image {
  height: 61px;
  width: auto;
  object-fit: contain;
}

/* Footer */
.footer {
  background-color: #058a6a;
  padding: 40px 20px;
  text-align: center;
  margin-top: 60px;
}

.footer-text {
  font-size: 18px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.footer-text:hover {
  opacity: 0.9;
}

/* Animation for carousel transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.phone-container.active {
  animation: fadeIn 0.5s ease-in-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}
