input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
textarea:-webkit-autofill, 
textarea:-webkit-autofill:hover, 
textarea:-webkit-autofill:focus, 
select:-webkit-autofill, 
select:-webkit-autofill:hover, 
select:-webkit-autofill:focus {
    background-color: transparent !important;
    color: inherit !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

body, html {
    overflow-x: hidden !important;
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    display: flex;
    flex-direction: column;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-color: #ffffff;
    background-image: radial-gradient(circle, rgba(242,64,89,0.2) 1px, transparent 1px);
    background-size: 16px 16px;
    background-position: center;
}
header {
    padding: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}
a {
    color: inherit;
    text-decoration: inherit;
}
.logo {
    font-weight: bold;
    color: rgb(242, 64, 89);
}
.full-content {
    flex: 1;
}
.content {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.hero {
    min-height: calc(100vh - 54px);
    display: flex;
    justify-content: center;
}
.hero-content {
    text-align: center;
    padding: 15px;
}
.main-headline {
    padding-bottom: 10px;
}
.hero h1 span {
    color: rgb(242, 64, 89);
}
.signup-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.email-box {
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 
            0px -2px 4px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 4px;
    max-width: 400px;
    transition: all 0.3s ease;
}
.email-box:focus-within {
    border-color: rgb(242, 64, 89);
    box-shadow: 0 0 8px rgba(242, 64, 89, 0.3);
}

.email-input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 16px;
    color: #888;
    outline: none;
}
.email-button {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(to right, #f28a8a, #f2465b);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.email-button:active {
    transform: scale(0.96);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.email-button:hover {
    opacity: 0.8;
    background: linear-gradient(to right, #f2465b, #f28a8a);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    transition: all 0.2s ease-in-out;
}
.hero-content img{
    max-height: 50vh;
    width: auto;
    margin-top: 30px;
}
.ios-note {
    font-size: 0.8rem;
    color: #777;
    margin-top: 0.5rem;
}

.appstore-badge a img {
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.appstore-badge a img:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

.section {
    padding: 4rem 2rem;
    text-align: center;
}
h2 {
    color: rgb(242, 64, 89);
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

.testimonials {
    text-align: center;
    padding: 2rem;
    background-color: #fdf3f3;
    position: relative;
}
.testimonial-wrapper {
    position: relative;
    width: 100%;
}
.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    white-space: nowrap;
}
.testimonial {
    flex: 0 0 300px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 
            0px -2px 4px rgba(0, 0, 0, 0.05);
    text-align: left;
    white-space: normal;
    transition: none;
    margin-bottom: 24px;
}
.stars {
    color: #ffcc00;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.testimonial-text {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.testimonial-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 0.2rem;
}
.testimonial-role {
    font-size: 0.9rem;
    color: #777;
}
.testimonial-wrapper::before,
.testimonial-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    pointer-events: none;
}
@media (max-width: 1100px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        animation: none;
        gap: 1rem;
    }
    .testimonial {
        flex: 1 1 auto;
        width: 90%;
        margin: 16px auto;
    }
    .last-testimonial {
        visibility: hidden;
        height: 0;
        width: 0;
        padding: 0;
        margin: 0;
    }
}

.img-container {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.img-container img{
    max-height: 50vh;
    width: auto;
    margin-top: 30px;
}

.why-pronunciation {
    background-color: white;
    padding: 4rem 2rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 
            0px -2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.why-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.impact-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 750px;
    margin: 0 auto;
}
.impact-item {
    width: 100%;
    max-width: 650px;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 
            0px -2px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.impact-icon {
    font-size: 2.8rem;
    color: #f2465b;
    margin-bottom: 0.5rem;
}
.impact-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}
.impact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .impact-grid {
        max-width: 96%;
    }
    .impact-item {
        max-width: 100%;
        padding: 1.2rem;
    }
}

.pain-point-section {
    background-color: #fff3f3;
    padding: 4rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
  }
  .pain-point-heading {
    color: #f2465b;
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  .pain-point-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .pain-point-item {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: #444;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 580px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  } 
  .pain-point-item p {
    margin: 0;
    line-height: 1.5;
  }
  .pain-icon {
    color: #f2465b;
    font-size: 1.3rem;
    margin-right: 0.75rem;
    line-height: 1.5;
    transform: translateY(0.15em);
  }
  .pain-quote {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 1rem;
  }
  .pain-button {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
  }
  .solution-item {
    display: flex;
    align-items: center;
    background: #e1f9e1;
    color: #2e7d32;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    max-width: 580px;
    margin: 0 auto 2rem auto;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }
  .solution-icon {
    color: #28a745;
    font-size: 1.3rem;
    margin-right: 0.75rem;
  }

  @media (max-width: 768px) {
    .pain-point-item {
      align-items: flex-start;
      text-align: left;
    }
    .pain-icon {
      margin-bottom: 0.5rem;
    }
    .pain-point-list {
        padding: 0 1rem;
        box-sizing: border-box;
      }
  }

.core-features {
    padding: 2rem;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.feature-card {
    height: 170px;
    background-color: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1), 
            0px -2px 4px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 950px;
    margin: 2rem auto;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  .feature-img {
    width: 50%;
    max-width: 300px;
    margin-right: 2%;
  }
  
  .feature-desc {
    width: 48%;
    text-align: left;
  }
  
  .feature-icon {
    color: #ff4757;
    font-size: 1.6rem;
    margin-right: 8px;
    display: inline-block;
    vertical-align: baseline;
    position: relative;
  }

  .feature-desc h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #333;
  }
  
  .feature-desc p {
    color: #555;
    font-size: 1rem;
  }
  
  @media (max-width: 760px) {
    .feature-item {
      flex-direction: column;
      text-align: center;
    }
  
    .feature-img, .feature-desc {
      width: 100%;
    }
  
    .feature-img {
      margin-bottom: 1rem;
    }
    .hero-content {
        flex-direction: column;
      }
  
    .feature-grid {
        grid-template-columns: 1fr;
    }
  }

.for-schools {
  background-color: #fdf3f3;
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.for-schools-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  gap: 2rem;
  flex-wrap: wrap;
}

.for-schools-text {
  flex: 1 1 400px;
  text-align: left;
}

.for-schools-text h2 {
  color: rgb(242, 64, 89);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.for-schools-text p {
  color: #444;
  line-height: 1.7;
}

.for-schools-cta {
  margin-top: 1.5rem;
}

.for-schools-image {
  flex: 1 1 400px;
  text-align: center;
}

.for-schools-image img {
  max-width: 100%;
}

.support {
    text-align: center;
    padding: 4rem 2rem;
}
.legal {
    padding: 4rem 2rem;
}
.legal a {
    color: rgb(242, 64, 89);
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

.support h2 {
    color: rgb(242, 64, 89);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.support p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.5;
}

.support a {
    color: rgb(242, 64, 89);
    font-weight: bold;
    text-decoration: none;
}

.support a:hover {
    text-decoration: underline;
}


footer {
  background: #f5f5f5;
  padding: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: #333;
  width: 100%;
  margin-top: auto;
}

.footer-links {
  margin-top: 0.4rem;
}

.footer-links a {
  color: rgb(242, 64, 89);
  text-decoration: none; /* no underline */
  margin: 0 0.6rem;
  transition: color 0.3s ease-in-out;
  display: inline-block;
}

.footer-links a:hover {
  color: #d32f2f;
}