/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.text-green {
  color: #87cc46;
}

.text-blue {
  color: #4a90e2;
}

.text-darkgreen {
  color: #10b981;
}
.text-yellow {
  color: #B29459;
}


/* text-yellow1 - For yellow/tan colored text */
.text-yellow1 {
  color: #d4a574;
  font-weight: 700;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(212, 165, 116, 0.5);
}

/* text-blue1 - For blue colored text */
.text-blue1 {
  color: #4a90e2;
  font-weight: 700;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(74, 144, 226, 0.5);
}

/* text-green1 - For green colored text */
.text-darkgreen1 {
  color: #87cc46;
  font-weight: 900;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(135, 204, 70, 0.5),
    0 0 40px rgba(135, 204, 70, 0.3);
}

.text-white {
  color: #ffffff;
  font-weight: 900;
  text-shadow:
    2px 2px 4px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(135, 204, 70, 0.5),
    0 0 40px rgba(135, 204, 70, 0.3);
}
