/* Reset margins */
h1, .title-text-box p, .text-box p, .center-text-box p, .tagline-text-box p, .pricing-text-box p, .step-text p {
  margin: 0;
  padding: 0;
}

body {
  background-color: #050505; /* Slightly off black */
  color: gold;
  font-family: Cambria, serif;
  font-style: italic;
  font-size: 20px;
  margin: 0;
  padding: 20px;
}

.title-container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 820px;
}

h1 {
  flex: 1;
  min-width: 200px;
  font-size: 36px;
  margin-bottom: 0;
  line-height: 1.2;
  padding: 5px;
  box-sizing: border-box;
}

.title-text-box {
  flex: 1;
  min-width: 200px;
  font-style: italic;
  font-size: 20px;
  color: gold;
  padding-top: 15px;
  padding-left: 5px;
  padding-right: 5px;
  box-sizing: border-box;
}

.sparkling-gold-bar {
  width: 100%;
  max-width: 820px;
  height: 9.5px;
  margin: 0 0 40px 0;
  border-radius: 6px;
  background-color: gold;
  box-sizing: border-box;
}

.tagline-text-box {
  width: 100%;
  max-width: 820px;
  font-style: italic;
  font-size: 24px;
  color: gold;
  text-align: center;
  padding: 10px 5px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.container {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 820px;
}

.image-left {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  height: auto;
}

.text-box {
  flex: 1;
  min-width: 200px;
  font-style: italic;
  margin-top: 0;
  padding: 10px 5px;
  box-sizing: border-box;
}

/* Three step containers styling */
.steps-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  max-width: 820px;
  flex-wrap: wrap;
}

.step-container {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-text {
  font-style: italic;
  font-size: 16px;
  color: gold;
  padding: 10px 5px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 10px;
}

.step-image {
  width: 100%;
  max-width: 260px;
  height: auto;
}

/* Pricing text box styling */
.pricing-text-box {
  width: 100%;
  max-width: 820px;
  font-style: italic;
  font-size: 20px;
  color: gold;
  text-align: center;
  padding: 10px 5px;
  box-sizing: border-box;
  margin-top: 40px;
  margin-bottom: 20px;
}

/* email text box styling */
.email-text-box {
  width: 100%;
  max-width: 820px;
  font-style: italic;
  font-size: 20px;
  color: gold;
  text-align: center;
  padding: 10px 5px;
  box-sizing: border-box;
  margin-top: 15px;
  margin-bottom: 20px;
}

/* Center text box styling - now as clickable link */
.center-text-box {
  display: block;
  width: 100%;
  max-width: 820px;
  font-style: italic;
  font-size: 36px;
  color: gold;
  text-align: center;
  padding: 10px 5px;
  box-sizing: border-box;
  margin-top: 20px;
  text-decoration: none;
  cursor: pointer;
}

.center-text-box:hover {
  color: #ffd700;
  text-decoration: underline;
}

.center-text-box:visited {
  color: gold;
}

/* Mobile responsive design */
@media screen and (max-width: 768px) {
  body {
    padding: 15px;
    font-size: 36px; /* Double the font size */
  }
  
  .title-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  h1 {
    font-size: 56px; /* Double the font size */
    width: 100%;
  }
  
  .title-text-box {
    font-size: 36px; /* Double the font size */
    padding-top: 5px;
    width: 100%;
  }
  
  .tagline-text-box {
    font-size: 40px; /* Double the font size */
    padding: 15px 10px;
  }
  
  .container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .image-left {
    width: 100%;
    max-width: 820px; /* Same width as gold bar */
  }
  
  .text-box {
    width: 100%;
    max-width: 820px; /* Same width as gold bar */
    font-size: 36px; /* Double the font size */
    padding: 15px 10px;
  }
  
  /* Steps container - vertical layout */
  .steps-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .step-container {
    width: 100%;
    max-width: 820px; /* Same width as gold bar */
  }
  
  .step-text {
    font-size: 32px; /* Double the font size */
    padding: 15px 10px;
    margin-bottom: 15px;
  }
  
  .step-image {
    width: 100%;
    max-width: 820px; /* Same width as gold bar */
  }
  
  .center-text-box {
    font-size: 56px; /* Double the font size */
    padding: 15px 10px;
  }
  
  .pricing-text-box, .email-text-box {
    font-size: 36px; /* Double the font size */
    padding: 15px 10px;
  }
  
  .sparkling-gold-bar {
    margin: 0 0 30px 0;
  }
}

/* Extra small screens (phones in portrait) */
@media screen and (max-width: 480px) {
  body {
    padding: 10px;
    font-size: 32px; /* Double the font size */
  }
  
  h1 {
    font-size: 48px; /* Double the font size */
  }
  
  .title-text-box {
    font-size: 32px; /* Double the font size */
  }
  
  .tagline-text-box {
    font-size: 36px; /* Double the font size */
  }
  
  .text-box {
    font-size: 32px; /* Double the font size */
  }
  
  .step-text {
    font-size: 28px; /* Double the font size */
  }
  
  .center-text-box {
    font-size: 48px; /* Double the font size */
  }
  
  .pricing-text-box, .email-text-box {
    font-size: 32px; /* Double the font size */
  }
}