* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f3f4f7;
  color: #333;
  max-width: 1126px;
  margin: 0 auto;
}

/* NAVBAR */
.navbar {
  background: #1a1a1a;
  display: flex;
  justify-content: space-between;
  padding: 14px 60px;
  align-items: center;
}

.navbar div {
  color: white;
  font-weight: 600;
}

.navbar a {
  color: #bbb;
  margin-left: 25px;
  text-decoration: none;
  font-size: 14px;
}

.navbar a.active {
  color: #ffcc00;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #7b2ff7, #2c1f59);
  color: white;
  text-align: center;
  padding: 120px 20px 110px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 30px;
}

.btn {
  background: #ffb300;
  padding: 14px 30px;
  border-radius: 12px;
  color: black;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 8px 20px rgba(255, 179, 0, 0.4);
}

/* SECTION */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 26px;
  margin-bottom: 40px;
}

/* CARDS CONTAINER */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #eef0f4;
  padding: 30px 25px;
  border-radius: 18px;
  width: 240px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card .icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #666;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 30px;
  color: #777;
  font-size: 14px;
}

/* FIX: ensure cards don't collapse */
.card {
  background: #eef0f4;
  padding: 30px 25px;
  border-radius: 18px;
  width: 240px;
  min-height: 180px;
  /* 🔥 THIS FIXES YOUR ISSUE */
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* text styling */
.card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  font-weight: 600;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* PRIVACY PAGE */
.privacy {
  max-width: 900px;
  margin: auto;
}

.privacy-block {
  padding: 25px 10px;
}

.privacy-block h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy-block p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Divider line */
.divider {
  height: 1px;
  background: #ddd;
  margin: 10px 0;
}

/* NEW PRIVACY DESIGN */
.privacy-new {
  padding: 80px 20px;
}

.privacy-container {
  max-width: 800px;
  margin: auto;
  text-align: left;
}

.privacy-container h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.privacy-intro {
  color: #666;
  margin-bottom: 30px;
}

/* Cards */
.privacy-card {
  background: white;
  padding: 20px 25px;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.privacy-card:hover {
  transform: translateY(-3px);
}

.privacy-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.privacy-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* FAQ SECTION */
.faq {
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.faq-item {
  background: #eee;
  margin-bottom: 12px;
  border-radius: 8px;
  overflow: hidden;
}

/* QUESTION */
.faq-question {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ACTIVE HEADER */
.faq-item.active .faq-question {
  background: #ffcc00;
  color: black;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #f5f5f5;
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
}

/* SHOW ANSWER */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

/* CONTACT PAGE */
.contact {
  padding: 80px 20px;
}

/* CARD */
.contact-card {
  max-width: 600px;
  margin: auto;
  background: #f1f3f6;
  padding: 35px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
  margin-bottom: 20px;
}

/* ITEMS */
.contact-item {
  margin: 12px 0;
  font-size: 15px;
}

.contact-item a {
  color: #4a63ff;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-card {
  border: 1px solid #e0e0e0;
}

.section.faq {
  text-align: left;
}

.install-btn {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-50%) scale(1.05);
  }

  100% {
    transform: translateY(-50%) scale(1);
  }
}

.install-btn {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);

  cursor: grab;
  background: rgb(255, 255, 255);
  color: #3c227a;

  border: 2px solid #3c227a;
  padding: 12px 16px;

  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);

  z-index: 9999;
  height: 50px;
  width: 50px;

  border-radius: 50%;
  display: none;
}
.install-btn span{
  display: block;
  margin: -6px -5px -3px -7px;
  font-size: 22px;
}

.install-btn:active {
  cursor: grabbing;
}