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

/* Body & Base Typography */
html, body {
  font-family: "Open Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #444;
  font-weight: 400;
  background: #fff;
  width: 100%;
  height: 100%;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.6rem;
}

h4 {
  font-size: 1.4rem;
}

/* Paragraphs */
p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2c5f2d; /* Ayurvedic green */
}

/* Lists */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
