@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

nav {
  /* width: 90%; */
  padding: 0px 80px;
  background-color: #FAF9F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
nav .nav-L {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
nav .nav-L h6 {
  font-size: 1.6rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #4E944F;
}
nav .nav-L img {
  height: 60px;
}
nav ul {
  display: flex;
  gap: 40px;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  padding: 5px;
  border-radius: 3px;
  text-decoration: none;
  color: #4E944F;
}
nav ul li a:hover {
  color: #fff;
  background-color: #4E944F;
}
nav ul .dropdown {
  position: relative;
  display: inline-block;
}
nav ul .dropdown .dropdown-content {
  width: 120px;
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
nav ul .dropdown .dropdown-content a {
  display: block;
}
nav ul .dropdown .dropdown-content a:hover {
  background-color: #ddd;
  color: #3e8e41;
}
nav .active {
  font-weight: bold;
}
nav .nav-R {
  display: flex;
  gap: 20px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

/* ---------------- Tablet (720px–1000px) ---------------- */
@media (max-width: 1000px) and (min-width: 720px) {
  nav {
    padding: 0 40px;
  }
  nav .nav-L h6 {
    display: none;
  }
  nav ul {
    gap: 20px;
  }
}
@media (max-width: 600px) and (min-width: 360px) {
  nav {
    padding: 0px 20px;
  }
  nav .nav-L img {
    height: 40px;
  }
  nav .nav-L h6 {
    display: none;
  }
  nav .nav-mid ul {
    gap: 10px;
  }
  nav .nav-mid ul a {
    font-size: 12px;
  }
}
.wel-sec-container {
  height: 540px;
  padding-top: 60px;
  color: #3B2F2F;
  background-image: url(../../../img/bc.jpg);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.wel-sec-container img {
  width: 500px;
  align-self: flex-end;
}
.wel-sec-container .wel-L {
  width: 40%;
}
.wel-sec-container .wel-L h2 {
  margin-bottom: 10px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #4E944F;
}
.wel-sec-container .wel-L p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.wel-sec-container .wel-L button {
  padding: 12px 30px;
  background-color: #4E944F;
  color: #fff;
  border-radius: 4px;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.wel-sec-container .wel-L button:hover {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.tip-sec {
  padding: 60px 80px;
  color: #3B2F2F;
}
.tip-sec h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #4E944F;
  margin-bottom: 30px;
}
.tip-sec .tip-card-container {
  display: flex;
  justify-content: space-between;
}
.tip-sec .tip-card-container .tip-card {
  width: 22%;
}
.tip-sec .tip-card-container .tip-card fieldset {
  height: auto;
  padding: 30px;
  padding-top: 10px;
  background-color: #FAF9F6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tip-sec .tip-card-container .tip-card fieldset h3 {
  text-align: center;
  color: #4E944F;
  margin-bottom: 10px;
}
.tip-sec .tip-card-container .tip-card fieldset p {
  text-align: justify;
}
.tip-sec .tip-card-container .tip-card fieldset legend {
  text-align: center;
}
.tip-sec .tip-card-container .tip-card fieldset legend img {
  width: 60px;
  padding: 10px;
  border-radius: 50%;
  background: #f1f8f2;
  box-shadow: 0 2px 6px;
}
.tip-sec .tip-card-container .tip-card fieldset:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.story-sec {
  padding: 60px 80px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.story-sec .story-L {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "s3 s1" "s4 s2";
  gap: 20px;
}
.story-sec .story-L .story-L1 {
  grid-area: s1;
  justify-content: end;
  align-content: end;
}
.story-sec .story-L .story-L2 {
  grid-area: s2;
  justify-self: start;
}
.story-sec .story-L .story-L3 {
  grid-area: s3;
  justify-self: end;
  align-content: end;
}
.story-sec .story-L .story-L4 {
  grid-area: s4;
  justify-self: end;
  align-self: start;
}
.story-sec .story-R h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #4E944F;
  margin-bottom: 30px;
  text-align: left;
}
.story-sec .story-R p {
  margin-top: 30px;
  text-align: justify;
  color: #3B2F2F;
}

footer {
  padding-top: 40px;
  background-color: #FAF9F6;
}
footer p {
  color: #3B2F2F;
}
footer h3 {
  color: #4E944F;
}
footer .foot-top-container {
  padding: 0px 80px;
  display: flex;
  justify-content: space-between;
}
footer .foot-top-container .foot-parents-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .foot-top-container .foot-parents-logo img {
  height: 100px;
}
footer .foot-top-container .foot-parents-logo p:nth-child(2) {
  font-family: Verdana;
  font-weight: bold;
}
footer .foot-top-container .foot-parents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .copyright {
  width: 100%;
  margin-top: 40px;
  padding: 15px 0px;
  background-color: #4E944F;
}
footer .copyright p {
  color: #fff;
  text-align: center;
}

/* ---------------- Tablet (720px–1000px) ---------------- */
@media (max-width: 1000px) and (min-width: 720px) {
  footer {
    font-size: 12px;
  }
  footer .foot-top-container {
    gap: 20px;
    padding: 0px 40px;
  }
}
@media (max-width: 600px) and (min-width: 360px) {
  footer {
    padding: 0px;
    padding-top: 10px;
  }
  footer p {
    font-size: 0.8rem;
  }
  footer h3 {
    font-size: 0.8rem;
  }
  footer .foot-top-container {
    padding: 0px 20px;
  }
  footer .foot-top-container .foot-parents-logo img {
    height: 60px;
  }
  footer .foot-top-container .foot-parents-logo p:last-child {
    display: none;
  }
  footer .foot-top-container .foot-parents:last-child {
    display: none;
  }
  footer .copyright {
    margin-top: 10px;
    padding: 5px 0px;
  }
  footer .copyright p {
    font-size: 0.8rem;
  }
}
@media (max-width: 1000px) and (min-width: 720px) {
  .wel-sec-container {
    height: 400px;
  }
  .wel-sec-container img {
    width: 360px;
  }
  .tip-sec {
    padding: 40px;
  }
  .tip-sec h2 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
  .tip-sec .tip-card-container {
    padding: 40px 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 40px;
  }
  .tip-sec .tip-card-container .tip-card {
    width: 46%;
  }
  .tip-sec .tip-card-container .tip-card fieldset {
    padding: 20px;
  }
  .tip-sec .tip-card-container .tip-card fieldset legend img {
    width: 50px;
  }
  .story-sec {
    padding: 40px;
    gap: 30px;
  }
  .story-sec .story-L {
    display: block;
  }
  .story-sec .story-L .story-L1 {
    display: none;
  }
  .story-sec .story-L .story-L2 {
    display: none;
  }
  .story-sec .story-L .story-L4 {
    display: none;
  }
}
@media (max-width: 600px) and (min-width: 360px) {
  .wel-sec-container {
    height: 200px;
    padding-top: 40px;
    gap: 0px;
  }
  .wel-sec-container img {
    width: 180px;
  }
  .wel-sec-container .wel-L h2 {
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 500;
  }
  .wel-sec-container .wel-L p {
    font-size: 0.8rem;
    margin-bottom: 20px;
  }
  .wel-sec-container .wel-L p:nth-child(3) {
    display: none;
  }
  .wel-sec-container .wel-L button {
    padding: 6px 10px;
    font-size: 0.8rem;
    border-radius: 4px;
  }
  .tip-sec {
    padding: 40px 20px;
  }
  .tip-sec h2 {
    text-align: center;
    font-size: 1.4rem;
    color: #4E944F;
    margin-bottom: 20px;
  }
  .tip-sec .tip-card-container {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .tip-sec .tip-card-container .tip-card {
    width: 90%;
  }
  .tip-sec .tip-card-container .tip-card fieldset {
    padding: 15px;
  }
  .tip-sec .tip-card-container .tip-card fieldset h3 {
    font-size: 1rem;
  }
  .tip-sec .tip-card-container .tip-card fieldset p {
    font-size: 0.8rem;
  }
  .tip-sec .tip-card-container .tip-card fieldset legend img {
    width: 50px;
  }
  .story-sec {
    padding: 40px 20px;
    display: block;
  }
  .story-sec .story-L {
    display: none;
  }
  .story-sec .story-R h2 {
    text-align: center;
    font-size: 1.4rem;
    color: #4E944F;
    margin-bottom: 20px;
  }
  .story-sec .story-R p {
    font-size: 0.8rem;
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */