* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  max-width: 1920px;
  margin: 0 auto;
}
#menu-toggle,
#menu-toggle-sticky {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.menu-toggle-label {
  display: none;
}
.hero-video {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  overflow: hidden;
  z-index: 1;
  background: transparent;
}
.hero-container {
  padding-top: 1rem;
}
.hero {
  position: relative;
  top: 2%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 96%;
  height: 96vh;
  background: url(../assets/img/home_background.webp) center center / cover no-repeat;
  border-radius: 50px;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-img {
  position: absolute;
  will-change: left, top, transform;
}
.hero-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 700px;
  font-size: 1.5rem;
}
.hero-text h1 {
  width: 90%;
  margin: 0 auto;
}
.highlighted-text {
  background: linear-gradient(to right, #FFAC49, #FF5C00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
.bold {
  font-weight: 700;
}
.hero-text p {
  color: #ABABAB;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 55px;
}
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FF9900 0%, #CC3300 100%);
  padding: 20px 35px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  text-decoration: none;
  outline: none;
  gap: 10px;
}
button:hover {
  box-shadow: 0 0 30px #FF9900;
}
.sticky-header {
  position: fixed;
  top: 2%;
  left: 50%;
  transform: translateX(-50%) translateY(-150%);
  width: 96%;
  max-width: 1840px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-radius: 50px;
  background: #000;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.sticky-header .logo {
  margin-left: 10px;
}
.sticky-header.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.sticky-header.open {
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-list {
  list-style: none;
  display: flex;
  gap: 5px;
  padding: 0;
  margin: 0;
}
.nav-list li {
  margin: 0;
}
.nav-list li a {
  text-decoration: none;
  background: #ccc;
  color: #000;
  border-radius: 30px;
  padding: 10px 30px;
  transition: background 0.3s ease-in-out;
  font-size: 1.1rem;
}
.nav-list li a:hover {
  background: #a6a6a6;
}
.nav-list li.selected a {
  background: #a6a6a6;
}
.nav-list li.selected a:hover {
  background: #a6a6a6;
}
.orange-button {
  background: linear-gradient(90deg, #FFAC49 0%, #FF5C00 100%);
  border: none;
  border-radius: 30px;
  padding: 0.75rem 1.25rem;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
}
.current-page {
  text-decoration: underline;
}
@media (max-width: 1023px) {
  .header {
    width: 100%;
    height: 80px;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
  }
  .header .logo img,
  .sticky-header .logo img {
    width: 25px;
    height: auto;
  }
  .hero .nav {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }
  .nav {
    transform: none;
  }
  .sticky-header {
    padding: 1rem 2rem;
  }
  .menu-toggle-label {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    position: relative;
    z-index: 11;
    background: linear-gradient(to top, #FFAC49, #FF5C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .menu-toggle-label::before {
    content: "☰";
    color: #fff;
  }
  .header #menu-toggle:checked + .menu-toggle-label::before {
    content: "✕";
    color: #FF9900;
  }
  .header #menu-toggle:checked ~ .nav {
    display: block;
  }
  .logo {
    position: relative;
    z-index: 11;
    margin-left: auto;
  }
  .nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 2%;
    width: 95%;
    background: #000;
    padding: 1rem 2rem;
    box-sizing: border-box;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: 10;
  }
  .desktop-only {
    display: none;
  }
  .nav .nav-list {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .nav .nav-list li a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    color: #fff;
    text-align: left;
    background: none;
    border: none;
    border-radius: 0;
  }
  .nav .nav-list li a.orange-button {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(90deg, #FFAC49 0%, #FF5C00 100%);
    border-radius: 30px;
    text-align: center;
  }
  .hero {
    position: relative;
    width: 95%;
    margin: 0 auto;
    margin-top: 2%;
  }
  .sticky-header #menu-toggle-sticky:checked + .menu-toggle-label::before {
    content: "✕";
    color: #FF9900;
  }
  .sticky-header #menu-toggle-sticky:checked ~ .sticky-nav {
    display: block;
  }
  .sticky-header #menu-toggle-sticky:checked ~ .hero .nav {
    background-color: green;
  }
  .sticky-nav {
    display: none;
    position: fixed;
    top: calc(2% + 72px);
    left: 0;
    right: 0;
    width: 100%;
    background: #000;
    padding: 1rem 2rem;
    box-sizing: border-box;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    z-index: 999;
  }
  .sticky-nav .nav-list {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .sticky-nav .nav-list li a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    color: #fff;
    text-align: left;
    background: none;
    border: none;
    border-radius: 0;
  }
  .sticky-nav .nav-list li a.orange-button {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(90deg, #FFAC49 0%, #FF5C00 100%);
    border-radius: 30px;
    text-align: center;
  }
  .sticky-header #menu-toggle-sticky:checked ~ .nav {
    display: none !important;
  }
}
.page-content {
  margin-top: 100vh;
  margin-left: 10%;
  margin-right: 10%;
  padding: 20px 0;
}
.expansion {
  background: #fff;
  color: #000;
  text-align: center;
  margin: 5vh 10% 10vh 10%;
}
.expansion h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.expansion p {
  font-size: 1.2rem;
  color: #475467;
  margin-bottom: 2rem;
}
.expansion-cards {
  display: grid;
  gap: 2rem;
  width: 100%;
  justify-items: center;
}
.card {
  background: #FFF;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: -15px 18px 24px 0 rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  max-width: 300px;
  flex-direction: column;
  justify-content: space-between;
}
.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.card-content h3 {
  flex-grow: 1;
  display: flex;
  font-weight: 400;
  align-items: center;
  text-align: center;
}
.card-content img {
  margin-top: auto;
}
.launch-academy-section {
  background: url("../assets/img/bg_pattern.webp") center center/cover no-repeat;
  padding: 60px;
  width: 96%;
  margin: 0 auto;
  border-radius: 50px;
}
.launch-academy-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 100px;
  align-items: stretch;
  justify-content: space-between;
}
.launch-academy-image {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.launch-academy-image img {
  height: 100%;
  width: 90%;
  object-fit: cover;
}
.launch-academy-content {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}
.launch-academy-content button {
  margin-top: 35px;
}
.title-block {
  margin: 20px 0;
  text-align: left;
}
.title-line {
  display: block;
  width: 100%;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
  position: relative;
  margin-bottom: 10px;
}
.title-line::after {
  content: "";
  display: inline-block;
  width: 100%;
}
.decoration {
  height: 36px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
}
.title-text {
  font-weight: 400;
  letter-spacing: 0;
  display: inline-block;
  margin: 0;
}
.line1 .title-text {
  font-size: 45px;
}
.line2 .title-text {
  font-size: 80px;
  font-weight: 700;
}
.line3 .title-text {
  font-size: 55px;
}
.gradient-text {
  background: linear-gradient(90deg, #FF5C00 -1.2%, #FFAC49 101.81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.white-text {
  color: #fff;
}
.bold-text {
  font-weight: 700;
}
.centered-text {
  margin: 0;
  font-size: 18px;
  text-align: center;
}
.connect {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.connect .title {
  color: rgba(80, 80, 80, 0.5);
  font-weight: 700;
  font-size: 90px;
  letter-spacing: -4px;
  margin-bottom: 40px;
}
.connect .row-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.connect .students-img {
  height: 1em;
  width: auto;
  vertical-align: middle;
}
.connect .bold-text {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.4px;
  color: rgba(9, 9, 9, 0.5);
  letter-spacing: -0.96px;
  display: block;
  margin-top: 0;
}
.connect .text {
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 38.4px;
  letter-spacing: -0.96px;
  color: rgba(80, 80, 80, 0.8);
  max-width: 900px;
  margin: 0;
  width: 100%;
}
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}
.testimonial-card {
  background-color: #FFF;
  border-radius: 25px;
  padding: 2rem;
  text-align: left;
  box-shadow: -15px 18px 24px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-author img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
}
.testimonial-author h3 {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
}
.handle {
  font-size: 0.9rem;
  color: #888;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}
.testimonial-title {
  font-size: 1.4rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #444;
}
.testimonial-stars {
  margin-bottom: 0.5rem;
}
.testimonial-star {
  width: 25px;
  height: auto;
  margin-top: 10px;
  margin-right: 5px;
}
.country {
  display: inline-flex;
  align-items: center;
}
.country img {
  width: 18px;
  height: auto;
  margin-right: 5px;
}
.testimonial-date {
  font-size: 0.9rem;
  color: #888;
  text-align: right;
  margin-top: 1rem;
}
.faq-container {
  width: auto;
  margin: 10vh 10%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 5rem 64px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.faq-title h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  color: #2C2C2C;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  position: relative;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  text-align: left;
}
.faq-item input {
  position: absolute;
  left: -9999px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: #2C2C2C;
  padding: 0.8rem 0;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  padding-right: 50px;
}
.faq-question::before {
  content: "＋";
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  right: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.faq-question::after {
  content: "－";
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  right: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
.faq-item hr {
  margin: 0.5rem 0 0;
  border: none;
  border-top: 1px solid #e6e6e6;
}
.faq-item input:checked ~ .faq-answer {
  max-height: 200px;
}
.faq-item input:checked + .faq-question::before {
  opacity: 0;
}
.faq-item input:checked + .faq-question::after {
  opacity: 1;
}
.newsletter-section {
  width: 96%;
  margin: 0 auto;
  background: url("../assets/img/bg_pattern.webp") center center no-repeat;
  background-size: cover;
  border-radius: 20px;
  padding: 5rem 2rem;
  text-align: center;
}
.newsletter-content {
  max-width: 1100px;
  margin: 25px auto;
  color: #fff;
}
.newsletter-text {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.4;
  width: 100%;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 150px;
  max-width: 300px;
  padding: 1.2rem 1rem;
  border: none;
  border-radius: 40px;
  outline: none;
  font-size: 1rem;
  transition: box-shadow 0.3s ease;
}
.newsletter-form input[type="email"]:focus {
  box-shadow: 0 0 10px rgba(255,0,0,0.5);
}
.subscribe-button {
  background: linear-gradient(90deg, #FFAC49 0%, #FF5C00 100%);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  padding: 1.2rem 1rem;
  border: none;
  border-radius: 40px;
  font-size: 1rem;
}
.subscribe-button img {
  width: 20px;
  height: auto;
}
.subscribe-button:hover {
  box-shadow: 0 0 30px #FF9900;
}
.youtube-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
  text-align: center;
}
.youtube-section h2 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 50px;
}
.videos-container {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto 50px auto;
  gap: 3%;
}
.video-wrapper {
  flex: 1;
  aspect-ratio: 16/9;
  border-radius: 30px;
  overflow: hidden;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 30px;
}
.youtube-button img {
  width: 16px;
  height: 16px;
}
.youtube-button:hover {
  box-shadow: 0 0 30px #FF9900;
}
@media (min-width: 1024px) {
  .expansion-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-only {
    display: none;
  }
  .newsletter-form input[type="text"],
  .newsletter-form input[type="email"] {
    margin-right: 5px;
    margin-bottom: 0;
  }
  .subscribe-button {
    margin-left: 5px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  .faq-container {
    grid-template-columns: 1fr;
    margin: 5vh 5%;
    padding: 2rem;
  }
  .launch-academy-section {
    padding: 20px 0 45px;
    width: 95%;
    margin: 0 auto;
  }
  .launch-academy-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .launch-academy-image,
  .launch-academy-content {
    width: 100%;
    text-align: center;
  }
  .launch-academy-image {
    order: 2;
    justify-content: center;
  }
  .launch-academy-content {
    order: 1;
    padding: 0 10px;
    font-size: calc(14px + 1vw);
  }
  .page-content {
    width: 95%;
    margin: 0 auto;
  }
  .expansion {
    width: 95%;
    margin: 6rem auto;
  }
  .connect {
    width: 95%;
  }
  .connect .title {
    font-size: 4rem;
    line-height: 80px;
    letter-spacing: -2px;
  }
  .connect .bold-text,
  .connect .text {
    line-height: 42px;
    letter-spacing: 0;
  }
  .newsletter-section {
    width: 95%;
    margin: 0 auto;
  }
  .newsletter-text {
    font-size: 1.75rem;
  }
  .faq-container {
    width: 95%;
    margin: 10vh auto;
  }
  .videos-container {
    width: 95%;
    margin: 0 auto 50px auto;
  }
  .hero {
    position: relative;
    width: 95%;
    margin: 0 auto;
    margin-top: 2%;
  }
}
@media (max-width: 400px) {
  .line2 .title-text {
    font-size: 2.3rem !important;
  }
  .line3 .title-text {
    font-size: 1.7rem !important;
  }
}
@media (max-width: 766px) {
  .title-block {
    text-align: center;
  }
  .title-line {
    text-align: center;
    text-align-last: center;
    white-space: normal;
  }
  .title-line::after {
    display: none;
  }
  .line1 .title-text {
    font-size: 1.75rem;
  }
  .line2 .title-text {
    font-size: 3rem;
  }
  .line3 .title-text {
    font-size: 2.2rem;
  }
  .testimonials-container {
    grid-template-columns: 1fr;
  }
  .faq-container {
    grid-template-columns: 1fr;
    margin: 5vh 5%;
    padding: 2rem;
  }
  .launch-academy-container {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .launch-academy-image {
    width: 90%;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 1rem;
  }
  .launch-academy-content {
    width: 100%;
    text-align: center;
  }
  .launch-academy-image {
    order: 2;
    justify-content: center;
  }
  .launch-academy-content {
    order: 1;
    padding: 0 10px;
    font-size: calc(14px + 1vw);
    margin-top: 3rem;
  }
  .launch-academy-section {
    padding: 20px 0 35px;
    width: 95%;
    margin: 0 auto;
  }
  .faq-title h2 br {
    display: none;
  }
  .faq-title h2 .after-break::before {
    content: " ";
  }
  .newsletter-text {
    font-size: 1.4rem;
  }
  .youtube-section h2 {
    font-size: 2rem;
  }
  .subscribe-button {
    margin-top: 15px;
  }
  .videos-container {
    flex-direction: column;
    gap: 15px;
    width: 95%;
    margin: 0 auto 50px auto;
  }
  .connect .students-img {
    display: none;
  }
  .connect .title {
    font-size: 3rem;
    line-height: 45px;
    letter-spacing: -2px;
  }
  .connect .bold-text,
  .connect .text {
    font-size: 1.2rem;
    line-height: 35px;
  }
  .hero {
    top: 2%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 96%;
    height: 95vh;
    border-radius: 50px;
    color: #fff;
    overflow: hidden;
    text-align: center;
  }
  .hero-img {
    position: absolute;
    will-change: left, top, transform;
  }
  .hero-img.top-left {
    display: none;
  }
  .hero-img.top-right {
    top: 10%;
    right: 8%;
  }
  .hero-img.bottom-left {
    bottom: 12%;
    left: 8%;
  }
  .hero-img.bottom-right {
    bottom: 5%;
    right: 8%;
  }
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0.9rem;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }
}
@media (max-height: 900px) {
  .hero-text {
    font-size: 1.4rem;
  }
  .hero-text h1 {
    font-size: 1.7rem;
  }
  .hero-text p {
    margin-bottom: 20px;
  }
  .hero-img.bottom-left {
    bottom: 10%;
    left: 8%;
  }
}
@media (max-height: 800px) {
  .hero-text {
    font-size: 1.4rem;
  }
  .hero-text h1 {
    font-size: 1.5rem;
  }
  .hero-text p {
    margin-bottom: 20px;
  }
  .hero-img.bottom-left {
    bottom: 10%;
    left: 8%;
  }
}
@media (max-height: 700px) {
  .hero-text {
    font-size: 1.3rem;
  }
  .hero-text h1 {
    font-size: 1.2rem;
  }
  .hero-img.bottom-left {
    bottom: 10%;
    left: 8%;
  }
}
@media (max-height: 600px) {
  .hero-text {
    font-size: 1.2rem;
  }
}
@media (max-height: 500px) {
  .hero-text {
    font-size: 1.1rem;
  }
}
@media (max-height: 400px) {
  .hero-text {
    font-size: 1rem;
  }
}
.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(5px);
  transition: opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
}
.blur-overlay.active {
  opacity: 1;
}
#menu-toggle:checked ~ .blur-overlay {
  opacity: 1;
  pointer-events: auto;
}
#menu-toggle-sticky:checked ~ .blur-overlay {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 1023px) {
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input[type="text"],
  .newsletter-form input[type="email"] {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }
  .subscribe-button {
    width: 100%;
    margin-top: 0.5rem;
  }
}
