:root {
  /* Palette: Earthy Greens and Beiges */
  --primary-color: #5F6F52; 
  --secondary-color: #A9B388;
  --accent-color: #B99470;
  --light-color: #FEFAE0; 
  --dark-color: #1a1a1a;
  --text-color: #333333;
  
  --hover-color: #4A5741;
  --background-color: #F9F9F7;
  --border-color: rgba(95, 111, 82, 0.2);
  --divider-color: rgba(185, 148, 112, 0.3);
  --shadow-color: rgba(95, 111, 82, 0.1);
  /* Highlight Color */
  --highlight-color: #D35400;

  --main-font: 'Poppins', sans-serif;
  --heading-font: 'Lora', serif;
}

body {
  font-family: var(--main-font);
  color: var(--text-color);
  background-color: var(--background-color);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
}

/* Organic Background Pattern */
.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20c10-10 20 0 20 0s-10 10-20 0c-10 10-20 0-20 0s10-10 20 0zm0-20c10-10 20 0 20 0s-10 10-20 0C10 10 0 0 0 0s10-10 20 0zm0 40c10-10 20 0 20 0s-10 10-20 0c-10 10-20 0-20 0s10-10 20 0z' fill='%23A9B388' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.content-wrapper {
  z-index: 10;
  position: relative;
}

header, footer {
  z-index: 20;
}

.btn-custom {
    background-color: var(--primary-color);
    color: var(--light-color);
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background-color: var(--hover-color);
    transform: translateY(-2px);
}

.feature-box {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.testimonial-item {
    background: var(--light-color);
    border: 1px solid var(--secondary-color);
}