* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Reset Astra Theme Conflicts */
.page-template-page-landing #masthead,
.page-template-page-landing .site-header,
.page-template-page-landing #colophon,
.page-template-page-landing .site-footer,
.page-template-page-landing .ast-container,
.page-template-page-landing .ast-separate-container {
  display: none !important;
}
p.banner-description.hh {
  font-size: 35px;
}
.page-template-page-landing .site {
  padding: 0 !important;
  margin: 0 !important;
}
p.banner-description.main {
  font-size: 24px;
}
.page-template-page-landing .site-content {
  padding: 0 !important;
}

/* Font Face Declarations */
@font-face {
  font-family: "BureauGrotesk";
  src: url("../fonts/BureauGrotesque FiveFive Regular/BureauGrotesque FiveFive Regular.otf")
    format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FoundersGrotesk";
  src: url("../fonts/Founders_Grotesk/FoundersGrotesk-Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FoundersGrotesk";
  src: url("../fonts/Founders_Grotesk/FoundersGrotesk-Bold.otf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FoundersGrotesk";
  src: url("../fonts/Founders_Grotesk/FoundersGrotesk-Medium.otf")
    format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Base Styles */
body {
  font-family: "FoundersGrotesk", "Lato", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Disable background scroll when mobile nav is open */
body.mobile-nav-open,
body.mobile-nav-open html {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: BureauGrotesk, sans-serif;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.container {
  max-width: 1265px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.full-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-100 {
  flex: 0 0 100%;
  width: 100%;
  padding: 15px;
}

.col-50 {
  flex: 0 0 50%;
  width: 50%;
  padding: 15px;
}

.col-33 {
  width: 33.33333%;
  flex: 0 0 33.33333%;
  padding: 15px;
}

.col-25 {
  flex: 0 0 25%;
  width: 25%;
  padding: 15px;
}

.col-20 {
  flex: 0 0 20%;
  width: 20%;
  padding: 15px;
}

ul {
  list-style: none;
}

/* Header Styles */
.landing-header {
  background: #f7f2ed;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.landing-header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  font-family: BureauGrotesk, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.site-logo a img {
  width: 100px;
  border-radius: 50px;
}

.site-logo a {
  color: #000;
  transition: color 0.3s ease;
}

.site-logo a:hover {
  color: #00d4b4;
}

/* Desktop Navigation */
.desktop-nav {
  flex: 1;
  margin-left: 40px;
}

.primary-menu {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu > li {
  position: relative;
}

.primary-menu > li > a {
  font-size: 16px;
  font-weight: 100;
  color: #333;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.primary-menu > li > a:hover {
  color: #00d4b4;
}

/* Chevron Icon */
.menu-chevron {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.primary-menu > li:hover .menu-chevron {
  transform: rotate(180deg);
}

/* Dropdown Menu - Standard */
.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 280px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  max-height: 500px;
  overflow-y: auto;
}

.primary-menu > li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu for Resources (assume it's a specific menu item) */
.primary-menu li.menu-item-has-children .sub-menu {
  min-width: 350px;
}

/* Featured items styling */
.primary-menu .sub-menu li.featured-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  margin: 0;
  border-bottom: 1px solid #e5e5e5;
  transition: background 0.2s ease;
}

.primary-menu .sub-menu li.featured-item:hover {
  background: #f7f7f7;
}

.primary-menu .sub-menu li.featured-item img.menu-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: block;
}

.primary-menu .sub-menu li.featured-item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 0;
  flex: 1;
}

.primary-menu .sub-menu li.featured-item .item-title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  display: block;
}

.primary-menu .sub-menu li.featured-item .item-description {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  display: block;
  font-weight: 400;
}

/* Regular menu items */
.primary-menu .sub-menu li:not(.featured-item) {
  margin: 0;
}

.primary-menu .sub-menu li:not(.featured-item) a {
  color: #333;
  font-size: 15px;
  display: block;
  padding: 12px 20px;
  transition: all 0.2s ease;
}

.primary-menu .sub-menu li:not(.featured-item) a:hover {
  background: #f7f7f7;
  color: #000;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-phone {
  color: #333;
  font-size: 16px;
  margin-right: 40px;
}

span.footer-phone i {
  color: #00d4b4;
}

.btn-login {
  background: #ebded5;
  color: rgb(36, 36, 36);
  border-radius: 4px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 250ms cubic-bezier(0.4, 0, 0.2, 1),
    color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  font-size: 16px;
  padding: 12px 24px;
}

.btn-login:hover {
  background: #e5e5e5;
}

.btn-signup {
  padding: 10px 24px;
  background: #00d4b4;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-signup:hover {
  background: #00bfa0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 999999;
  background-color: #142240 !important;
  border-radius: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh);
  background: #fff;
  z-index: 999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-content {
  padding: 30px 20px;
}

.mobile-header-actions {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-contact-text {
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 10px;
}

.mobile-phone {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

/* Mobile Logo */
.mobile-logo {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.mobile-logo a {
  display: inline-block;
}

.mobile-logo img {
  width: 100px;
  height: auto;
  border-radius: 50px;
  margin: 0 auto;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid #e5e5e5;
}

.mobile-menu-list li a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
}

/* Mobile menu items with children */
.mobile-menu-list .menu-item-has-children > a {
  position: relative;
  padding-right: 30px;
}

/* Chevron for mobile submenu */
.mobile-menu-list .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
  transition: transform 0.3s ease;
}

.mobile-menu-list .menu-item-has-children.open > a::after {
  transform: translateY(-50%) rotate(180deg);
}

/* Hide sub-menu by default */
.mobile-menu-list .sub-menu {
  display: none;
  padding-left: 20px;
}

.mobile-menu-list .menu-item-has-children.open > .sub-menu {
  display: block;
}

.mobile-menu-list .sub-menu li a {
  font-size: 14px;
  text-transform: none;
  padding: 10px 0;
}

.mobile-bottom-cta {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.btn-find-tutor {
  display: block;
  text-align: center;
  padding: 15px;
  background: #00d4b4;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
}

/* Banner Section */
.banner-section {
  padding: 80px 0;
  background: #f7f2ed;
  position: relative;
  overflow: hidden;
}

.banner-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h1.banner-title {
  font-size: 55px;
  font-weight: 400;
  line-height: 1;
  color: rgb(35, 35, 35);
  margin: 0px;
}

.banner-description {
  font-weight: 400;
  line-height: 1.72rem;
  color: rgb(35, 35, 35);
  margin: 40px 50px 10px 0px;
  font-size: 18px;
  font-family: "FoundersGrotesk", "Lato", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans",
    "Droid Sans", "Helvetica Neue", sans-serif;
  max-width: 460px;
}

.subject-search {
  position: relative;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.search-input-wrapper {
  background: #fff;
  overflow: hidden;
  -webkit-box-align: center;
  align-items: center;
  cursor: default;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  transition: border 0.4s;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  box-sizing: border-box;
  border: none;
  outline: 0px !important;
  width: 185px;
  height: 50px;
}

.search-input-wrapper:focus-within {
  border-color: #00d4b4;
}

.subject-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: "FoundersGrotesk", sans-serif;
}

.btn-search {
  padding: 10px 10px;
  border: none;
  cursor: pointer;
  color: #000000;
  transition: background 0.3s ease;
  background: unset;
}

.btn-search:hover {
  background: #00bfa0;
}

/* Subject Dropdown */
.subject-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 2px solid #00d4b4;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 20px;
  display: none;
  z-index: 10;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  overflow-y: auto;
}

.subject-dropdown.active {
  display: block;
}

.dropdown-title {
  font-size: 11px;
  font-weight: 700;
  color: #888;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}

.subject-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 15px;
  list-style: none;
  padding: 0;
}

.subject-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subject-item:hover {
  background: #f5f5f5;
  transform: none;
}

.subject-item-highlighted {
  background: #00d4b4;
}

.subject-item-highlighted:hover {
  background: #00bfa0;
}

.subject-item-highlighted span {
  color: #fff;
}

.subject-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.subject-item span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.view-all-subjects {
  display: inline-block;
  color: #00d4b4;
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}

p.banner-description.main {
  margin-top: 0;
}

.btn-get-started {
  align-self: flex-start;
  font-family: FoundersGrotesk, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.36px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  color: #ffffff !important;
  padding: 14px 40px;
  cursor: pointer;
  color: rgb(35, 35, 35);
  background-color: #18223f;
  border-radius: 4px;
  border: 2px solid #18223f;
  transition: 0.4s;
}

.btn-get-started:hover {
  background: #232f52;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #3752a1;
}

/* Banner Image */
.banner-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-image-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-image {
  z-index: 2;
  width: 60%;
  height: 60%;
  max-width: 608px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-shape1 {
  width: 45%;
  max-width: 256px;
  top: -30%;
  left: 9%;
  z-index: 1;
  position: absolute;
}

.brand-shape2 {
  width: 45%;
  max-width: 256px;
  top: 17%;
  left: 47%;
  z-index: 1;
  position: absolute;
}

/* ================================
   Footer Styles
   ================================ */

.landing-footer {
  background: #f7f2ed;
  color: #333;
  position: relative;
  overflow: hidden;
}

.footer-main {
  padding: 80px 0 60px;
  background-image: url(../images/half-circle-teal.svg),
    url(../images/line-decoration.svg);
  background-position: left -150px bottom -100px, right -100px top 50px;
  background-size: 400px, 500px;
  background-repeat: no-repeat;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.footer-column {
  flex: 1;
}

h3.footer-heading {
  color: rgb(35, 35, 35);
  margin: 16px 0px;
  font-size: 16px;
  font-weight: 100;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: "FoundersGrotesk", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgb(102, 102, 102);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #00a88e;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-link,
.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "FoundersGrotesk", sans-serif;
  font-size: 16px;
  font-weight: 100;
  color: rgb(102, 102, 102);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-link:hover,
.footer-phone:hover {
  color: #00d4b4;
}

.contact-icon,
.phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #00a88e;
}

.footer-social {
  gap: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  max-width: 160px;
  border-top: 1px solid rgb(143, 143, 143);
  padding-top: 24px;
  margin-top: 15px;
}

.social-link {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link svg {
  width: 40px;
  height: 40px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
}

.footer-bottom .copyright {
  margin: 0;
  font-size: 14px;
  color: #666;
  text-align: center;
  font-family: "FoundersGrotesk", sans-serif;
}

/* Footer Security Badges Section */
.footer-security {
  padding: 40px 0;
}

.security-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.security-badge img {
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.security-badge img:hover {
  transform: scale(1.05);
}

/* Footer Brands Section */
.footer-brands {
  padding: 50px 0;
  border-top: 1px solid #e5e5e5;
}

.brands-heading {
  font-family: "BureauGrotesk", sans-serif;
  font-size: 16px;
  font-weight: 100;
  color: #232323;
  text-align: center;
  margin-bottom: 40px;
}

.brands-grid {
  align-items: start;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px 30px;
  padding-bottom: 40px;
  margin-inline: auto;
  max-width: 1200px;
  width: 100%;
}

.brand-item {
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  margin: 0px;
  font-size: 12px;
  color: rgb(102, 102, 102);
  line-height: 1.4;
}

.brand-item::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 60%;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background-color: rgb(143, 143, 143);
}

/* .brand-item:hover {
  transform: translateY(-5px);
} */

.brand-name {
  font-family: "BureauGrotesk", sans-serif;
  margin: 0px 0px 8px;
  font-size: 14px;
  font-weight: 100;
  color: rgb(35, 35, 35);
}

.brand-description {
  font-family: "FoundersGrotesk", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.4;
  margin: 0;
}

/* TrustPilot Review Section */
.review-item {
  border-radius: 8px;
  text-align: center;
}

.tp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.col-20.review-item {
  padding: 0;
  margin: 0;
  justify-content: center;
  display: flex;
  align-items: center;
}

span.pilot-text {
  font-size: 15px;
  font-weight: 400;
}

span.tp-trustpilot-logo {
  margin-top: 10px;
}

.tp-label {
  font-weight: 400;
  font-size: 22px;
  color: #1a1a1a;
  text-decoration: underline;
}

.tp-stars-container {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.stat-item span {
  font-size: 25px;
  font-weight: 500;
}

span.star {
  font-size: 25px;
  color: #00b67a;
}

.tp-star-box {
  width: 20px;
  height: 20px;
  background: #00b67a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.tp-star-box svg {
  width: 100%;
  height: 100%;
}

.tp-logo__star {
  fill: #fff;
}

.tp-logo__star-notch {
  fill: #00b67a;
}

.tp-star-box.half {
  background: #dcdce6;
  position: relative;
  overflow: hidden;
}

section.review-section {
  background-color: rgb(255, 255, 255);
  padding: 35px 0px;
}

.tp-star-box.half::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: #00b67a;
  z-index: 1;
}

.tp-star-box.half svg {
  position: relative;
  z-index: 2;
}

.tp-trustpilot-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #1a1a1a;
  font-weight: 500;
}

.tp-trustpilot-logo svg {
  width: 16px;
  height: 16px;
}

/* Subject Selection Section */
.subject-selection-section {
  background-color: rgb(247, 242, 237);
  padding: 80px 0;
}

.subject-selection-title {
  font-family: BureauGrotesk, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 64px;
  margin: 24px;
  text-align: center;
}

.subject-buttons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.subject-btn {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0px;
  padding: 10px;
  color: rgb(35, 35, 35);
  margin: 0px;
  background-color: rgb(255, 255, 255);
  border-radius: 4px;
  border: 2px solid rgb(255, 255, 255);
}

a.subject-btn.all {
  background-color: rgb(239, 231, 223);
  border: 2px solid rgb(239, 231, 223);
}

a.subject-btn.all:hover {
  color: rgb(35, 35, 35);
  background-color: rgb(3, 204, 187);
  border: 2px solid rgb(3, 204, 187);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 204, 187, 0.3);
}

.subject-btn:hover {
  color: rgb(35, 35, 35);
  background-color: rgb(3, 204, 187);
  border: 2px solid rgb(3, 204, 187);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 204, 187, 0.3);
}

/* Testimonial Slider Section */
.testimonial-section {
  background-color: rgb(247, 242, 237);
  padding: 80px 0;
  overflow: hidden;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-title {
  font-family: BureauGrotesk, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  color: rgb(35, 35, 35);
  margin: 0;
  flex: 1;
  max-width: 800px;
}

.testimonial-title strong {
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.testimonial-prev,
.testimonial-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  color: rgb(35, 35, 35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
  cursor: pointer;
  background: rgb(255, 255, 255);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: rgb(255, 255, 255);
}

.testimonial-prev:focus,
.testimonial-next:focus {
  background-color: rgb(255, 255, 255);
  outline: none;
}

.ast-custom-button:hover .button:hover {
  color: #ffffff;
  background-color: unset !important;
  border-color: unset !important;
}

.testimonial-prev:disabled,
.testimonial-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-slider {
  margin: 0 -15px;
  overflow: hidden;
}

.testimonial-slider .slick-list {
  overflow: hidden;
}

.testimonial-card {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  background-color: rgb(239, 231, 223);
  margin: 0 15px;
  overflow: visible;
  height: 100%;
  max-width: 100%;
  width: 100%;
}

.testimonial-card-header.shape-hexagon {
  background-image: url(../images/hexagon.svg);
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid rgb(233, 234, 235);
  background-position: 1px -9px;
  background-size: 73%;
  background-repeat: no-repeat;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 20px 0px 20px;
  overflow: visible;
  border-top-left-radius: 10px;
  min-height: 150px;
}

.testimonial-card-header.shape-donut {
  background-image: url(../images/donut-green.svg);
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid rgb(233, 234, 235);
  background-position: -20px -20px;
  background-size: 105%;
  background-repeat: no-repeat;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 20px 0px 20px;
  overflow: visible;
  min-height: 150px;
}

.testimonial-card-header.shape-plus {
  background-image: url(../images/plus-bottomleft.svg);
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid rgb(233, 234, 235);
  background-position: 1px -69px;
  background-size: 75%;
  background-repeat: no-repeat;
  position: relative;
  align-items: flex-end;
  justify-content: center;
  padding: 20px 20px 0px 20px;
  overflow: visible;
  border-top-left-radius: 10px;
  min-height: 150px;
}

nav.desktop-nav {
  display: flex;
  justify-content: center;
}

.testimonial-image-wrapper {
  width: 245px;
  height: 245px;
  border-radius: 8px;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-person-image {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

.testimonial-card-body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.testimonial-person-name {
  font-family: BureauGrotesk, sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: rgb(35, 35, 35);
  margin: 0 0 6px 0;
}

.testimonial-person-role {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 16px 0;
  color: rgb(35, 35, 35);
}

.testimonial-quote {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: rgb(35, 35, 35);
  margin: 0 0 16px 0;
  flex: 1;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 400;
  color: rgb(35, 35, 35);
  margin: 0;
}

/* Slick Slider Customization */
.testimonial-slider .slick-track {
  display: flex !important;
}

.testimonial-slider .slick-slide {
  height: inherit !important;
  display: flex !important;
}

.testimonial-slider .slick-slide > div {
  display: flex !important;
  /* height: 100%; */
}

/* ================================
   Learning Steps Section
   ================================ */

.learning-steps-section {
  padding: 80px 0;
  background: #f7f2ed;
}

section.hand-picked {
  padding: 0px 0 40px 0px;
  background: #f7f2ed;
}

section.team {
  background: #f7f2ed;
}

.learning-steps-title {
  font-family: "BureauGrotesk", sans-serif;
  font-size: 48px;
  font-weight: 400;
  text-align: center;
  color: #232323;
  margin-bottom: 60px;
  line-height: 1.2;
}

p.hand-picked-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72rem;
  width: 91%;
  float: left;
  margin: 0px 0px 20px;
  color: rgb(35, 35, 35);
}

section.team figure.hand-picked-image {
  float: unset;
}

h2.hand-picked {
  font-size: 39px;
  font-weight: 300;
  line-height: 1.25em;
  width: 96%;
  float: left;
  margin: 0px 0px 20px;
  color: rgb(35, 35, 35);
}

figure.hand-picked-image {
  padding: 0px;
  width: 96%;
}

figure.hand-picked-image {
  width: 75%;
  float: right;
}

.col-inner.hand {
  padding: 0px;
  width: 96%;
}

.container.hand {
  align-items: center;
  -webkit-box-pack: center;
  margin: 0px auto;
  padding: 48px 96px;
  overflow: hidden;
  display: flex;
}

.learning-step {
  display: flex;
  justify-content: center;
}

.learning-step-card {
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(235, 222, 213);
  border-radius: 16px;
  width: 100%;
  max-width: 360px;
  margin: 24px 14px;
  padding: 20px;
  justify-content: space-around;
}

.learning-step-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  height: 293px;
  margin: 0px auto;
  position: relative;
}

.learning-step-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.learning-step-heading {
  font-family: "BureauGrotesk", sans-serif;
  color: rgb(35, 35, 35);
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  margin: 20px 0px !important;
}

.learning-step-text {
  font-family: "FoundersGrotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
}

section.featured-big {
  font: inherit;
  background-color: rgb(255, 255, 255);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-main {
  width: 1000px;
  margin: 0px auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-evenly;
}

p.featured {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0px;
  padding: 0px 10px 0px 5px;
  margin: 0px;
  color: rgb(35, 35, 35);
}

/* ================================
   FAQ Section
   ================================ */

.faq-section {
  padding: 80px 0;
  background: #f7f2ed;
}

.faq-title {
  color: #232323;
  font-family: BureauGrotesk, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 96px;
  margin: 0px 0px 64px;
}

.faq-accordion {
  margin: 0 auto;
  overflow: hidden;
  max-width: 946px;
  padding: 0px 24px;
  background-color: rgb(255, 255, 255);
  box-shadow: rgba(24, 19, 87, 0.12) 0px 6px 12px -6px,
    rgba(24, 19, 87, 0.08) 0px 8px 24px -4px;
}

.faq-item {
  background: #fff;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  /* border-bottom: 1px solid #e9eaeb; */
}

input[type="text"] {
  box-shadow: unset;
  border: none;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fff;
}

/* .faq-question:hover {
  background: #fafafa;
} */

.faq-question:hover h3 {
  color: #00a88e;
}

.faq-question h3 {
  font-family: "BureauGrotesk", sans-serif;
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
  padding-right: 7%;
  font-size: 25px;
  line-height: 26px;
  font-weight: 500;
  color: rgb(35, 35, 35);
  cursor: pointer;
  position: relative;
}

.faq-wrapper {
  max-width: 946px;
  margin: 0px auto;
}

.faq-item.active .faq-question h3 {
  color: #00a88e;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #00a88e;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #fff;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer-content {
  padding: 0 30px 30px 30px;
}

.faq-answer-content p {
  font-family: "FoundersGrotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #232323;
  line-height: 1.6;
  margin-bottom: 16px;
}

.faq-answer-content p:last-of-type {
  margin-bottom: 16px;
}

.faq-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.faq-links li {
  margin: 0 0 8px 20px;
  padding-left: 0;
  position: relative;
  color: #00a88e;
}

.faq-links li::before {
  content: "●";
  color: #00a88e;
  font-size: 12px;
  position: absolute;
  left: -20px;
  top: 0;
}

.faq-link {
  color: #00a88e;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.2s ease;
}

.faq-link:hover {
  text-decoration: underline;
  color: #00d4b4;
}

.faq-answer-content ol {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  counter-reset: faq-counter;
}

.faq-answer-content ol li {
  counter-increment: faq-counter;
  margin-bottom: 16px;
  padding-left: 0;
  position: relative;
  font-family: "FoundersGrotesk", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #232323;
  line-height: 1.6;
}

.faq-answer-content ol li::before {
  content: counter(faq-counter) ".";
  font-weight: 500;
  margin-right: 8px;
  color: #232323;
}

section.faq-section {
  width: 100%;
  height: 100%;
  background-image: url(../images/plus-big.svg), url(../images/circle-green.svg);
  background-position: left -420px bottom -400px, right -300px top -200px;
  background-size: 1100px, 800px;
  background-repeat: no-repeat;
}

section.subjects {
  font: inherit;
  background-color: rgb(255, 255, 255);
  height: 75px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: space-around;
  padding: 0px 45px;
}

p.subject-text {
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0px;
  color: rgb(35, 35, 35);
}

.row.subjects {
  display: flex;
  gap: 31px;
  align-items: center;
  justify-content: center;
}

section.free-study,
section.find-a-tutor {
  background: #f7f2ed;
}

.free-study-wrapper {
  max-width: 1034px;
  margin: 0px auto;
  display: flex;
  flex-direction: row;
  padding: 80px 40px 40px;
}

.free-study-content {
  flex: 2 1 0%;
  background-image: url(../images/book.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 90% center;
  max-width: 750px;
}

h2.free-study-title {
  font-family: BureauGrotesk;
  font-size: 88px;
  line-height: 94px;
  margin: 0px;
  color: #232323;
}

.explore-resource {
  flex: 1 1 0%;
  min-width: 284px;
  max-width: 284px;
  margin: auto 0px;
}

p.explore-resource {
  margin: 0px 0px 20px;
}

a.explore-resource-link {
  font-family: FoundersGrotesk, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.36px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  padding: 14px 0px;
  cursor: pointer;
  color: rgb(35, 35, 35);
  background-color: rgb(3, 204, 187);
  border-radius: 4px;
  border: 2px solid rgb(3, 204, 187);
  transition: 0.4s;
}

a.explore-resource-link:hover {
  color: #ffffff;
  transition: 0.1s all ease-in-out;
}

section.find-a-tutor {
  display: flex;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  padding: 38px 16px;
  background-image: url(../images/pink-square.svg),
    url(../images/yellow-donut.svg);
  background-position: left -725px top -200px, right -800px bottom 25px;
  background-size: 1000px, 1300px;
  background-repeat: no-repeat;
}

.col-inner.find {
  max-width: 680px;
  text-align: center;
  margin: 0 auto 40px auto;
}

h2.find-a-tutor {
  font-size: 36px;
  font-weight: 500;
  line-height: 40px;
  color: #232323;
  margin-bottom: 30px;
}

a.find-tutor {
  font-family: FoundersGrotesk, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.36px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  width: 100%;
  padding: 12px 13px;
  cursor: pointer;
  color: rgb(35, 35, 35);
  background-color: rgb(3, 204, 187);
  border-radius: 4px;
  border: 2px solid rgb(3, 204, 187);
  transition: 0.4s;
  width: fit-content;
}

a.find-tutor:hover {
  color: #ffffff;
  transition: 0.1s all ease-in-out;
}

footer.landing-footer {
  background-color: rgb(247, 242, 237);
  background-image: url(../images/lines.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

a.footer-contact-link img {
  width: 16px;
}

a.footer-phone img {
  width: 16px;
}

.security-img img {
  width: 25px;
}

h5.ceop-title,
h5.cyber-title {
  font-size: 12px;
  margin: 0;
  color: #232323;
  font-weight: 500;
}

.security-badge.sage-pay {
  flex-direction: column;
}

.security-badge.sage-pay {
  flex-direction: column;
  gap: 1px;
}

p.ceop-description,
p.cyber-description {
  margin: 0;
  color: rgb(35, 35, 35);
  font-size: 14px;
}

.cyber-img img {
  width: 49px;
}

@media (max-width: 1900px) {
  section.find-a-tutor {
    background-size: 1000px, 1300px;
    background-position: left -725px top -200px, right -925px bottom 25px;
  }
}

/* Responsive adjustments */
@media (max-width: 1180px) {
  .banner-title {
    font-size: 48px;
  }

  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .container {
    padding: 0 30px;
  }

  .primary-menu {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .subjects-select-title {
    font-size: 24px;
  }

  .subjects-buttons-wrapper {
    justify-content: flex-start;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 15px;
  }

  .footer-security {
    padding: 30px 0;
  }

  .security-badges {
    gap: 40px;
  }

  .footer-brands {
    padding: 40px 0;
  }

  .brands-heading {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .footer-main {
    padding: 60px 0 40px;
    background-size: 300px, 400px;
    background-position: left -100px bottom -80px, right -80px top 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-column {
    width: 100%;
  }

  /* Hide desktop nav, show mobile */
  .desktop-nav {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  /* Banner adjustments */
  .banner-title {
    font-size: 40px;
  }

  .col-50 {
    flex: 0 0 100%;
    width: 100%;
  }

  .banner-image-wrapper {
    margin-top: 40px;
    order: 2;
  }

  .subject-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Review section */
  .col-25 {
    flex: 0 0 50%;
    width: 50%;
    margin-bottom: 20px;
  }

  .col-20 {
    flex: 0 0 50%;
    width: 50%;
    margin-bottom: 20px;
  }

  .subject-selection-section {
    padding: 60px 0;
  }

  .subject-selection-title {
    font-size: 32px;
    margin: 0 0 40px 0;
  }

  .subject-buttons-grid {
    gap: 12px;
    padding: 0 20px;
  }

  .subject-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  .testimonial-section {
    padding: 60px 0;
  }

  .testimonial-header {
    margin-bottom: 40px;
  }

  .testimonial-title {
    font-size: 36px;
  }

  .testimonial-person-name {
    font-size: 24px;
  }

  .testimonial-quote {
    font-size: 17px;
  }

  .learning-steps-section {
    padding: 60px 0;
  }

  .learning-steps-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .learning-step-card {
    padding: 30px 25px;
  }

  .learning-step-image {
    height: 180px;
  }

  .faq-section {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-answer-content {
    padding: 0 24px 24px 24px;
  }

  .faq-question h3 {
    font-size: 18px;
  }

  .faq-answer-content p {
    font-size: 15px;
  }

  .faq-link {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mobile-bottom-cta {
    border-top: unset;
  }

  .testimonial-section {
    padding: 50px 0;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 35px;
  }

  .testimonial-title {
    font-size: 30px;
  }

  .testimonial-nav {
    align-self: flex-end;
  }

  .testimonial-prev,
  .testimonial-next {
    width: 44px;
    height: 44px;
  }

  .testimonial-card-body {
    padding: 20px 18px;
  }

  .testimonial-person-name {
    font-size: 22px;
  }

  .testimonial-quote {
    font-size: 16px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-description {
    font-size: 12px;
  }

  .security-badges {
    gap: 30px;
  }

  .security-badge img {
    height: 40px;
  }

  .footer-main {
    padding: 50px 0 30px;
    background-size: 250px, 300px;
  }

  .footer-heading {
    font-size: 17px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-contact-link,
  .footer-phone {
    font-size: 15px;
  }

  .subject-selection-section {
    padding: 50px 0;
  }

  .subject-selection-title {
    font-size: 28px;
    margin: 0 0 35px 0;
  }

  .subject-buttons-grid {
    gap: 10px;
  }

  .subject-btn {
    padding: 11px 20px;
    font-size: 14px;
  }

  .learning-steps-section .col-33 {
    flex: 0 0 100%;
    width: 100%;
  }

  .learning-steps-row {
    flex-direction: column;
    gap: 30px;
  }

  .learning-steps-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .learning-step-heading {
    font-size: 22px;
  }

  .learning-step-text {
    font-size: 15px;
  }

  .learning-step-card {
    padding: 25px 20px;
  }

  .learning-step-image {
    height: 160px;
    margin-bottom: 20px;
  }

  .faq-section {
    padding: 50px 0;
  }

  .faq-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .faq-question {
    padding: 18px 20px;
  }

  .faq-answer-content {
    padding: 0 20px 20px 20px;
  }

  .faq-question h3 {
    font-size: 17px;
  }

  .faq-icon {
    width: 18px;
    height: 18px;
  }

  .faq-link {
    font-size: 14px;
  }

  .faq-links li {
    margin-left: 18px;
  }

  .faq-links li::before {
    left: -18px;
  }
}

@media (max-width: 600px) {
  .subjects-select-title {
    font-size: 20px;
    text-align: left;
  }

  p.subject-text {
    text-align: center;
    background-color: rgb(3, 204, 187);
    color: #000;
  }

  h2.find-a-tutor {
    font-size: 18px;
  }

  .featured-main {
    flex-direction: column;
    gap: 25px;
    margin: 40px 0px;
  }

  .mobile-bottom-cta {
    border-top: unset;
  }

  section.subjects {
    height: unset;
    margin: 55px;
  }

  p.explore-resource {
    margin-top: 30px;
  }

  h2.free-study-title {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 35px;
  }

  section.find-a-tutor {
    background-size: 750px, 300px;
    background-position: left -680px top -50px, right -220px bottom 0px;
  }

  .subject-button {
    padding: 10px 16px;
    font-size: 14px;
  }

  .banner-section {
    padding: 40px 0;
  }

  .banner-title {
    font-size: 32px;
  }

  .banner-description {
    font-size: 16px;
  }

  .subject-list {
    grid-template-columns: 1fr;
  }

  .btn-get-started {
    width: 100%;
    text-align: center;
  }

  /* Review section mobile */
  .col-25 {
    flex: 0 0 100%;
    width: 100%;
  }

  .col-20 {
    flex: 0 0 100%;
    width: 100%;
  }

  .stat-number {
    font-size: 28px;
  }

  .brand-image {
    width: 80%;
  }

  .brand-shape1,
  .brand-shape2 {
    width: 60%;
  }

  .subject-selection-section {
    padding: 40px 0;
  }

  .subject-selection-title {
    font-size: 24px;
    margin: 0 0 30px 0;
    padding: 0 15px;
  }

  .subject-buttons-grid {
    gap: 8px;
    padding: 0 15px;
  }

  .subject-btn {
    padding: 10px 18px;
    font-size: 14px;
    flex: 0 1 calc(50% - 4px);
    text-align: center;
  }

  .testimonial-section {
    padding: 40px 0;
  }

  .testimonial-title {
    font-size: 24px;
  }

  .testimonial-prev,
  .testimonial-next {
    width: 40px;
    height: 40px;
  }

  .testimonial-prev svg,
  .testimonial-next svg {
    width: 18px;
    height: 18px;
  }

  .testimonial-slider {
    margin: 0 -10px;
  }

  .testimonial-card {
    margin: 0 10px;
  }

  .testimonial-card-header {
    min-height: 120px;
    background-size: 130%;
    background-position: -15px -15px;
  }

  .testimonial-card-body {
    padding: 20px 18px;
  }

  .testimonial-person-name {
    font-size: 20px;
  }

  .testimonial-person-role {
    font-size: 14px;
  }

  .testimonial-quote {
    font-size: 15px;
    margin-bottom: 15px;
  }

  .testimonial-author {
    font-size: 14px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    padding: 16px 18px;
  }

  .faq-answer-content {
    padding: 0 18px 18px 18px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer-content p {
    font-size: 14px;
  }

  .faq-link {
    font-size: 13px;
  }

  .subject-selection-title {
    font-size: 20px;
  }

  .subject-btn {
    padding: 9px 16px;
    font-size: 13px;
  }

  .testimonial-title {
    font-size: 20px;
  }

  .testimonial-card-header {
    min-height: 100px;
    background-size: 120%;
    background-position: -10px -10px;
  }

  .footer-main {
    padding: 40px 0 20px;
    background-size: 200px, 250px;
    background-position: left -80px bottom -60px, right -60px top 20px;
  }

  .footer-content {
    gap: 30px;
  }

  .footer-heading {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-social {
    gap: 10px;
  }

  .social-link svg {
    width: 36px;
    height: 36px;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .security-badges {
    flex-direction: column;
    gap: 20px;
  }

  .featured-main {
    flex-wrap: unset !important;
  }
}

section.learning-being-btn .get-started-btn {
  width: fit-content;
  margin: 0 auto;
}

span.email i {
  color: #03ccbb;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: #f7f2ed;
}

.features-main-title {
  font-size: 48px;
  margin-bottom: 60px;
  text-align: center;
  color: #18223f;
  font-family: BureauGrotesk, sans-serif;
  position: relative;
}

.features-main-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #00d4b4;
  margin: 15px auto 0;
  border-radius: 2px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.feature-card {
  background: #f7f2ed;
  padding: 50px 35px;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: calc(33.333% - 20px);
  min-width: 300px;
  border: 1px solid #000000ba;
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.09);
  border-color: #00d4b4;
  cursor: pointer;
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.feature-card-title {
  font-size: 24px;
  margin-bottom: 18px;
  color: #18223f;
  line-height: 1.2;
  font-family: BureauGrotesk, sans-serif;
}

.feature-card-desc {
  font-size: 17px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1100px) {
  .feature-card {
    width: calc(50% - 15px);
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 60px 0;
  }

  .mobile-bottom-cta {
    border-top: unset;
  }

  .features-main-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .feature-card {
    width: 100%;
    padding: 40px 25px;
  }

  .feature-card-title {
    font-size: 22px;
  }
}

/* Curriculum Section */
.curriculum-section {
  padding: 100px 0;
  background-color: #f7f2ed;
  color: #000000;
}

.curriculum-header {
  text-align: center;
  margin-bottom: 70px;
}

.curriculum-title {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  font-family: BureauGrotesk, sans-serif;
}

.curriculum-subtitle {
  font-size: 19px;
  color: #a5adc6;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 20px;
  max-width: 1265px;
  margin: 0 auto;
}

.curriculum-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 35px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: default;
  border: 1px solid #000000;
}

.curriculum-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: #00d4b4;
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

div#ast-scroll-top {
  background-color: #142240 !important;
}

.curriculum-icon {
  width: 54px;
  height: 54px;
  background: rgba(0, 212, 180, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4b4;
  transition: all 0.3s ease;
}

.curriculum-item:hover .curriculum-icon {
  background: #00d4b4;
  color: #18223f;
  transform: rotate(-5deg) scale(1.1);
}

.curriculum-icon svg {
  width: 28px;
  height: 28px;
}

.curriculum-info h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #000000;
  font-family: BureauGrotesk, sans-serif;
  letter-spacing: 0.5px;
}

.curriculum-info p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.5;
}

/* Curriculum Responsive */
@media (max-width: 1024px) {
  .curriculum-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .curriculum-section {
    padding: 70px 0;
  }

  .curriculum-title {
    font-size: 34px;
  }

  .curriculum-subtitle {
    font-size: 17px;
  }

  .curriculum-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .curriculum-item {
    padding: 30px;
    align-items: center;
    text-align: center;
  }

  .curriculum-icon {
    margin-bottom: 5px;
  }
}

.curriculum-title {
  color: #000000;
}

.curriculum-subtitle {
  color: #3b3e44;
}

span.footer-phone i {
  font-size: 19px;
}

.header-actions span i {
  font-size: 20px;
}
