@charset "UTF-8";
/* CSS Document */

/* Aside styles */
#introWrapper {
    width: 99%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: hidden;
    box-sizing: border-box;
}
    
#heroImage {
    flex: 0 0 auto;
    width: 55%;
    margin: 5px auto;
}
    
#heroImage img {
    min-width: 80%;
    max-width: 600px;
    margin: 10px auto;
}

#heroText {
    flex: 0 0 auto;
    width: 40%;
    margin: 0;
    padding: 25px;
    color: #424A5A;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
    
.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  font-size: 1rem;
}

.benefits-list li {
  margin-bottom: 10px;
  line-height: 1.4;
}

.cta-button {
  display: inline-block;
  background-color: #f4b400;
  color: #000;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #e0a800;
}

.trust-line {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
}
    
.testimonial-block {
  text-align: center;
  margin: 30px 20px;
  font-style: italic;
  font-size: 1rem;
  color: #333;
}

.testimonial-block .testimonial {
  max-width: 800px;
  margin: auto;
  padding: 0 20px;
}

.mobile-break {
  display: none;
}

.desktop-dot {
  display: inline;
}
/* End of Aside */
    
@media screen and (max-width: 768px) {  
   
/* Aside */
#introWrapper {
    flex-direction: column;
    height: auto;
}
    
#heroImage {
    width: 90%;
}

#heroText {
    width: 90%;
    padding: 15px;
}
    
.mobile-break {
    display: inline;
}

.desktop-dot {
    display: none;
}
    
.prepWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 94%;
    margin-left: 3%;
}
   
.hideHeaderText {
    display: none;
}
/* End Aside */
    
}