.full-width-bg {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #F8F6F6;
}

.bg-orange {
  background-color: #e79f24;
  color:white;
}


.three-column-highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin: 2rem 0;
}

.three-column-highlight .highlight-box {
  flex: 1 1 30%;
  min-width: 250px;
  max-width: 100%;
}

.three-column-highlight h3 {
  color: #E79F24;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight:bold;
  text-align:center;
}

.three-column-highlight p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
  text-align:center;
}

.three-column-highlight img {
  margin-left:auto;
  margin-right:auto;
}


.feature-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem ;
}

.feature-split-vatop {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start; /* <-- align columns at the top */
  justify-content: space-between;
  gap: 2rem;
}

.feature-text {
  flex: 1 1 50%;
  max-width: 600px;
}

.feature-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.feature-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

.feature-text-right {
  flex: 1 1 45%;
  max-width: 600px;
}

.feature-right h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.feature-right p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}


.feature-image {
  flex: 1 1 45%;
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  height: auto;
}

.feature-image video {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


.accordion-wrapper label{
    font-weight:bold;
}

.accordion-wrapper{
    font-size: 1.2rem;
}

.button-primary {
  background-color: #E79F24;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin:10px;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.button-primary:hover,
.button-primary:focus {
  background-color: #d88f1f;
  color: #fff;
  outline: none;
}


a.button-primary {
  display: inline-block;
  background-color: #E79F24;
  color: #fff !important;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.7em 1.3em;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

a.button-primary:hover,
a.button-primary:focus {
  background-color: #d88f1f;
  text-decoration: none;
  color: #fff;
}

a.button-secondary {
  display: inline-block;
  background-color: #58595B;
  color: #fff !important;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.7em 1.3em;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

a.button-secondary:hover,
a.button-secondary:focus {
  background-color: #494a4d;
  text-decoration: none;
  color: #fff;
}


.site-footer {
  background-color: #2d2d2d;
  color: #fff;
  padding: 3rem 1rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-col h4 {
  color: #E79F24;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight:bold;
}

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

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons i {
  font-size: 1.2rem;
  color: #ddd;
}

.social-icons i:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #bbb;
}

@media screen and (max-width: 768px) {
  .footer-columns {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .footer-col {
    flex: 1 1 45%;
    margin-bottom: 2rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 480px) {
  .footer-col {
    flex: 1 1 100%;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}


@media (min-width: 350px) {
    html {
        font-size: calc(12px + 3 * ((100vw - 480px)/ 800));
    }
}


.video-library {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  grid-template-columns: repeat(1, 1fr); /* default: 1 per row */
}

/* ⬆️ On mobile, 1 per row — already working */

/* 💻 On tablets and up: 2 per row */
@media (min-width: 600px) {
  .video-library {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-card {
  border: 1px solid #ddd;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
  background-color: #fff;
  position: relative;
}

.video-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.video-title {
  font-size: 1.2rem;
  font-weight: bolder;
  margin-bottom: 0.5rem;
  color: #E79F24;
  text-align: center;
}

.video-thumb, .video-player {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.video-thumb:hover {
  transform: scale(1.03);
}

.video-description {
  font-size: 0.95rem;
  margin-top: 0.75rem;
  color: #555;
  text-align: center;
}

.video-separator {
  height: 2px;
  background: linear-gradient(to right, #ccc, transparent, #ccc);
  margin: 2rem auto;
  width: 60%;
  border-radius: 1px;
}

.video-thumb-wrapper {
  position: relative;
  display: inline-block;
}

.video-thumb {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  pointer-events: none; /* So clicks go through to the image */
  opacity: 0.85;
}
