/* ===============================
   HERO SECTION
================================ */

.quiz-hero-section{
  position: relative;
  background-image: url('../images/background-quiz-top-2.jpg');
  min-height: 580px;;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 90px 20px 60px 20px;
  text-align: center;
}

.quiz-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(246,243,238,0.25) 75%, 
                                         rgba(246,243,238,0.25) 75%, 
                                         rgba(246,243,238,0.35) 85%, #F1F3F1 100%);
}

.quiz-hero-content{
    position: relative;
    max-width: 900px;
    margin: auto;
    margin-top: -20px;
    z-index: 2;
}

.quiz-logo{
  max-width: 260px;
  margin-top: 20px;
}

.quiz-main-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 64px;
  font-weight: 500;
  color: #5E6D5F;
  margin-top: 70px;
}

.quiz-main-sub {
  font-size: 20px;
  line-height: 30px;
  color: #464F47;
  max-width: 680px;
  margin: 30px auto 28px auto;
  filter: drop-shadow(0px 0px 30px rgb(255,255,255,1)) 
          drop-shadow(0px 0px 30px rgb(255,255,255,1))
          drop-shadow(0px 0px 20px rgb(255,255,255,1));
}

.quiz-main-cta {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 8px;
}

.quiz-mini-note {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 400;
  color: #464F47;
}

/* ===============================
   ICON SECTION
================================ */

.quiz-icons-section {
  background: #F1F3F1;
  padding: 0px 20px 120px 20px;
  text-align: center;
}

.quiz-icons-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.quiz-icon-item {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
}

.quiz-icon-item img {
  height: 90px;
  margin-bottom: 2px;
}

.quiz-icon-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #5E6D5F;
  margin: 10px 0px 0px 0px;
}

.quiz-icon-item p {
  font-size: 16px;
  color: #6C7A6E;
  margin: 10px 20px 0px 20px;
}

/* ===============================
   FLOATING QUIZ CARD EFFECT
================================ */

.quiz-section {
  margin-top: -50px;
  padding-top: 0px;
  position: relative;
  z-index: 3;
}

.quiz-shell {
  max-width: 820px;
  margin: auto;
}

.quiz-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  padding: 40px;
}
.quiz-parallax-section{
    width:100%;
    min-height: 760px;

    background-image:url("../images/background-bottom.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    background-attachment:fixed;

    display:flex;
    align-items:center;
    justify-content:center;
}
.quiz-parallax-overlay{
    width: 70%;
    height: 100%;
    background:rgba(255,255,255,0.7);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 20px;
}
.quiz-parallax-content{
    max-width:900px;
    text-align:center;
}
.quiz-parallax-content h2{
    font-size:38px;
    margin-bottom:20px;
}
.quiz-parallax-content p{
    font-size:18px;
    line-height:1.7;
}


.quiz-discover-section{
  padding: 0px 20px 0px 20px;
  background: #F1F3F1;
  text-align: center;
}
.quiz-discover-wrap{
  max-width: 1100px;
  margin: auto;
}


.quiz-value-section{
  padding: 0px 20px;
  background: #F1F3F1;
  text-align: center;
}

.quiz-value-wrap{
  max-width: 1100px;
  margin: auto;
}

.quiz-value-title{
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  line-height: 44px;
  font-weight: 500;
  color: #5E6D5F;
  margin: 0px 0 20px 0;
}

.quiz-value-sub{
  font-size: 18px;
  line-height: 28px;
  color: #6C7A6E;
  max-width: 760px;
  margin: 0 auto 26px auto;
  font-weight: 300;
}



.quiz-benefit-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  text-align: left;
  margin-top: 30px;
}
.quiz-benefit-item{
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 18px 18px;
}

.quiz-benefit-item h3{
  margin: 0 0 10px 0;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #5E6D5F;
}

.quiz-benefit-item p{
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  color: #6C7A6E;
  font-weight: 300;
}


/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

    .quiz-main-title {
        font-size: 38px;
        line-height: 46px;
    }

    .quiz-icons-container {
        flex-direction: column;
        align-items: center;
    }

    .quiz-section {
        margin-top: -60px;
    }

}

