@font-face {
  font-family: 'DM Sans';
  src: url('./fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'DM Sans';
  src: url('./fonts/DMSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
}

p {
  margin: 0;
}

ol {
  margin: 0;
}

.container {
  font-family: "DM Sans", "sans-serif";
  line-height: 1.6;
  padding: 32px 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}

.not-installed-message {
  color: black;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding-left: 0;
  counter-reset: step-counter;
}

.step {
  padding-left: 0;
  counter-increment: step-counter;
}

.step-text {
  text-align: center;
  font-size: 16px;
  padding-bottom: 16px;
}

.step-text::before {
  content: counter(step-counter) ". ";
  margin-right: 6px;
}

.step-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border: 1px solid #e4e4e4;
  border-radius: 34px;
}

.contact-info {
  text-align: center;
  color: black;
  font-size: 16px;
}

.contact-info a {
  color: #06c;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* iPad landscape - horizontal layout */
@media screen and (min-width: 1024px) and (orientation: landscape) {
  body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .container {
    gap: 40px;
    width: 100%;
    max-width: 100%;
  }
  
  .steps-list {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }
}

/* iPhone and smaller screens */
@media screen and (max-width: 1024px) {
  .not-installed-message {
    font-size: 34px;
  }
  
  .step-text {
    font-size: 24px;
  }
  
  .contact-info {
    font-size: 24px;
  }
}
