* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Scroll Animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-animate-left.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-animate-right.animate-in {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.scroll-animate-scale.animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-in.animate-in {
  opacity: 1;
}

/* Stagger animation for list items */
.stagger {
  transition-delay: 0s;
}

/* Parallax effects */
.parallax-element {
  transition: transform 0.1s ease-out;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.5;
  font-size: 0.9em;
}
.btn {
  background-color: #ff6b35;
  color: white;
  padding: 0.5em 2em;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #ff6b35;
}
.btn-reset {
  background-color: white;
  color: #ff6b35;
  padding: 0.5em 2em;
  display: inline-block;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #ff6b35;
}

.btn:hover {
  background-color: #fdddd1;
  color: #ff6b35;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}
.btn-reset:hover {
  background-color: #ff6b35;
  color: white;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}
.title {
  color: #666;
}
figcaption {
  font-style: italic;
  font-size: 0.8em;
}
/* ------- Header  ------- */
header {
  background-color: #ffeee8;
  height: 5em;
  font-size: 0.9em;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}
header img {
  width: 150px;
  float: left;
}
/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle .bar {
  display: block;
  width: 28px;
  height: 3px;
  background: #ff6b35;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
nav ul {
  padding-top: 1.5em;
  display: flex;
  justify-content: right;
  gap: 3em;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  text-decoration: none;
  color: #ff6b35;
  font-size: 16px;
  text-shadow: 0 3px 14px #ffa482;
}
nav ul li a:hover {
  color: #7d381f;
}
/* ------- Content ------- */
.content {
  width: 80%;
  margin: 0 auto;
}
.content .left,
.content .right {
  flex: 1;
}

/* ------- Hero ------- */
.hero {
  background-color: rgb(255, 255, 255);
  margin-bottom: 4em;
}
.info {
  display: flex;
}
.hero .info .left {
  padding-top: 150px;
}
.hero .info .right {
  padding-top: 80px;
}

.hero .info .left p {
  border-left: 2px solid gray;
  padding-left: 1em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.hero .right img {
  width: 200px;
  box-shadow: 0 0 20px gray;
}
.hero .right .hero1 {
  border-radius: 30px 0 0 0;
}
.hero .right .hero2 {
  border-radius: 0 0 30px 0;
}

/* ------- Our Story ------- */
.our-story {
  background-color: #f3f3f3;
  padding-bottom: 3em;
}
.our-story .info .left,
.our-story .info .right {
  padding-top: 50px;
}

.our-story .info .left img {
  width: 250px;
}

.our-story .info .right .item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.5em;
  text-align: left;
}
.our-story .info .right .item div {
  padding: 0.8em 0;
}
.our-story .info .right .icon {
  background-color: #fcc8b6;
  padding: 0.6em;
  border-radius: 50%;
  margin-right: 1em;
}

.our-story .info .right .overlay {
  background-color: #fdede7;
  padding: 1.5em;
  border-left: 5px solid #ff6b35;
  margin-bottom: 1em;
  margin-top: 2em;
}
/* ------- set title ------- */
main h1.title-bottom {
  text-align: center;
  padding: 0.5em;
}
main h2.title-top {
  padding-top: 1em;
  text-align: center;
  font-weight: 500;
}

/* ------- idea ------- */
.ideas {
  background-color: rgb(255, 255, 255);
  padding-bottom: 3em;
}
.idea-list {
  display: flex;
  flex-flow: row wrap;
  gap: 50px;
}
.idea {
  flex: 1;
  border: 1px solid rgb(198, 198, 198);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgb(250, 228, 228);
  padding-bottom: 2em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.idea:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}
.idea img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.idea:hover img {
  transform: scale(1.05);
}
.idea h3 {
  padding-left: 1em;
  padding-top: 1em;
}
.idea p {
  padding: 0 1em;
}
.idea a {
  margin: 1em;
  margin-bottom: 1em;
}

/* ------- our main focus ------- */
.main-focus {
  padding-top: 2em;
  padding-bottom: 3em;
  background-color: #f4f8f9;
  text-align: center;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.focus-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgb(141, 141, 141);
  transition: transform 0.3s ease;
}

.focus-item img {
  width: 80px;
  margin-bottom: 20px;
}

.focus-item h3 {
  font-size: 1.1em;
}

.focus-item:hover {
  transform: translateY(-5px);
}

.focus-item .icon {
  font-size: 40px;
  color: #ff6b35;
  margin-bottom: 15px;
}
/* ------- galley ------- */
.galley {
  background-color: #f3f3f3;
  padding-bottom: 3em;
}
.galley-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 1em;
}

.galley-list .gall {
  flex: 1;
  padding: 1em;
  overflow: hidden;
  min-width: 250px;
  max-width: 300px;
}
.galley-list .gall img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 4px 10px black;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.galley-list .gall img:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
/* ------- newsletter ------- */
.newsletter {
  background-color: rgb(255, 255, 255);
  min-height: 380px;
  text-align: center;
  padding: 2em 0;
}

.newsletter p {
  padding-top: 2em;
  padding-bottom: 2em;
}

.newsletter-form {
  display: flex;
  gap: 1em;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter input[type='email'] {
  height: 50px;
  min-width: 300px;
  padding: 0 1.5em;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1em;
  font-family: inherit;
  background-color: #fafafa;
  transition: all 0.3s ease;
  outline: none;
}

.newsletter input[type='email']:focus {
  border-color: #ff6b35;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.newsletter input[type='email']:hover {
  border-color: #ffb199;
}

.newsletter input[type='email']::placeholder {
  color: #999;
  font-style: italic;
}

.newsletter .btn {
  height: 50px;
  padding: 0 2.5em;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/* ------- footer ------- */
footer {
  background-color: #ffeee8;
}
footer .footer-contact {
  width: 80%;
  margin: 0 auto;
  display: flex;
  padding-top: 3em;
  padding-left: 3em;
}
footer .footer-contact img {
  width: 20px;
}
footer .footer-contact .left {
  flex: 2;
}
footer .footer-contact .right {
  flex: 1;
}
footer .footer-contact .right .icon {
  padding: 2em 0em;
}
footer a {
  color: #8b8b8b;
}
footer a:hover {
  color: #454545;
}
footer .Copyright {
  padding: 0.3em;
  font-size: 0.8em;
  text-align: right;
  font-style: italic;
  color: #ffffff;
  background-color: #ff6b35;
}
/*==================================== about us =================================*/
.about_us {
  background-color: #f3f3f3;
}
.about_us h1 {
  text-align: center;
  padding: 1em 0;
}
/* ------- our story ------- */
.about_us .story {
  background-color: #f9f9f9;
  padding-bottom: 3em;
}
.story .left {
  padding-top: 6em;
}
.story .right {
  padding-top: 3em;
}
.story .right h2 {
  padding-bottom: 1em;
}
.story .right blockquote {
  font-style: italic;
  font-size: 0.9em;
}
.story .bullet {
  color: #666;
  padding-left: 1.5em;
}
/* ------- mission ------- */
.mission {
  background-color: #ffffff;
  padding-bottom: 3em;
}
.mission .left {
  padding-top: 3em;
  padding-right: 3em;
}
.mission .left h2 {
  padding-bottom: 1em;
}
.mission .right img {
  width: 300px;
  padding-top: 3em;
}
/* ------- table-list ------- */
.table-list {
  background-color: #f9f9f9;
}
.mission dt {
  font-weight: bold;
}
/* ------- timeline ------- */

.timeline {
  padding: 4em 0;
  text-align: center;
}
.timeline-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 2em 0 0;
  margin: 0;
}
.timeline-list::before {
  content: '';
  position: absolute;
  top: 1.8em;
  left: 0;
  right: 0;
  height: 4px;
  background: #444;
}
.timeline-list li {
  position: relative;
  flex: 1 1 0;
}
.timeline-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ff6b35;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}
.timeline-list .year {
  display: block;
  margin-top: 2em;
  font-weight: 600;
}
.timeline-list .milestone {
  display: block;
  margin-top: 0.5em;
  color: #666;
  font-size: 0.9em;
}

/*==================================== Our Service =================================*/
/* ------- promotion -----*/

#promo {
  text-align: center;
  padding-top: 1em;
  padding-bottom: 2em;
  font-size: 20px;
  color: coral;
}
#promo #days,
#promo #hrs,
#promo #mins,
#promo #secs {
  font-size: 30px;
  font-weight: bold;
}
#promo img {
  width: 200px;
}

/* Improved promo text and countdown */
#promo .promo-headline {
  color: #ff6b35;
  font-size: 1.2em;
  margin: 0.6em 0 0.2em;
}
#promo .promo-sub {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 0.8em;
}
#promo .countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  gap: 10px;
  justify-items: center;
}
#promo .countdown .time {
  width: 100%;
  background: #fff;
  border: 1px solid #ffd3c1;
  border-radius: 12px;
  padding: 10px 8px;
}
#promo .countdown .time span {
  display: block;
  color: #ff6b35;
  font-weight: 700;
}
#promo .countdown .time small {
  display: block;
  color: #7d7d7d;
  font-size: 12px;
  margin-top: 2px;
}

/* ------- package -------*/
.our_service {
  background-color: #f3f3f3;
}

.our_service h1 {
  text-align: center;
  padding: 1em;
}

.our_service .package {
  padding: 3em 0;
  background-color: rgb(255, 255, 255);
}

.services-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.services-table th,
.services-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #ddd;
}

.services-table thead {
  background-color: #f0f0f0;
  color: #333;
}

.services-table tbody tr:hover {
  background-color: #f9f9f9;
}

/* Responsive table wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* -------- form --------- */
.our_service .interest {
  padding: 3em 0;
  background-color: #f9f9f9;
}

.interest fieldset {
  padding: 2em;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  margin-bottom: 2em;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.interest fieldset:hover {
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
}
.interest fieldset legend {
  font-weight: bold;
  font-size: 1.5em;
  color: #ff6b35;
  padding: 0 1em;
}
.interest .formRow {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 20px;
  flex-wrap: wrap;
}
.interest .formRow .left {
  flex: 2;
  font-weight: 500;
  color: #333;
}
.interest .formRow .right {
  flex: 3;
}
.interest .formRow .right > input,
.interest select {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 0.8em 1em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: inherit;
  background-color: #fafafa;
  transition: all 0.3s ease;
  outline: none;
}
.interest .formRow .right > input:focus,
.interest select:focus {
  border-color: #ff6b35;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}
.interest .formRow .right > input:hover,
.interest select:hover {
  border-color: #ffb199;
}

/* Modern checkbox and radio styling */
.interest input[type='checkbox'],
.interest input[type='radio'] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #ff6b35;
  margin-right: 8px;
}

/* File input modern styling */
.interest input[type='file'] {
  padding: 0.6em;
  cursor: pointer;
}
.interest input[type='file']::file-selector-button {
  background-color: #ff6b35;
  color: white;
  border: none;
  padding: 0.5em 1.5em;
  border-radius: 8px;
  cursor: pointer;
  margin-right: 1em;
  transition: all 0.3s ease;
}
.interest input[type='file']::file-selector-button:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
}

/* Range input modern styling */
.interest input[type='range'] {
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right, #ff6b35 0%, #ffb199 100%);
  outline: none;
  cursor: pointer;
}
.interest input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6b35;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}
.interest input[type='range']::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 3px 8px rgba(255, 107, 53, 0.4);
}

.interest .smt {
  padding-bottom: 3em;
  text-align: center;
  margin-top: 2em;
}

.interest .cost {
  font-size: 2.5em;
  color: #ff6b35;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.2);
  margin: 1em 0;
}

.interest p {
  font-style: italic;
  font-size: 0.9em;
  color: #666;
}
/*==================================== contact =================================*/

.contact {
  background-color: #f3f3f3;
}
.contact h1 {
  text-align: center;
  padding: 1em 0;
  color: #333;
}

.contact .form-style {
  background-color: rgb(255, 255, 255);
  padding: 3em 1em;
}
form#contact {
  width: 70%;
  margin: 0 auto;
  background: white;
  padding: 2.5em;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}
form#contact:hover {
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.1);
  border-color: #ff6b35;
}

.contact .input-form {
  margin-top: 2em;
}
.contact .input-form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5em;
  font-size: 0.95em;
}
.contact .input-form .contactName {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  margin-bottom: 1em;
}

.contact .input-form .contactName > * {
  flex: 2 1 150px;
}
.contact .input-form .contactName .formRow {
  display: flex;
  flex-direction: column;
}

.flex-container {
  display: flex;
  width: 600px;
}
.contact .input-form input {
  height: 3em;
}
.contact .input-form input,
.contact .input-form textarea {
  width: 100%;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 1em;
  margin-bottom: 1.5em;
  font-size: 1em;
  font-family: inherit;
  background-color: #fafafa;
  transition: all 0.3s ease;
  outline: none;
}
.contact .input-form input:focus,
.contact .input-form textarea:focus {
  border-color: #ff6b35;
  background-color: white;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}
.contact .input-form input:hover,
.contact .input-form textarea:hover {
  border-color: #ffb199;
}
.contact .input-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.contact .input-form input::placeholder,
.contact .input-form textarea::placeholder {
  color: #999;
  font-style: italic;
}

.contact .smt {
  padding: 2em 0 3em 0;
  text-align: center;
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}
/*  ---- map ---- */
.map {
  background-image: linear-gradient(
    to right,
    rgb(231, 231, 231),
    white,
    rgb(255, 213, 188)
  );
}
.map .left {
  padding: 4em;
}
.map .right {
  padding: 2em;
}
.map img {
  padding-top: 2em;
  width: 20px;
}
/* =========== Responsive ================*/

/* Mobile */
@media only screen and (max-width: 600px) {
  /* nav */
  header img {
    float: none;
  }
  /* prevent horizontal scrolling on small screens */
  html,
  body {
    overflow-x: hidden;
  }
  header .content {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0 0.5em;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    right: 1em;
    top: 1em;
    z-index: 1100;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffeee8;
    padding: 1em 1.5em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
  }
  nav.open ul {
    display: block;
  }
  nav ul li {
    padding-bottom: 1em;
  }
  header {
    height: auto;
  }
  /* home */
  .info {
    display: block;
  }
  /* general content width on small screens */
  .content {
    width: 92%;
  }
  .our-story .info .left,
  .our-story .info .right {
    padding-top: 50px;
    text-align: center;
  }
  .hero .right {
    display: none;
  }
  .our-story .info .right .item {
    grid-template-columns: 1fr;
  }
  .idea {
    flex: none;
    width: 90%;
  }
  .idea img {
    height: 200px;
    object-fit: cover;
  }
  .idea-list {
    justify-content: center;
  }
  /* our service: promo image responsive */
  #promo img {
    width: 100%;
    height: auto;
  }
  #promo .countdown {
    grid-template-columns: repeat(2, 1fr);
  }
  #promo #days,
  #promo #hrs,
  #promo #mins,
  #promo #secs {
    font-size: 24px;
  }
  /* our service: table responsiveness */
  .table-responsive {
    margin: 0 auto 1em auto;
    overflow-x: visible;
  }
  .services-table {
    width: 100%;
    min-width: 0;
    table-layout: auto;
  }
  /* Convert table into stacked cards */
  .services-table thead {
    display: none;
  }
  .services-table,
  .services-table tbody,
  .services-table tr,
  .services-table td {
    display: block;
    width: 100%;
  }
  .services-table tr {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    margin-bottom: 12px;
    overflow: hidden;
  }
  .services-table td {
    border: none;
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 8px;
  }
  .services-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #333;
  }
  /* our service: form stacking */
  .interest .formRow {
    align-items: stretch;
    gap: 12px;
  }
  .interest .formRow .left,
  .interest .formRow .right {
    flex: 1 1 100%;
  }
  .interest fieldset {
    padding: 1.2em;
  }
  .galley-list {
    display: block;
  }
  .galley-list .gall {
    width: 70%;
    margin: 0 auto;
    max-width: 100%;
  }
  .galley-list .gall img {
    height: 250px;
    object-fit: cover;
  }
  /* about us */
  .timeline-list {
    flex-direction: column;
    padding-left: 1em;
  }
  .timeline-list::before {
    top: 0;
    left: 34px;
    width: 4px;
    height: 100%;
  }
  .timeline-list li {
    padding-left: 2.5em;
    margin-bottom: 2em;
  }
  .timeline-list li::before {
    left: 10px;
    transform: none;
  }
  /* footer */
  footer .footer-contact {
    display: block;
  }
  footer .footer-contact .left {
    padding-bottom: 2em;
  }
  /* About page media elements responsive */
  .about_us .story iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    display: block;
  }
  .about_us .mission .right img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  /* contact page improvements */
  .contact .form-style {
    padding: 1em 0;
  }
  form#contact {
    width: 92%;
    padding: 1.2em;
  }
  .contact .input-form input,
  .contact .input-form textarea {
    font-size: 16px; /* prevent iOS zoom */
  }
  .contact .smt {
    gap: 12px;
  }
  .contact .smt .btn,
  .contact .smt .btn-reset {
    width: 48%;
    height: 48px;
  }
  .map .left {
    padding: 1.2em;
  }
  .map .right {
    padding: 1.2em;
  }
  .map iframe {
    width: 100%;
    height: 260px;
  }
}

@media only screen and (min-width: 600px) {
  /* home */
  .hero .right {
    display: none;
  }
  .info {
    display: block;
  }
  .our-story .info .left,
  .our-story .info .right {
    padding-top: 50px;
    text-align: center;
  }
  .idea {
    flex: none;
    width: 60%;
  }
  .idea img {
    height: 200px;
    object-fit: cover;
  }
  .idea-list {
    justify-content: center;
  }
  .story .left {
    text-align: center;
  }
  .mission .right .image {
    text-align: center;
  }
}

@media only screen and (min-width: 1300px) {
  /* home */
  .info {
    flex-flow: row;
    display: flex;
  }

  .hero .right {
    display: block;
  }
  .idea {
    width: 30%;
  }
}
