/* /*
Theme Name: Custom Hello World
Author: Your Name
Description: Minimal theme showing Hello World
Version: 1.0
*/
:root {
  /* Accent Colors */
  --primary: #ffc300;
  /* Yellow */
  --secondary: #4dc7d2;
  /* Cyan */
  --tertiary: #39b4f7;
  /* Blue */

  /* Grayscale */
  --gray-5: #f2f2f2;
  --gray-10: #e5e5e5;
  --gray-15: #d9d9d9;
  --gray-20: #cccccc;
  --gray-25: #bfbfbf;
  --gray-30: #b2b2b2;
  --gray-40: #999999;
  --gray-45: #8c8c8c;
  --gray-50: #808080;
  --gray-60: #666666;
  --gray-70: #4d4d4d;
  --gray-75: #404040;
  --gray-80: #333333;
  --gray-85: #262626;
  --gray-90: #1a1a1a;
}

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

a {
  text-decoration: none;
  color: black;
}

.wrapper {
  height: 100vh;
  position: relative;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

#how-to-use-page .breadcrumbs-container {
  display: flex;
  align-items: center;
  position: absolute;
  top: 350px;
  left: 50px;
  column-gap: 2px;
}

.common-banner-container {
  position: relative;

  .breadcrumbs-container {
    display: flex;
    align-items: center;
    position: absolute;
    top: 320px;
    left: 50px;
    column-gap: 2px;

    a,
    p {
      color: #666666;
    }

    a:hover {
      text-decoration: underline;
    }
  }

  .company-info-header {
    width: 338px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: absolute;
    z-index: 10;

    top: 100px;
    left: 22px;
    /* background: rgba(255, 255, 255, 0.5); */

    h1 {
      font-weight: normal;
      font-size: 36px;

      span {
        font-size: 48px;
        text-shadow: var(--primary) 2px 5px;
      }
    }
  }

  .company-info-header1 {
    width: 500px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    position: absolute;
    z-index: 10;

    top: 100px;
    left: 22px;
    /* background: rgba(255, 255, 255, 0.5); */

    h1 {
      font-weight: normal;
      font-size: 36px;

      span {
        font-size: 48px;
        text-shadow: var(--primary) 2px 5px;
      }
    }
  }

  .banner {
    width: 100vw;
    max-width: 2000px;
    height: 500px;
    z-index: -1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 100px;
    overflow: hidden;
  }

  .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .header-img {
    width: 60vw;
    max-width: 760px;
    height: 280px;
    max-height: 280px;
    position: absolute;
    right: 0;
    margin-top: 60px;

    img {
      border-top-left-radius: 50px;
      border-bottom-left-radius: 50px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .header-img-flower {
    width: 160px;
    position: absolute;
    z-index: 10;
    right: -10px;
    top: 100%;
    transform: translateY(-75%);

    img {
      width: 100%;
      height: auto;
    }
  }
}

.swiper {
  margin-top: 3%;
  position: relative;
  padding: 40px 0;
  z-index: 1;
  /* Lower than banner image */
}

/* Each slide */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Image inside slider */
.swiper-slide img {
  width: 100%;
  max-width: 800px;
  border-radius: 85px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

#how-to-use-page .banner {
  max-width: 100%;
  height: 600px;
}

#company-info-page {
  margin-top: 160px;
  margin-bottom: 160px;

  .banner {
    width: 100vw;
    max-width: 2000px;
    height: 500px;
    z-index: -1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 100px;
    overflow: hidden;
  }

  .banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

#company-info-section {
  max-width: 1300px;
  position: relative;
  margin: 0 auto;
  overflow: hidden;

  .header-img-flower {
    width: 160px;
    position: absolute;
    z-index: 10;
    right: -20px;
    margin-top: 220px;

    img {
      width: 100%;
      height: auto;
    }
  }

  .header-img {
    width: 60vw;
    max-width: 760px;
    height: 280px;
    max-height: 280px;
    position: absolute;
    right: 0;
    margin-top: 60px;

    img {
      border-top-left-radius: 50px;
      border-bottom-left-radius: 50px;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .company-info-header {
    font-size: 32px;
    width: 338px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    /* background: rgba(255, 255, 255, 0.5); */
    margin-top: 80px;

    h1 {
      margin: 0;
      font-weight: normal;
      span {
        text-shadow: var(--primary) 2px 5px;
      }
    }
  }

  .container {
    margin-top: 00px;
  }

  ul {
    list-style: none;
    padding: 0;

    li .circle {
      display: inline-block;
      width: 14px;
      height: 14px;
      background: var(--gray-20);
      border-radius: 100%;
    }
  }

  #company-info-container {
    background: #f2ece7;
    max-width: 1000px;
    border-radius: 25px;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 280px;
  }

  #company-info-wrapper {
    background: #fff;
    padding: 40px 44px 50px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    border-radius: 25px;

    .company-row-info {
      display: flex;
      align-items: center;
      column-gap: 120px;

      border-bottom: 1px solid var(--gray-45);
      padding-bottom: 20px;
      font-size: 17px;

      .company-label {
        min-width: 120px;
        font-weight: bold;
      }
    }
  }
}

/* Shop Page Desktop Styles */
#shop-page {
  margin-top: 420px;
  margin-bottom: 128px;

  .sp-title {
    display: none;
  }

  .pc-title {
    display: block;
  }

  h2 {
    position: relative;
    display: inline-block;
    font-size: 28px;
    color: #04a5ad;
    font-weight: bold;
    margin-bottom: 48px;
  }

  h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 6px;
    height: 6px;
    background: #04a5ad;
    border-radius: 50%;
  }

  h2::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: -19px;
    width: 50px;
    height: 4px;
    background: #04a5ad;
    border-radius: 2px;
  }

  p {
    margin: 0;
  }

  .shop-container {
    display: flex;
    max-width: 1164px;
    justify-content: space-between;
    padding: 0 32px;
    margin: 0 auto;
    column-gap: 90px;
    align-items: center;
  }

  .dotted-seperator {
    border-bottom: 3px dotted var(--gray-10);
    max-width: 1100px;
    margin: 64px auto;
  }

  .shop-info-container {
    font-size: 17px;
    line-height: 25px;
    max-width: 550px;
  }

  .shop-info {
    display: flex;
    align-items: center;
    column-gap: 24px;
    margin-top: 24px;
    margin-left: 16px;
  }

  .shop-label {
    font-weight: bold;
    min-width: 100px;
  }

  .shop-note {
    margin: 48px 0 48px 16px;
  }

  .calendar-btn {
    text-decoration: none;
    color: black;
    max-width: 420px;
    height: 80px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 6px;
    font-size: 18px;
    text-shadow: white 1px 1px;
    line-height: 24px;
    margin-left: 16px;

    .inner {
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: 20px;
      width: 100%;
      height: 100%;
      border: 2px dashed white;
      border-radius: 50px;
    }
  }

  .map-container {
    width: 460px;
    height: 350px;
    background: #e6e6e6;
    padding: 6px;
    border-radius: 16px;
    overflow: hidden;
    min-width: 320px;

    iframe {
      border: none;
      min-width: 100%;
      height: 100%;
      border-radius: 16px;
    }
  }
}

/* FAQ Page Desktop Styles */
#faq-page {
  margin-top: 440px;

  .faq-container {
    max-width: 1064px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }

  .faq-item {
    border: 5px solid #f2ece7;
    border-radius: 30px;
    padding: 26px 26px 0 26px;
    line-height: 30px;
    font-size: 17px;
  }

  .faq-item a {
    color: #0098db;
  }

  .tel-number {
    margin-top: 14px;

    span {
      font-size: 20px;
    }

    a {
      font-size: 30px;
    }
  }

  .toggle-btn {
    min-width: 22px;
    min-height: 22px;
    background: #04a5ad;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: 20px;
    -webkit-tap-highlight-color: transparent;
  }

  .plus-btn {
    width: 16px;
  }

  .minus-btn {
    width: 12px;
    height: 2px;
    background: white;
    display: inline-block;
    display: none;
  }

  .faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 26px;
    border: none;
  }

  .opening-time {
    font-size: 14px;
    color: #666;
  }

  .faq-question {
    font-weight: 400;
    display: flex;
    align-items: center;
  }

  .faq-question-number {
    font-size: 29px;
    margin-right: 22px;
    color: #04a5ad;
    padding-bottom: 2px;
  }

  .faq-answer {
    display: none;
  }

  .faq-item.active {
    .faq-header {
      border-bottom: 3px dotted #f2ece7;
    }

    .toggle-btn {
      background: #404040;
    }

    .faq-answer {
      display: block;
      padding: 26px 0 34px 26px;
    }

    .plus-btn {
      display: none;
    }

    .minus-btn {
      display: block;
    }
  }

  .other-question {
    margin-top: 56px;
    text-align: center;
    font-size: 17px;
  }

  .contact-container {
    display: flex;
    justify-content: center;
  }

  .btn-contact-link {
    position: relative;
    border: none;
    text-decoration: none;
    color: white;
    background: #04a5ad;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 100%;
    max-width: 360px;
    height: 66px;
    margin-top: 26px;
    margin-bottom: 120px;
    text-shadow: var(--gray-60) 1px 1px;
  }

  .contact-link-icon {
    position: absolute;
    width: 23px;
    height: 23px;
    background: white;
    border-radius: 50%;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;

    svg {
      color: black;
      width: 16px;
    }
  }
}

/* Contact Form Page */
#contact-page {
  margin-top: 430px;

  .form-title {
    text-align: center;
    margin-bottom: 36px;
  }

  form span {
    color: #e64141;
  }

  .contact-form-container {
    max-width: 1064px;
    margin: 0 auto;
    padding: 0 32px;
  }

  form {
    margin-bottom: 120px;
    border: 4px solid #f2ece7;
    border-radius: 25px;
    padding: 54px 96px 74px 96px;

    input {
      height: 30px;
      margin-top: 14px;
      margin-bottom: 36px;
    }

    textarea {
      margin-top: 14px;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid #ccc;
      font-family: "M PLUS Rounded 1c", sans-serif;
    }

    input[type="radio"] {
      margin: 0;
      margin-right: 10px;
    }
  }

  .terms {
    .title {
      text-align: center;
      margin-top: 48px;
      margin-bottom: 16px;
    }

    .content {
      margin: 0 30px;
      border: 1px solid var(--gray-20);
      background: #f4f4f4;
      padding: 0 36px 24px 36px;

      .center {
        text-align: center;
        margin-top: 38px;
        margin-bottom: 44px;
        font-weight: bold;
      }
    }
  }

  .terms-check {
    margin-top: 16px;
    margin-bottom: 64px;
  }

  .terms-check p {
    display: flex;
    align-items: center;
    justify-content: center;

    input {
      width: unset;
    }
  }

  button {
    border: none;
    margin-top: 0;
    position: relative;
    border: none;
    text-decoration: none;
    color: white;
    background: #04a5ad;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50px;
    width: 100%;
    max-width: 360px;
    height: 66px;
    margin-bottom: 0;
    text-shadow: var(--gray-60) 1px 1px;
  }

  .btn-container {
    position: relative;
  }

  .btn-container p {
    display: flex;
    justify-content: center;
  }

    .btn-container p button {
      font-size: 20px;
    }

  .contact-link-icon p {
    position: absolute;
    width: 23px;
    height: 23px;
    background: white;
    border-radius: 50%;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: calc(50%);
    transform: translateY(-50%);
    cursor: pointer;
    left: calc(50% + 180px - 39px);

    svg {
      color: black;
      width: 16px;
    }
  }
}

.post-meta {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-bottom: 18px;
}

.post-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.category-item {
  background: #e6e6e6;
  padding: 0px 12px;
  height: 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: black;
  font-size: 13px;
}

#blog-page {
  margin-bottom: 124px;
  margin-top: 420px;

  .blog-container {
    max-width: 1064px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    column-gap: 120px;
    justify-content: space-between;
  }

  .blog-posts {
    flex-grow: 1;
  }

  .blog-post {
    display: flex;
    column-gap: 18px;
    border-bottom: 1px solid #f2ece7;
    padding-bottom: 32px;
    padding-top: 32px;
  }

  .post-thumbnail {
    min-width: 90px;
    width: 90px;
    height: 90px;
    border-radius: 10px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }
  }

  .post-meta {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 18px;
  }

  .post-date {
    font-size: 15px;
  }

  .post-title {
    font-size: 17px;
    line-height: 30px;
    font-weight: normal;

    a {
      text-decoration: none;
      color: black;
    }
  }

  .empty-thumbnail {
    width: 90px;
    height: 90px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-20);
    border-radius: 10px;
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    border-radius: 20px;
    max-width: 1064px;
    margin: 124px auto;
    padding: 40px 32px;
  }

  ul.page-numbers {
    display: flex;
    list-style: none;
    align-items: center;
    column-gap: 10px;
  }

  a.page-numbers:not(.prev):not(.next),
  span.page-numbers.current {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    height: 40px;
    width: 40px;
    border-radius: 15px;
    text-decoration: none;
    background: var(--gray-20);
  }

  span.page-numbers.current {
    background: #333333;
    color: white;
  }

  .prev {
    margin-right: 10px;
  }
  .next {
    margin-left: 10px;
  }

  .categories-list {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    border-top: 1px solid var(--gray-20);
    max-width: 200px;
    padding-top: 24px;
    row-gap: 6px;
  }

  .category-link .circle {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #04a5ad;
    border-radius: 50%;
    margin-bottom: 1px;
    margin-right: 4px;
  }

  .category-link.current-category {
    color: #04a5ad;
    font-weight: medium;
  }
}

#single-page {
  h1 {
    font-size: 32px;
    line-height: 48px;
    font-weight: 500;
  }

  .single-post-container {
    max-width: 1064px;
    margin: 0 auto;
    margin-top: 420px;
    padding: 0 32px;
  }

  .line {
    height: 3px;
    background: var(--gray-20);
    width: 100%;
    margin-top: 32px;
    position: relative;
  }

  .line-highlight {
    height: 3px;
    background: var(--primary);
    width: 10%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .post-content {
    margin-top: 48px;

    p {
      font-size: 17px;
      line-height: 30px;
      margin-bottom: 30px;
    }
  }
}

#insurance-page {
  margin-top: 420px;
  margin-bottom: 120px;

  .insurance-container {
    max-width: 1164px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .insurance-diagram {
    display: flex;
    column-gap: 26px;
    margin-top: 56px;
  }

  .info-item {
    display: flex;
    align-items: center;
    column-gap: 12px;

    .info-item-circle {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      row-gap: 5px;
    }

    .title {
      font-size: 22px;
    }

    .price {
      font-size: 22px;
      margin-right: 4px;
    }

    &.item-1 {
      .info-item-circle {
        background: #04a5ad;
      }

      .info-item-text,
      .price {
        color: #04a5ad;
      }
    }

    &.item-2 {
      .info-item-circle {
        background: var(--primary);
      }

      .info-item-text,
      .price {
        color: var(--primary);
      }
    }

    &.item-3 {
      .info-item-circle {
        background: #0598d8;
      }

      .info-item-text,
      .price {
        color: #0598d8;
      }
    }

    .sub-text {
      color: black;
    }
  }

  .insurance-header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .subtitle {
    font-size: 22px;
  }

  .insurance-header-title {
    display: flex;
    align-items: center;
    column-gap: 36px;
    margin-bottom: 36px;
    margin-top: 20px;

    h2 {
      font-size: 30px;
      font-weight: normal;
    }
  }
  .text {
    font-size: 17px;
  }

  .insurance-diagram-info {
    display: flex;
    flex-direction: column;
    row-gap: 45px;
    margin-top: 84px;
  }

  .insurance-columns {
    flex-grow: 1;
    border-left: 3px dotted var(--gray-20);
    display: flex;

    .insurance-column {
      width: 33.33%;
      border-right: 3px dotted var(--gray-20);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .insurance-column-title {
      text-align: center;
      font-size: 20px;
      line-height: 28px;
      padding: 0 10px;
      min-height: 84px;
    }

    .insurance-block-container {
      display: flex;
      flex-direction: column;
      row-gap: 60px;
      width: 100%;
    }

    .insurance-block {
      width: 100%;
      height: 44px;
      position: relative;
    }

    .plus-icon {
      position: absolute;
      right: 0;
      transform: translate(50%, 50%);
      z-index: 10;
    }

    .car-container {
      position: absolute;
      right: 50%;
      transform: translate(50%, 30%);
      z-index: 10;
    }

    .image-container {
      position: relative;
    }

    .car-sparkle-left,
    .car-sparkle-right {
      position: absolute;
    }

    .car-sparkle-right {
      top: -5px;
      right: -20px;
    }

    .car-sparkle-left {
      left: -25px;
      top: -3px;
    }

    .col-1 {
      color: #04a5ad;

      .insurance-block {
        background: #04a5ad;
      }
    }

    .col-2 {
      color: var(--primary);

      .insurance-block {
        background: var(--primary);
      }
    }

    .col-3 {
      color: #0598d8;

      .insurance-block {
        background: #0598d8;
      }
    }

    .insurance-block.empty {
      background: transparent;
    }
  }

  .insurance-info-section {
    margin-top: 100px;
    .insurance-info-section-header {
      h3 {
        font-size: 32px;

        span {
          display: inline-flex;
          width: 80px;
          height: 28px;
          color: white;
          margin-right: 8px;
          border-radius: 5px;
          justify-content: center;
          align-items: center;
          font-size: 17px;
        }
      }

      .heading-underline {
        width: 100%;
        height: 3px;
        position: relative;
        margin-top: 12px;
        margin-bottom: 16px;
        .inner {
          position: absolute;
          height: 3px;
          width: 80px;
        }
      }
      p {
        font-size: 17px;
        line-height: 30px;
      }
    }

    .insurance-info-card-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      column-gap: 24px;
      row-gap: 24px;
      margin-top: 40px;
      padding: 0 50px;

      .info-card {
        padding: 20px 10px 10px 10px;
        background: #04a5ad;
        border-radius: 10px;

        h4 {
          text-align: center;
          color: white;
          font-size: 27px;
          font-weight: normal;
          margin-bottom: 12px;
        }

        .info-card-description {
          display: flex;
          justify-content: space-between;
          padding: 30px 20px 16px 20px;
          background: white;
          height: 120px;
          border-radius: 10px;
          font-size: 17px;
          line-height: 32px;

          .text-container {
            display: flex;
            flex-direction: column;
          }

          .circle {
            display: inline-block;
            position: relative;
            top: 2px;
            margin-right: 8px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #04a5ad;
          }

          .highlight {
            color: #e64141;
            font-size: 23px;
            font-weight: bold;
          }

          img {
            margin-top: 20px;
          }
        }
      }
    }

    h3 {
      font-weight: normal;
    }

    .section-image-container {
      width: 100%;
      max-width: 750px;
      margin: 0 auto;
      height: auto;
      margin-top: 16px;
      img {
        width: 100%;
      }
    }

    .section-container {
      .price {
        font-size: 22px;
        /* margin-right: 12px; */
      }

      p {
        margin-top: 24px;
        font-size: 17px;
        line-height: 30px;
      }
    }

    &.section-1 {
      h3 {
        font-weight: bold;
        color: #04a5ad;
      }
      .heading-underline {
        background: var(--gray-25);
        .inner {
          background: #04a5ad;
        }
      }
    }

    &.section-2 {
      h3,
      .price {
        font-weight: bold;
        color: var(--primary);
      }

      h3 span {
        background: var(--primary);
      }

      .heading-underline {
        background: var(--gray-25);
        .inner {
          background: var(--primary);
        }
      }
    }

    &.section-3 {
      h3,
      .price {
        font-weight: bold;
        color: #0598d8;
      }

      h3 span {
        background: #0598d8;
      }

      .heading-underline {
        background: var(--gray-25);
        .inner {
          background: #0598d8;
        }
      }
    }
  }
}

@media screen and (max-width: 425px) {
  .common-banner-container {
    margin-top: 40px;
    .banner {
      margin-top: 0;
    }
    .header-img {
      height: 110px;

      margin-top: 0;

      img {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
      }
    }

    .company-info-header {
      top: 180px !important;

      h1 {
        font-size: 24px;

        span {
          font-size: 32px;
        }
      }
    }

    .company-info-header1 {
      top: 90px !important;
      h1 {
        font-size: 24px !important;

        span {
          font-size: 32px !important;
        }
      }
    }

    .header-img-flower {
      width: 80px;
    }
  }

  #company-info-page {
    #company-info-section {
      .header-img {
        height: 110px;

        img {
          border-top-left-radius: 20px;
          border-bottom-left-radius: 20px;
        }
      }
    }

    .company-info-header {
      margin-top: 200px;
    }

    .header-img-flower {
      width: 80px;
      margin-top: 100px;
    }
  }

  #contact-page {
    .contact-link-icon p {
      left: 100%;
      transform: translate(calc(-100% - 16px), -50%);
    }
  }

  #shop-page,
  #faq-page,
  #contact-page,
  #blog-page,
  #insurance-page,
  #company-info-page,
  .single-post-container {
    margin-top: 320px !important;
  }

  #insurance-page {
    .insurance-header-title {
      margin-top: 0px;
      column-gap: 10px !important;

      h2 {
        font-size: 22px;
        margin-top: 4px;
      }

      img {
        transform: scale(0.7);
      }
    }

    .text {
      font-size: 13px;
      align-self: flex-start;
      margin: 2px;
    }

    .insurance-columns,
    .insurance-column {
      border-width: 1px !important;
    }

    .insurance-diagram {
      column-gap: 6px;

      .insurance-diagram-info {
        row-gap: 10px;
        margin-top: 48px;
      }
    }

    .plus-icon {
      width: 12px !important;
      height: 12px !important;
      bottom: 0;
    }

    .subtitle {
      font-size: 15px;
    }

    .car-sparkle-left,
    .car-sparkle-right {
      display: none;
    }

    .insurance-columns {
      .insurance-column-title {
        line-height: 12px;
      }

      .insurance-block-container {
        row-gap: 20px;
      }
      .insurance-block {
        height: 20px;
      }
      .insurance-column-title {
        font-size: 6px;
        min-height: 48px;
        padding: 0 6px;
      }
    }

    .car-container {
      width: 32px;
      /* transform: translate() !important; */
      transform: translate(50%, 10px) !important;
      bottom: 0;
      img {
        width: 100%;
        height: auto;
      }
    }

    .info-item {
      column-gap: 6px;
      .title {
        font-size: 8px;
      }

      .info-item-circle {
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
        font-size: 6px;
      }

      .title {
        font-size: 6px;
      }

      .price {
        font-size: 8px;
      }
      .sub-text {
        font-size: 3px;
      }
    }
  }
}

@media (max-width: 768px) {
  #how-to-use-page .company-info-header {
    top: 270px !important;
  }
  .common-banner-container {
    .breadcrumbs-container {
      display: none;
    }

    .banner {
      min-width: 1300px !important;
      max-width: 1300px !important;
      height: 250px;
    }

    .header-img-flower {
      width: 100px;
    }

    .company-info-header {
      background: unset;
      top: 360px;
      left: 50%;
      transform: translateX(-50%);
    }

    .company-info-header1 {
      background: unset !important;
      margin-top: 30% !important;
      /* margin-left: 45% !important; */
      transform: translateX(-50%) !important;
    }
  }

  #company-info-page {
    margin-top: 480px;
    .company-info-header {
      width: 100%;
      h1 {
        text-align: center;
        font-size: 32px;
      }

      margin-top: 280px;
    }

    .banner {
      max-width: 1300px;
      height: 250px;
    }

    .header-img-flower {
      width: 100px;
      margin-top: 180px;
    }

    .company-info-header {
      background: none;
    }

    #company-info-wrapper {
      padding: 20px;
    }

    #company-info-section {
      padding: 0 16px;
      .header-img {
        height: 180px;

        img {
          border-top-left-radius: 20px;
          border-bottom-left-radius: 20px;
        }
      }
      #company-info-container {
        margin-top: 0;
      }

      .company-row-info {
        flex-direction: column;
        align-items: flex-start;
        row-gap: 8px;
      }

      .company-value {
        margin-left: 8px;
      }
    }
  }

  /* Shop page */
  #shop-page {
    .sp-title {
      display: block;
      margin-left: 16px;
    }

    .pc-title {
      display: none;
    }

    .shop-container {
      flex-direction: column-reverse;
      align-items: flex-start;
      padding: 0 16px;
      margin-top: 60px;
    }

    .map-container {
      width: 100%;
    }

    .shop-info {
      flex-direction: column;
      align-items: flex-start;
      margin-left: 0;
    }

    .shop-note {
      margin-left: 0;
    }

    .calendar-btn {
      margin-left: 0;
      height: 66px;
      font-size: 16px;
      padding: 4px;

      .inner {
        column-gap: 10px;
      }

      svg {
        height: 20px;
        width: 20px;
      }
    }
  }

  /* FAQ Page */
  #faq-page {
    margin-top: 480px;

    .faq-container {
      padding: 0 16px;
    }

    .faq-question-number {
      margin-right: 14px;
      font-size: 24px;
    }

    .other-question {
      padding: 0 16px;
      font-size: 16px;
    }

    .faq-header {
      padding-bottom: 18px;
    }

    .faq-item {
      padding: 20px 18px 0 18px;
      font-size: 16px;
    }

    .faq-question {
      font-size: 16px;
    }

    .faq-item.active {
      .faq-answer {
        padding-left: 0;
        padding-top: 18px;
        padding-bottom: 30px;
      }
    }

    .contact-container {
      padding: 0 16px;
    }

    .btn-contact-link {
      max-width: 100%;
    }
  }

  /* Contact Form Page */
  #contact-page {
    margin-top: 480px;

    .contact-form-container {
      padding: 0 16px;
    }

    form {
      padding: 22px 12px 32px 12px;
    }

    .terms {
      .center {
        max-width: 200px;
        margin: 0 auto;
        margin-top: 26px !important;
        margin-bottom: 40px !important;
      }
      .content {
        margin: 0;
        padding: 0 10px 0px 10px;
      }
    }

    .terms-check {
      margin-top: 30px;
      margin-bottom: 40px;
    }

    button {
      margin-top: 0;
    }
  }

  /* Blogs Page */
  #blog-page {
    margin-top: 480px;

    .blog-container {
      padding: 0 16px;
      flex-direction: column-reverse;
    }

    .blog-post {
      padding: 20px 0;
    }

    .categories-list {
      max-width: 100%;
      flex-direction: row;
      column-gap: 26px;
      flex-wrap: wrap;
      padding-top: 16px;
      margin-bottom: 28px;
    }

    .post-meta {
      margin-bottom: 10px;
    }

    .post-title {
      font-size: 15px;
    }

    .pagination {
      margin: 124px 16px;
    }
  }

  #single-page {
    .single-post-container {
      margin-top: 480px;
      padding: 0 16px;
    }
  }

  /* Insurance Page */
  #insurance-page {
    .insurance-container {
      padding: 0 16px;
    }

    .insurance-header-title {
      column-gap: 16px;
    }

    .insurance-info-section {
      .insurance-info-card-container {
        padding: 0;
        grid-template-columns: 1fr;
      }

      .info-card-description {
        flex-direction: column;
        height: auto !important;
        img {
          align-self: flex-end;
        }
      }
    }
  }
}

#how-to-use-page {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

#how-to-use-page .header-img-flower {
  width: 160px;
  position: absolute;
  z-index: 10;
  right: -20px;
}

#how-to-use-page .header-img-flower img {
  width: 100%;
  height: auto;
}

#how-to-use-page .header-img {
  width: 60vw;
  max-width: 760px;
  height: 340px;
  max-height: 340px;
  position: absolute;
  right: 0;
  margin-top: 60px;
}

#how-to-use-page .header-img img {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

#how-to-use-page .how-to-use-block {
  margin-top: 28%;
}

#how-to-use-page .tab-btns {
  font-family: "M PLUS Rounded 1c", sans-serif;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#how-to-use-page .tab-btns button {
  padding: 15px 50px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  background-color: #ccc;
  color: #333;
  transition: 0.3s;
}

#how-to-use-page .tab-btns button.active {
  background-color: #00a6ab;
  color: white;
  position: relative;
}

#how-to-use-page .tab-btns button:first-child {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

#how-to-use-page .tab-btns button:last-child {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

#how-to-use-page .tab-btns button.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #00a6ab;
}

#how-to-use-page .tab-panel {
  display: none;
  padding-top: 30px;
  /* max-width: 1400px; */
  margin: 0 auto;
  padding-bottom: 120px;
}

#how-to-use-page .tab-panel.active {
  display: block;
}

/* #how-to-use-page .image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 150px;
  column-gap: 30px;
  padding: 10px;
  margin-top: 30px;
  text-align: center;
} */
/* 
#how-to-use-page .image-grid img {
  width: 240px;
  height: 320px;
  border-radius: 20px;
} */

#how-to-use-page .step-circle {
  background: #f1b708;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
}

#how-to-use-page .step-circle .label {
  font-size: 14px;
}

#how-to-use-page .step-circle .number {
  font-size: 18px;
  font-weight: bold;
  color: black;
}

#how-to-use-page .title-text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(12px, 4.5vw, 18px);
  color: black;
}

#how-to-use-page .text {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: var(--secondary);
  font-size: 20px;
  font-weight: 500;
}

#how-to-use-page .text-container {
  text-align: left !important;
  /* font-size: 15px; */
  /* margin: 30px 0 0 0; */
  margin-top: 15px;
}

/* Tablet (<= 768px) */
@media (min-width: 768px) and (max-width: 1023px) {
/* 
  #how-to-use-page .image-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 100px;
  } */

  /* #how-to-use-page .step-circle {
    width: 35px;
    height: 35px;
    font-size: 12px;
    margin-left: 46px;
  } */

  #how-to-use-page .step-circle .number {
    font-size: 16px;
  }

  #how-to-use-page .text-container {
    /* margin-left: 75px; */
  }
}

/* Mobile (<= 480px) */
@media (max-width: 480px) and (min-width: 320px) {
  /* #how-to-use-page .image-grid img {
    width: 240px !important;
    height: 320px !important;
  } */

  .company-info-header1 {
    margin-top: 50px;
  }

  .company-info-header1 h1 {
    font-size: 30px !important;
  }

  #how-to-use-page .tab-btns {
    margin-top: 75%;
  }

  #how-to-use-page .how-to-use-block {
    margin-top: 75% !important;
  }

  #how-to-use-page .text-container {
    /* margin-left: 85px; */
    font-size: 15px;
  }

  #how-to-use-page .text {
    font-size: 22px !important;
  }

  #how-to-use-page .tab-btns button {
    padding: 15px 25px;
  }

  #how-to-use-page .title-text {
    font-size: 14px;
  }
  /* #how-to-use-page .image-grid {
    grid-template-columns: 1fr;
    row-gap: 80px;
  } */

  /* #how-to-use-page .step-circle {
    width: 30px;
    height: 30px;
    font-size: 10px;
    margin-left: 3px;
    margin-left: 55px;
    margin-top: -15px;
  } */

  #how-to-use-page .step-circle .number {
    font-size: 14px;
  }
}

#back-to-top {
  position: fixed;
  right: 0 !important;
  bottom: 0 !important;
  background: none;
  border: none;
  padding: 0;
  z-index: 999;
  cursor: pointer;
  /* Remove any display:none if present */
}
#back-to-top img {
  width: 60px !important;
  height: 60px !important;
  display: block;
}

@media (min-width: 1441px) and (max-width: 1920px) {
.step-container {
  /* width: 1300px; */
}
}

@media (min-width: 1440px) {
  #how-to-use-page .company-info-header {
    top: 100px !important;
  }

  #how-to-use-slope-rental-cars-page {
    /* margin-top: 380px !important; */
  }
}

@media (min-width: 430px) {
  #how-to-use-page .company-info-header {
    top: 240px;
  }

   #how-to-use-page .breadcrumbs-container
  {
    /* display: none; */
  }

  #how-to-use-slope-rental-cars-page {
    /* margin-top: 380px !important; */
  }
}

@media (max-width: 425px) {
  #how-to-use-page .company-info-header {
    top: 220px !important;
  }

  #how-to-use-page .breadcrumbs-container
  {
    /* display: none; */
  }

  #how-to-use-slope-rental-cars-page {
    /* margin-top: 300px !important; */
  }

  #how-to-use-page .banner {
    height: 300px !important;
  }
}
