* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #333;
  overflow-x: hidden;
}

.container {
  background: #fff;
  padding: 32px 24px;
  border-radius: 18px;
  max-width: 500px;
  width: 92%;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.logo img {
  max-width: 140px;
  margin-bottom: 15px;
}

h1 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #ff6f00;
}

p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.highlight {
  background: #fff3e0;
  border-radius: 12px;
  padding: 15px;
  margin: 16px 0;
  font-size: 15px;
}

.highlight strong {
  color: #ff6f00;
  font-size: 16px;
}

.phone {
  font-size: 22px;
  font-weight: 600;
  margin: 15px 0;
}

.phone a {
  text-decoration: none;
  color: #000;
}

.cta {
  display: inline-block;
  margin-top: 10px;
  background: #25d366;
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.social {
  margin-top: 18px;
  font-size: 14px;
}

.social a {
  text-decoration: none;
  color: #e1306c;
  font-weight: 500;
}

.note {
  margin-top: 16px;
  font-size: 13px;
  color: #666;
}

@media (max-width: 360px) {
  h1 {
    font-size: 28px;
  }
}
