.text {
  text-align: center;
  color: white;
  -webkit-text-stroke: 1px black; /* For WebKit browsers */
  text-shadow: 
    -1px -1px 0 black,  
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black; /* Fallback for outline effect */
}

body {
  margin: 0;
  padding-top: 49px;
  font-family: Arial, sans-serif;
  background-color: black;
  color: white;
  position: relative;
  min-height: 100vh;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://koehnsocialstrategies.com/images/grok3.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.content {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0); /* Transparent background */
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

/*      body {
        font-family: -apple-system, BlinkMacSystemFont, sans-serif;
        font-size: 16px;
        -webkit-font-smoothing: antialiased;
        display: flex;
        justify-content: center;
        align-content: center;
        height: 100vh;
        width: 100vw;
        background-color: #f6f9fc;
        margin: 0;
        padding: 0; 
      }*/

      .price {
        text-decoration: line-through;
        color: #ff0000;
        font-size: 12px;
        margin-left: 8px;
      }
      
      .title {
        color: white;
        font-size: 20px;
        font-weight: 600;
        text-align: center;
        width: 80%;
        margin: 50px auto;
        padding: 5px 40px;
      }

      section {
        background: rgba(0, 0, 0, 0.7);
        border-radius: 8px;
        box-shadow: 0 7px 14px 0 rgba(0,0,0,0.1);
        padding: 40px;
        width: 80%;
        max-width: 450px;
        margin: 20px auto;
      }

      section.title {
        padding: 20px;
        margin: 20px auto;
      }

      section.title h2 {
        margin: 0;
        color: white;
      }

      h6 {
        color: white;
        font-size: 12px;
        margin: 10px 0 0 0;
        text-align: center;
        padding: 0;
      }
      
      .product {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e6ebf1;
      }
      
      .description h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
        color: white;
      }
      
      .description h5 {
        margin: 5px 0 0 0;
        font-size: 14px;
        font-weight: 500;
        color: #8898aa;
      }
      
      button {
        background: #5469d4;
        border-radius: 4px;
        border: 0;
        color: white;
        cursor: pointer;
        font-family: inherit;
        font-size: 16px;
        font-weight: 600;
        height: 50px;
        letter-spacing: 0.025em;
        outline: none;
        padding: 0 2rem;
        text-decoration: none;
        text-transform: uppercase;
        transition: all 0.15s ease;
        white-space: nowrap;
        width: 100%;
      }
      
      button:hover {
        background: #4056c5;
        transform: translateY(-1px);
        box-shadow: 0 7px 14px rgba(80, 86, 197, 0.10), 0 3px 6px rgba(0, 0, 0, 0.08);
      }
      
      button:active {
        background: #3c52c4;
        transform: translateY(0px);
        box-shadow: 0 4px 6px rgba(80, 86, 197, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
      }
      
      button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
      }
      
      .error-message {
        color: #e25950;
        font-size: 14px;
        margin-top: 10px;
        text-align: center;
        display: none;
      }

      /* .info-popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.9);
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        max-width: 80%;
        width: 400px;
        color: white;
      }

      .info-popup.show {
        display: block;
      }

      .info-popup .close-btn {
        position: absolute;
        right: 10px;
        top: 10px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        width: auto;
        height: auto;
        padding: 5px;
      }

      .info-link {
        color: #5469d4;
        text-decoration: none;
        margin: 10px 0;
        display: inline-block;
        cursor: pointer;
      }

      .info-link:hover {
        text-decoration: underline;
      }

      .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
      }

      .overlay.show {
        display: block;
      }*/

/* Remove or comment out the popup-related styles and add these dropdown styles */

.info-content {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(84, 105, 212, 0.3);
    border-radius: 8px;
    padding: 0;
    margin-top: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.info-content.show {
    padding: 20px;
    max-height: 500px; /* Adjust based on your content */
    opacity: 1;
}

.info-content h4 {
    margin-top: 0;
    color: #5469d4;
    font-size: 16px;
    margin-bottom: 15px;
}

.info-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-content li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #e6ebf1;
    line-height: 1.5;
}

.info-content li:before {
    content: "*";
    color: #5469d4;
    position: absolute;
    left: 0;
}

.info-link {
    color: #5469d4;
    text-decoration: none;
    margin: 15px 0;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.info-link:hover {
    color: #6b7fe8;
    transform: translateX(2px);
}

.info-link.active {
    color: #8898aa;
}

/* Add arrow indicator */
.info-link:after {
    transform: rotate(180deg);
    font-size: 12px;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-left: 5px;
}

/*.info-link.active:after {
    transform: rotate(0deg);
}*/

/* Remove the old popup styles - comment out or delete these: */
/*
.info-popup,
.overlay,
.info-popup.show,
.overlay.show {
    // Remove or comment out all popup-related styles
}
*/

/* Mobile responsive adjustments */
@media (max-width: 500px) {
    .info-content {
        margin-top: 10px;
    }
    
    .info-content.show {
        padding: 15px;
        max-height: 600px; /* More height for mobile readability */
    }
    
    .info-content li {
        font-size: 14px;
        padding: 6px 0;
    }
    
    section {
        width: 100%;
        max-width: 100%;
        padding: 20px 10px;
        box-sizing: border-box;
        margin: 20px auto;
    }
  }
