#guide-main-container {
  width: 81%;
  margin: auto;
  display: flex;
  flex-direction: column;
}

#guide-main-container h1 {
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
}

#guide-main-container h2 {
  font-size: 48px;
  font-weight: 500;
}

#guide-section-top {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#guide-section-top > * {
  padding: 0;
}

#guide-section-top p {
  width: 70ch;
  line-height: 1.5;
}

#guide-section-top a {
  color: #0d6efd;
}

.guide-steps-container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
}

.guide-steps-container > * {
  padding: 0;
}

.guide-steps-container h2 {
  margin: 20px 0 10px 0;
}

.guide-step-banner {
  width: 65px;
  background-color: #caf5e9;
  padding: 10px 20px;
  border-radius: 6px;
}

.guide-steps-container img {
  width: 1200px;
  margin-top: 30px;
  border: 1px solid lightgray;
  box-shadow: 5px 5px 10px lightgray;
}

.guide-steps-container p {
  width: 70ch;
  line-height: 1.5;
  padding: 0;
}

#guide-step1-recommendation {
  width: 800px;
  margin-top: 30px;
  background-color: #dde5ff;
  padding: 20px;
}

.guide-section-usage {
  display: flex;
  margin-bottom: 40px;
}

.guide-section-usage img {
  width: 450px;
  height: 400px;
}

.guide-section-usage-info {
  padding: 30px 40px;
}

.guide-section-usage-info h3 {
  font-size: 24px;
  margin-bottom: 30px;
}

.guide-section-usage-info p {
  width: 55ch;
  padding: 20px 0;
  line-height: 1.2;
}

.guide-section-usage-info > ul {
  flex-direction: column;
}

.guide-section-usage-info > ul > li {
  list-style: disc;
  padding: 5px 0;
}

/* Media Queries */

/* Big screens */

/* 4k 175% zoom */

@media (min-width: 1921px) {
  #guide-main-container {
    width: 61%;
  }
}

/* 4k 150% zoom */

@media (min-width: 2360px) {
  #guide-main-container {
    width: 61%;
  }

  #guide-main-container h1 {
    font-size: var(--font-h1-big-screen-2);
  }

  #guide-main-container h2 {
    font-size: var(--font-h2-big-screen-2);
  }

  #guide-section-top p,
  .guide-steps-container > p {
    font-size: var(--font-big-screen-2);
  }
}

/* 4k 125% zoom */

@media (min-width: 2800px) {
  #guide-main-container {
    width: 61%;
  }

  #guide-main-container h1 {
    font-size: var(--font-h1-big-screen-3);
  }

  #guide-main-container h2 {
    font-size: var(--font-h2-big-screen-3);
  }

  #guide-section-top p,
  .guide-steps-container > p {
    font-size: var(--font-big-screen-3);
  }
}

/* 4k 100% zoom */

@media (min-width: 3300px) {
  #guide-main-container {
    width: 61%;
  }

  #guide-main-container h1 {
    font-size: var(--font-h1-big-screen-4);
  }

  #guide-main-container h2 {
    font-size: var(--font-h2-big-screen-4);
  }

  #guide-section-top p {
    font-size: var(--font-big-screen-4);
  }

  .guide-steps-container {
    margin-bottom: 40px;
  }

  .guide-steps-container > p {
    font-size: var(--font-big-screen-4);
  }

  .guide-steps-container h2 {
    margin: 40px 0 20px 0;
  }

  .guide-step-banner {
    width: 110px;
    background-color: #caf5e9;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 36px;
  }

  #guide-step1-recommendation {
    width: 1200px;
    margin: 40px 0;
    background-color: #dde5ff;
    padding: 20px;
  }

  #guide-step1-recommendation > * {
    font-size: 30px;
  }

  #guide-step1-recommendation h3 {
    margin-bottom: 20px;
  }

  .guide-steps-container img {
    width: 2000px;
  }

  .guide-section-usage img {
    width: 900px;
    height: 800px;
  }

  .guide-section-usage-info {
    padding: 30px 70px;
  }

  .guide-section-usage-info h3 {
    font-size: 40px;
    margin-bottom: 30px;
  }

  .guide-section-usage-info p > *,
  .guide-section-usage-info p {
    font-size: 30px;
  }

  .guide-section-usage-info > ul > li {
    font-size: 30px;
  }
}

@media (min-width: 1024px) and (max-width: 1600px) {
  /* Styles for tablet and mobile horizontal view */
  .guide-steps-container img {
    width: 800px;
  }

  .guide-section-usage img {
    width: 300px;
    height: 250px;
  }

  .guide-section-usage-info,
  .guide-section-usage-info p {
    width: 45ch;
  }

  .guide-section-usage-info {
    padding: 30px 40px;
  }

  .guide-section-usage-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .guide-section-usage-info p {
    padding: 5px 0;
    line-height: 1;
  }

  .guide-section-usage-info > ul {
    flex-direction: column;
  }

  .guide-section-usage-info > ul > li {
    list-style: disc;
    padding: 5px 0;
  }
}
@media (min-width: 541px) and (max-width: 1023px) {
  #guide-main-container {
    width: 70%;
  }

  #guide-main-container h1 {
    font-size: 42px;
  }

  #guide-main-container h2 {
    font-size: 30px;
  }

  #guide-section-top p,
  .guide-steps-container p {
    width: 45ch;
  }

  #guide-step1-recommendation {
    width: 500px;
  }

  .guide-steps-container img {
    width: 550px;
  }

  .guide-section-usage {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .guide-section-usage img {
    width: 400px;
    height: 320px;
  }

  .guide-section-usage-info,
  .guide-section-usage-info p {
    width: 45ch;
  }

  .guide-section-usage-info {
    padding: 30px 0;
  }

  .guide-section-usage-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .guide-section-usage-info p {
    padding: 5px 0;
    line-height: 1;
  }

  .guide-section-usage-info > ul {
    flex-direction: column;
  }

  .guide-section-usage-info > ul > li {
    padding: 5px 0;
  }
}

@media (max-width: 540px) {
  #guide-main-container {
    width: 90%;
  }

  #guide-main-container h1 {
    font-size: 42px;
  }

  #guide-main-container h2 {
    font-size: 30px;
  }

  #guide-step1-recommendation {
    width: 300px;
  }

  .guide-steps-container img {
    width: 320px;
  }

  .guide-section-usage {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }

  #guide-section-top p,
  .guide-steps-container p {
    width: 30ch;
  }

  .guide-section-usage-info,
  .guide-section-usage-info p {
    width: 25ch;
  }

  .guide-section-usage img {
    width: 320px;
    height: 200px;
  }

  .guide-section-usage-info h3 {
    margin-bottom: 10px;
  }

  .guide-section-usage-info p {
    padding: 15px 0;
    line-height: 1;
  }

  .guide-section-usage-info > ul {
    flex-direction: column;
  }

  .guide-section-usage-info > ul > li {
    padding: 5px 0;
  }
}
