* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(#fffbfa, #e6b6a0);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f77c1f;
  padding: 10px 40px;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 250px;
  margin-right: 10px;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: black;
  font-size: 16px;
  font-weight: 500;
  border: 2px solid transparent;
  border-radius: 20px;
  transition: background-color 0.3s;
}

nav a:hover {
  background-color: #ffffff;
}

.policy-container {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 850px;
  margin: 40px auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

h1 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

h2 {
  font-size: 25px;
  margin-top: 30px;
  color: #f77c1f;
}

h3 {
  font-size: 24px;
  margin-top: 20px;
  color: #f77c1f;
}

p {
  font-size: 20px;
  line-height: 1.6;
}

ul {
  margin-top: 10px;
  padding-left: 20px;
}

ul li {
  margin-bottom: 6px;
}

.policy-container a {
  color: #f77c1f;
  text-decoration: none;
}

.policy-container a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #fefefe;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
  font-size: 14px;
  position: relative;
}

.footer-left {
  color: #333;
}

.footer-right a {
  margin-left: 20px;
  text-decoration: none;
  color: #2c3e50;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-right a:hover {
  color: #00bfa5;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.whatsapp-float img {
  width: 24px;
  height: 24px;
}

/* Responsive adjustments for tablets and smaller devices */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .logo img {
    height: 150px;
    margin-bottom: 10px;
  }

  nav a {
    margin: 10px 10px;
    display: block;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-right a {
    margin-left: 0;
    margin-top: 10px;
    display: block;
  }

  .main-wrapper,
  .blog-layout,
  .terms-container {
    flex-direction: column !important;
    margin: 20px;
    padding: 20px;
  }

  .image,
  .image2,
  .sidebar,
  .post-content {
    width: 100% !important;
    margin: 0 auto !important;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

/* For very small mobile devices */
@media (max-width: 480px) {
  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 18px;
  }

  .post-content {
    flex-direction: column;
  }

  .post-content img {
    width: 100%;
  }

  .btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}
