
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}
/* =========================
   HERO
========================= */
/* HERO */
.page-hero {
  height: 600px;
  background: url('../images/hero-images-desktop/hero-image-terms.webp') center/cover no-repeat;
   position: relative;
  width: 100%;
  height: 600px; /* desktop height */
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-overlay h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
}

.hero-overlay p {
  color: #ddd;
  margin-top: 10px;
  font-size: 14px;
}

/* =========================
   HEADER
========================= */
.main-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 0;
}

.logo img {
    height: 45px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        z-index: 999;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu ul li {
        margin: 10px 20px;
    }

    .nav-menu.active {
        display: block;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
    }
}

    /* TERMS SECTION */
.terms-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
}

/* MAIN TITLE */
.terms-container h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #111;
}

/* NUMBERED HEADINGS */
.terms-container h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 8px;
  color: #111;
}

/* TEXT */
.terms-container p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 10px;
}
/* RESPONSIVE TERMS PAGE */
@media (max-width: 768px) {
.page-hero {
    height: 550px; 
    
    background-image: url('../images/hero-images-mobile/hero-image-terms-mobile.webp');
  }

  .hero-overlay h1 {
    font-size: 28px;
  }

  .terms-section {
    padding: 50px 15px;
  }

  .terms-container {
    max-width: 100%;
  }
  
  .terms-container h3 {
    font-size: 15px;
  }

  .terms-container p {
    font-size: 14px;
  }
  /* main title */
  .terms-container h2 {
    font-size: 22px;
    margin-bottom: 25px;
  }

  /* numbered headings */
  .terms-container h3 {
    font-size: 15px;
    margin-top: 20px;
  }

  /* paragraph text */
  .terms-container p {
    font-size: 14px;
    line-height: 1.6;
  }
}

