/* 1. The full-height vertical stack */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

*
{
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
}

/* 2. The Centering Wrapper */
.container {
  max-width: 600px; /* Adjust based on your design preference */
  margin-left: auto;
  margin-right: auto;
  /*padding: 0 1rem;   /* Prevents content from touching edges on mobile */
  width: 100%;       /* Ensures it doesn't shrink on smaller screens */
  text-align: center; /* Centers text and inline elements */
}

/* 3. Sticky Header (similar to the inspected element) */
.sticky-header {
  /*position: sticky;*/
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  /*border-bottom: 1px solid #eee;*/
}

.title {
    font-size: 2.3rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;

}

.subtitle {
    font-size: 1.6rem;
    margin-top: 0.25rem;
    margin-bottom: 35px;

}

.footer {
    font-size: 0.875rem;
    margin-top: 10px;
}

.container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trial-btn {
  background-color: #E5962D;
  color: white;
  border: none;
  padding: 25px 40px;
  font-size: 26px;
  cursor: pointer;

  text-decoration: none; /* Remove underline from links */
  color: white; /* Ensure text color is white for links */
  display: inline-block; /* Allow padding and other styles to apply to links */

  margin-top: 20px;
}

.trial-btn:hover {
    background-color: #8f5d1b;
}

.trial-text {
  margin-top: 10px;
  /*font-size: 1.2rem;*/
}

ul, ol {
    display: inline-block;
    text-align: left;
}

.two-column {
  display: flex;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.left-column {
  flex: 1;
  font-size: 1.25rem;
  /*margin-left: 75px;*/
}

.left-column .container {
  text-align: left;
}

.right-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.checkout-panel {
  width: 100%;
  max-width: 520px;
  background-color: #f8f6f1;
  border: 1px solid #ded6c7;
  border-radius: 14px;
  padding: 1rem;
  box-sizing: border-box;
  margin-top: 20px;
}

.checkout-status,
.checkout-error {
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: left;
}

.checkout-status {
  color: #5f584c;
}

.checkout-error {
  color: #8a1c1c;
  background-color: #f8dddd;
  border: 1px solid #d8aaaa;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
}

#checkout {
  width: 100%;
  min-height: 700px;
}

@media (max-width: 768px) {
  .two-column {
    flex-direction: column;
  }

  .right-column {
    width: 100%;
  }
}
