body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Section 1, home + navbar section */

.mayreni-navbar {
  background: #f25b5b;
  padding: 25px 50px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.mayreni-navbar .navbar-brand {
  font-size: 28px;
  letter-spacing: 1px;
}

.navbar .container{
  max-width: 100% !important;
}

.mayreni-navbar .nav-link {
  color: #ffffff;
  font-size: 23px;
  font-weight: 200;
}

.mayreni-navbar .nav-link.active,
.mayreni-navbar .nav-link:hover {
  opacity: 0.85;
  color: #ffe7e7;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.hero-section {
  min-height: 100vh;
  background: #f25b5b;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
}

.hero-title-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.title-pill {
  padding: 18px 48px;
  border-radius: 20px;
  font-size: 48px;
  line-height: 1.1;
}

.pill-white {
  background: #ffffff;
  color: #f25b5b;
}

.pill-pink {
  background: #ffe7e7;
  color: #f25b5b;
}

.hero-subtitle {
  font-size: 22px;
  color: #ffffff;
  opacity: 0.95;
}

.hero-btn {
  background: #ffffff;
  color: #f25b5b;
  border-radius: 100px;
  padding: 10px 25px;
  font-size: 20px;
  border: none;
}

.hero-btn:hover {
  background: #ffe7e7;
  color: #f25b5b;
}

.hero-icon {
  position: absolute;
  width: 140px;
  opacity: 0.9;
}

.icon-book {
  top: 20%;
  left: 3%;
}

.icon-pen {
  top: 20%;
  right: 3%;
}

.icon-cloud {
  bottom: 10%;
  left: 3%;
}

.icon-globe {
  bottom: 10%;
  right: 3%;
}


@media (max-width: 992px) {
  .hero-icon {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .hero-icon {
    width: 80px;
  }
  .mayreni-navbar{
    padding: 25px;
  }

  .title-pill {
    font-size: 32px;
    padding: 14px 32px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
  .mayreni-navbar .navbar-collapse {
    background: rgba(242, 91, 91, 0.98);
    padding: 16px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }
  .navbar-toggler:focus {
    box-shadow: none
  }

  .mayreni-navbar .nav-link {
    padding: 10px 0;
  }
}


/* Section 2, welcome section */

.welcome-section {
  padding: 120px 0;
  background: #ffffff;
}

.welcome-title {
  font-size: 56px;
  color: #f25b5b;
  font-weight: 200;
}

.welcome-highlight {
  background: #ffe7e7;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 600;
}

.welcome-subtitle {
  font-size: 28px;
  color: #f25b5b;
  margin-top: 32px;
  font-weight: 200;
}

.welcome-card {
  border-radius: 24px;
  padding: 40px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.welcome-card:hover {
  transform: scale(1.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.welcome-card img {
  width: 120px;
  margin-bottom: 24px;
}

.welcome-card p {
  font-size: 22px;
  text-align: center;
  line-height: 1.4;
}

.bg-red {
  background: #f25b5b;
  color: #ffffff;
}

.bg-pink {
  background: #ffe7e7;
  color: #f25b5b;
}

@media (max-width: 768px) {
  .welcome-title {
    font-size: 36px;
  }

  .welcome-subtitle {
    font-size: 20px;
  }

  .welcome-card img {
    width: 80px;
  }

  .welcome-card p {
    font-size: 18px;
  }

  .welcome-card:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Section 3, languages section */


.languages-section {
  background: #ffecec;
  padding: 120px 0 160px;
}

.languages-title {
  font-size: 48px;
  color: #f25b5b;
  margin-bottom: 80px;
  font-weight: 200;
}

.languages-pill {
  background: #f25b5b;
  color: #FFE8E8;
  padding: 10px 28px;
  border-radius: 20px;
  font-weight: 600;
}

.languages-image-wrapper {
  display: flex;
  justify-content: center;
}

.languages-image-wrapper img {
  max-width: 100%;
  height: auto;
}

.languages-bottom {
  margin-top: 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.languages-question {
  font-size: 48px;
  color: #f25b5b;
  text-align: left;
  line-height: 1.2;
  font-weight: 600;
}

.languages-loop {
  position: relative;
  max-width: 420px;
}

.languages-loop img {
  width: 100%;
}

@media (max-width: 992px) {
  .languages-bottom {
    flex-direction: column;
    text-align: center;
  }

  .languages-question {
    text-align: center;
    font-size: 36px;
  }

  .languages-loop {
    max-width: 320px;
  }
}

@media (max-width: 576px) {
  .languages-title {
    font-size: 27px;
    margin-bottom: 48px;
  }
  
  .languages-pill{
    padding: 10px 15px;
  }

  .languages-question {
    font-size: 28px;
  }
}

/* Section 4, about us section */


.about-section {
  padding: 120px 0;
  overflow: hidden;
}

.about-block {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 64px 96px;
  margin-bottom: 120px;
  max-width: 1200px;
  width: fit-content;
}

.about-block-red {
  background: #f25b5b;
  margin-left: auto;
  border-top-left-radius: 32px;
  border-bottom-left-radius: 32px;
}

.about-block-pink {
  background: #ffe7e7;
  margin-right: auto;
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
}

.about-text {
  font-size: 22px;
  line-height: 1.65;
  max-width: 520px;
}

.text-white {
  color: #ffffff;
}

.text-red {
  color: #f25b5b;
}

.about-image img {
  max-width: 380px;
  height: auto;
  display: block;
}

@media (min-width: 1400px) {
  .about-block {
    padding: 72px 120px;
    gap: 64px;
  }

  .about-text {
    font-size: 24px;
  }

  .about-image img {
    max-width: 420px;
  }
}

@media (max-width: 1200px) {
  .about-block {
    max-width: 1000px;
    padding: 56px 80px;
  }

  .about-text {
    font-size: 21px;
  }

  .about-image img {
    max-width: 340px;
  }
}

@media (max-width: 992px) {
  .about-section {
    padding: 120px 50px;
  }

  .about-block {
    flex-direction: column;
    align-items: center;

    width: auto;
    max-width: none;

    padding: 48px 40px;
    margin: 0 24px 96px;

    border-radius: 32px;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
    font-size: 20px;
  }

  .about-image img {
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 80px 0;
  }

  .about-block {
    padding: 32px 24px;
    margin-bottom: 64px;
    gap: 24px;
  }

  .about-text {
    font-size: 18px;
    line-height: 1.6;
  }

  .about-image img {
    max-width: 240px;
  }
}

/* Section 5, book session section */


.cta-section {
  background: #f25b5b;
  padding: 120px 0;
}

.cta-title {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 100px;
  font-weight: 400;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.cta-left,
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cta-pill {
  background: #ffffff;
  color: #f25b5b;
  padding: 24px 48px;
  border-radius: 32px;
  font-size: 32px;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

.cta-left .cta-pill:first-child {
  font-size: 30px;
  padding: 20px 56px;
}

.cta-left .cta-pill:last-child {
  font-size: 30px;
  padding: 20px 44px;
}


.cta-pill-bold {
  font-weight: 700;
}

.cta-text {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.4;
  max-width: 520px;
}

.cta-email {
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 992px) {
  .cta-content {
    flex-direction: column;
    text-align: center;
  }

  .cta-text {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .cta-pill {
    font-size: 22px;
    padding: 16px 32px;
  }

  .cta-text {
    font-size: 20px;
  }
    .cta-left .cta-pill:first-child {
    font-size: 28px;
    padding: 20px 36px;
  }

  .cta-left .cta-pill:last-child {
    font-size: 22px;
    padding: 16px 32px;
  }
}

/* footer section */

.footer-section {
  background: #ffe7e7;
  padding: 120px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  font-size: 56px;
  color: #f25b5b;
  font-weight: 600;
  margin-bottom: 32px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 32px;
  color: #f25b5b;
  text-decoration: none;
  font-weight: 200;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-follow {
  font-size: 32px;
  color: #f25b5b;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 32px;
}

.footer-socials a {
  width: 80px;
  height: 80px;
  background: #f25b5b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  text-decoration: none;
}

.footer-socials a:hover {
  background: #fa6f6f;
}

.footer-bottom {
  margin-top: 80px;
  text-align: center;
  font-size: 18px;
  color: #f25b5b;
}

@media (max-width: 992px) {
  .footer-content {
    flex-direction: column;
    gap: 80px;
    align-items: center;
    text-align: center;
  }

  .footer-links a {
    font-size: 24px;
  }

  .footer-follow {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .footer-brand {
    font-size: 40px;
  }

  .footer-socials a {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }

  .footer-bottom {
    font-size: 14px;
  }
}
