:root {
  --white: #ffffff !important;
  --primary: #1b522b !important;
  --font: "Inter", sans-serif !important;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  outline: none !important;
  box-shadow: none !important;
  font-family: var(--font) !important;
}

html {
  margin: 0;
  padding: 0;
  font-size: 16px;
}

a {
  text-decoration: none;
}

.main {
  width: 100%;
  min-height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section {
  width: 100%;
  height: auto;
  padding: 50px 0;
}

.logo {
  width: 250px;
  text-align: center;
  margin: 0 auto 15px auto;
}

.logo img {
  width: 100%;
}

h1 {
  color: var(--primary);
  text-align: center;
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: var(--font) !important;
}

.green-bg {
  background-color: rgba(27, 82, 43, 0.7);
  padding: 30px;
  border-radius: 30px;
  min-height: 100px;
}

.green-bg h6 {
  font-size: 24px;
  line-height: 40px;
  color: var(--white);
  font-weight: 500;
  text-align: center;
  font-family: var(--font) !important;
}

.green-bg h6 br {
  display: none;
}

.green-bg h6 a {
  font-size: 24px;
  color: var(--white);
  font-weight: 500;
  text-align: center;
  position: relative;
}

.green-bg h6 a::after {
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--white);
  content: "";
  bottom: -3px;
  left: 0;
  transition: width 0.2s;
}

.green-bg h6 a:hover::after {
  width: 100%;
  transition: width 0.2s;
}

.green-bg h6 img {
  margin: 0 15px;
}

.green-bg h6 span {
  margin: 0 5px;
}

.green-bg h4 {
  color: var(--white);
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin: 30px 0;
}

.green-bg p {
  font-size: 18px;
  color: var(--white);
  padding: 0 25px 0 50px;
  position: relative;
  line-height: 26px;
  margin: 0;
  height: 52px;
  display: flex;
  align-items: center; /* Vertically centers items */
  font-family: var(--font) !important;
}

.green-bg p img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
