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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #e0f7fa, #fff3e0);
  color: #333;
  line-height: 1.8;
  padding: 20px;
}

header {
  background: #00695c;
  color: #fff;
  padding: 25px;
  text-align: center;
  border-bottom: 4px solid #ff7043;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fffde7;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

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

main {
  max-width: 1000px;
  margin: 30px auto;
  background: #ffffffcc;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

section {
  margin-bottom: 35px;
}

h1, h2 {
  color: #004d40;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
}

footer {
  background-color: #004d40;
  color: #ffffffcc;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  border-top: 3px solid #ff7043;
}

footer a {
  color: #ffccbc;
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  text-decoration: underline;
}

/* Social share section */
.a2a_kit {
  margin-top: 12px;
}