h1 { font-size: clamp(1rem, 5vw, 2.5rem);
text-align: center;}
p {
white-space: normal;
word-wrap: break-word;
font-size: clamp(0.9rem, 5vw, 1.2rem ); }

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: lch(98.36% 3.2 159.92);
  color: #333;
}



/* Base Styles */
#main-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}


#main-header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: #c9fce0;
}


#main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  margin-left: 20px;
  transition: color 0.3s;
}

#main-nav a:hover {
  color: #28a745;
}

#main-menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive Behavior */
@media (max-width: 768px) {
  #main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #ddd;
  }

  #main-nav a {
    margin: 0;
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }

  #main-menu-toggle {
    display: block;
  }

  #main-nav.show {
    display: flex;
  }
}

.container {
  padding: 1rem;
}
.post-card {
  background: white;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}
.footer {
  text-align: center;
  padding: 1rem;
  background: #18d341;
  color: white;
}
.text-section {
  max-width: 900px;      /* nice wide text on large screens */
  width: 90%;            /* fills screen on mobile */
  margin: 2rem auto;     /* centers the text */
  line-height: 1.6;
  color: #333;
  font-family: Arial, sans-serif;
  text-align: left;
}

.text-section h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.text-section p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  word-wrap: break-word;
  white-space: normal;
}
.privacy-policy {
  max-width: 800px;
  padding: 20px;
  line-height: 1.6;
}
.contact-container {
  display: flex;
  justify-content: center;   /* Centers horizontally */
  align-items: center;       /* Centers vertically */
  height: 100vh;             /* Full screen height */
  background-color: #f5f5f5;
}

/* The form box */
.contact-form {
  background: white;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;          /* Keeps it neat on larger screens */
}

/* form styling */
.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #2ecc71;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #27ae60;
}
.share-container {
  margin-top: 40px;
  text-align: center;
}

.share-container h4 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #333;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.share-buttons a:hover {
  transform: scale(1.1);
  opacity: 0.85;
}

.facebook { background-color: #1877f2; }
.twitter { background-color: #1da1f2; }
.whatsapp { background-color: #25d366; }
.linkedin { background-color: #0077b5; }
.telegram { background-color: #0088cc; }
