/* utils.css or top of your main stylesheet */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

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

ul,
ol {
  list-style: none;
}

section {
  display: flex;
  flex-direction: column;
}

footer {
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
}

h1 {
  font-size: 3rem !important;
  font-weight: 700;
}

h2 {
  font-size: 2rem !important;
  font-weight: 700;
}

h3 {
  font-size: 1.8rem !important;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 3rem !important;
    font-weight: 700;
  }

  h2 {
    font-size: 1.8rem !important;
    font-weight: 700;
  }

  h3 {
    font-size: 1.2rem !important;
    font-weight: 700;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2rem !important;
    font-weight: 700;
  }

  h2 {
    font-size: 1.5rem !important;
    font-weight: 700;
  }

  h3 {
    font-size: 1.1rem !important;
    font-weight: 700;
  }
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-text-left {
  text-align: left;
}

.u-text-justify {
  text-align: justify;
}

.u-text-justify-center {
  text-align: justify;
  text-align: center;
}

.spacing-block-1 {
  margin-bottom: 1rem;
}

.spacing-block-2 {
  margin-bottom: 2rem;
}

.spacing-block-3 {
  margin-bottom: 3rem;
}

.u-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background Styles */
.u-bg-main {
  background-color: #ab8d19 !important;
  color: #fff !important;
}

.u-bg-main > .button-main {
  filter: invert(0) !important;
}

.u-bg-secondary {
  background-color: #e6c43fff !important;
}
/* Background Styles */

/* Margins */
.m-auto {
  margin: 0 auto;
}

/* Special Utilities */
.u-arrow-down-content {
  position: relative;
  overflow: hidden; /* Optional: clip the arrow if needed */
}

.u-arrow-down-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 25px solid #ab8d19; /* Change to match the next section bg color */
}