body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #fff;
}

header {
  background: #ff4d6d;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.logo span {
  color: #fff0f5;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  position: relative;
  text-align: center;
  color: white;
}
.hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  background: rgba(255,77,109,0.8);
  padding: 20px;
  border-radius: 10px;
}

.hero-text h1 {
  margin: 0 0 10px;
}

.hero-text p {
  margin-bottom: 15px;
}

.btn {
  background: #fff;
  color: #ff4d6d;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
}

.cards-section {
  text-align: center;
  padding: 40px 20px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #ffe3ec;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.pricing {
  background: #ff4d6d;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 15px;
}

footer a {
  color: #ff4d6d;
  text-decoration: none;
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }
  .hero-text {
    width: 90%;
  }
}

.intro-card {
  background: #ffe3ec;
  margin: -20px auto 40px;
  padding: 30px 20px;
  max-width: 900px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.intro-card h1 {
  margin-bottom: 10px;
  color: #ff4d6d;
  font-size: 2rem;
}

.intro-card p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.btn-large {
  background: #ff4d6d;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
}
.app-preview-section {
  text-align: center;
  padding: 40px 20px;
  background: #fff0f5;
}

.app-preview-section h2 {
  color: #ff4d6d;
  margin-bottom: 10px;
}

.app-preview-section p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.preview-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.preview-card {
  background: #ffe3ec;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width: 200px;
  padding: 10px;
}

.preview-card img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .preview-container {
    flex-direction: column;
    align-items: center;
  }
}

