body {
  margin: 0;
  padding: 0;
  background-color: #e5e5e5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: sans-serif;
}

.iphone-page {
  width: 402px;
  height: 874px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Mallanna', sans-serif;
  background-color: #d4dddb;
  width: 402px;
  height: 874px;
  margin: 0 auto;
  overflow-x: hidden;
}

.container {
  width: 100%;
  height: 100%;
}

.header {
  background-color: #FF94B3;
  height: 72px;
  width: 402px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.icon {
  width: 24px;
  height: 24px;
  background: url('Menu.png') center/contain no-repeat;
  border-radius: 4px;
}

.logo {
  width: 36px;
  height: 36px;
  background: url('logo.png') center/contain no-repeat;
}

.hero {
  background-color: #ffffff;
  width: 402px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: #000;
  text-align: center;
}

/* Services */
.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.service-box {
  background-color: #ffffff;
  width: 328px;
  height: 128px;
  border-radius: 8px;
  display: flex;
  padding: 8px;
  gap: 12px;
  align-items: center;
}

.service-img {
  width: 84px;
  height: 112px;
  object-fit: cover;
  border-radius: 4px;
}

.service-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-size: 14px;
  color: #000;
  align-items: center;
}

.book-btn {
  background-color: #A6A6A6;
  color: white;
  border: none;
  width: 105px;
  height: 24px;
  font-size: 13px;
  font-family: 'Mallanna', sans-serif;
  border-radius: 4px;
  cursor: pointer;
}
