* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4f1eb;
  line-height: 1.7;
}

h1 {
  color: #fff;
  font-family: "Prata", serif;
  font-weight: 400;
}

section h2 {
  color: #000;
  font-family: "Prata", serif;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* Hero Section */
.hero {
  height: 80vh;
  min-height: 420px;
  background: url("../update-images/crownsy2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 40px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  max-width: 650px;
  z-index: 2;
  animation: fadeUp 1s ease;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero p {
  opacity: 0.9;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 70px 0;
}

/* Card */
.card {
  background: #fff;
  border: 1px solid #e6e2d8;
  padding: 45px;
  margin-bottom: 50px;
  transition: 0.3s;
}

.card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.card h2 {
  margin-bottom: 14px;
  font-size: 1.9rem;
}

.card p {
  color: #000;
}

.small {
  color: #414040;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

/* Lists */
ul,
ol {
  color: #000;
  margin-left: 20px;
  margin-top: 10px;
}

li {
  margin-bottom: 8px;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.grid img {
  border-radius: 4px;
}

/* Policy Navigation */
.policy-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 50px;
}

.policy-nav a {
  padding: 8px 16px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
  transition: 0.3s;
}

.policy-nav a:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* CTA */
.cta {
  text-align: center;
  margin-top: 50px;
}

.cta a {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 14px 32px;
  letter-spacing: 1px;
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 820px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .hero {
    height: 70vh;
  }
}

/* WhatsApp Floating Button */
.floating-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  color: #000;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 300;
  z-index: 999;
}

.wa-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.wa-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.wa-box button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.close {
  display: block;
  margin-top: 40px;
  cursor: pointer;
  color: #000;
}
