* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  background-color: #f7f8fa;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

/* Container mimics the phone screen width */
.wa-container {
  background-color: #ffffff;
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  position: relative;
  padding-bottom: 40px;
}

/* Cover image with slight darkening overlay */
.cover-photo {
  width: 100%;
  height: 180px;
  background-color: #e9edef;
  overflow: hidden;
}

.cover-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

/* Avatar positioning (half-over the banner) */
.profile-section {
  padding: 0 20px;
  margin-top: -50px;
  text-align: left;
}

.avatar-wrapper {
  position: relative;
  display: inline-block;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #ffffff;
  background-color: #fff;
  object-fit: cover;
}

.verified-tick {
  position: absolute;
  bottom: 8px;
  right: 2px;
  background: #fff;
  border-radius: 50%;
  line-height: 0;
}

/* Text Styles */
.wa-title {
  font-size: 24px;
  font-weight: 700;
  color: #111b21;
  margin-top: 12px;
}

.wa-meta {
  font-size: 14px;
  color: #667781;
  margin-top: 4px;
}

/* The Follow Button - Official WhatsApp Web/Mobile Green */
.follow-btn {
  width: 100%;
  background-color: #00a884;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
}

.follow-btn:active {
  background-color: #008f72;
  transform: scale(0.98);
}

.divider {
  height: 8px;
  background-color: #f0f2f5;
  margin: 20px 0;
}

/* Description Area */
.info-section {
  padding: 0 20px;
}

.info-section h3 {
  font-size: 16px;
  color: #111b21;
  margin-bottom: 12px;
}

.wa-desc {
  font-size: 15px;
  color: #3b4a54;
  line-height: 1.4;
}

/* Privacy Notice Card */
.privacy-footer {
  padding: 20px;
}

.privacy-card {
  background-color: #f0f2f5;
  padding: 12px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: #667781;
}