a* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #edede5;
  overflow-x: hidden;
}

/* ✅ LANGUAGE TOGGLE */
.lang-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 999;
}

.lang-toggle button {
  padding: 6px 12px;
  border: none;
  background: black;
  color: white;
  margin-left: 5px;
  border-radius: 20px;
  cursor: pointer;
}

/* ✅ LOADER */
#loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #edede5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #999;
  border-top: 6px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* ✅ HERO */
.hero {
  height: 100vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ✅ LOGO SIZE INCREASED */
.logo {
  width: 330px;
  margin-bottom: 25px;
}

.hero h1 {
  font-size: 36px;
}

.hero p {
  font-size: 18px;
  color: #444;
}

/* ✅ CONTENT */
.content {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
  line-height: 1.8;
  font-size: 18px;
}

.content h3 {
  margin: 25px 0 15px;
}

.content ul {
  padding-left: 25px;
}

.content li {
  margin-bottom: 10px;
}

.summary {
  margin-top: 20px;
  font-weight: bold;
}

/* ✅ CONTACT */
.contact {
  text-align: center;
  padding: 50px 20px;
  background: white;
}

/* ✅ WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 28px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
