/* Add padding to the body to prevent content from being hidden under the navbar */

body {
  font-family: 'Funnel Sans', sans-serif;
  margin: 0;
  /* background: #ffffff; */
  background: #f5f5f5;
}

/* Navbar */
.nav-logo img {
  max-height: 40px;
  width: auto;
}

.navbar {
  position: fixed;
  /* Fix the navbar at the top */
  top: 0;
  /* Align to the top of the viewport */
  width: 100%;
  /* Ensure it spans the full width */
  z-index: 1000;
  /* Keep it above other content */
  padding: 0px 0px;
  font-family: "Funnel Sans", sans-serif;
  background-color: #FBFAF3;
  /* Ensure background color is set */
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-link-style {
  font-family: "Funnel Sans", sans-serif;
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 500;
}

/* Ensure the container-fluid inside the navbar respects the fixed positioning */
.navbar>.container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0px, 0vw, 0px) clamp(0px, 5vw, 50px) clamp(0px, 0vw, 0px) !important;
}

/* Media query for responsiveness */
@media (max-width: 576px) {
  .nav-logo img {
    max-height: 30px;
  }

  .nav-link-style {
    font-size: 16px;
  }

  body {
    padding-top: 60px;
    /* Adjust padding for smaller screens */
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    gap: 104px;
  }
}


/* hero section */
.rocket-icon {
  width: 104px;
  position: relative;
  height: 104px;
  object-fit: cover;
}

.rocket-shadow {
  width: 61px;
  position: relative;
  border-radius: 50%;
  background-color: #e8e5d2;
  height: 10px;
}

.rocket-group {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 48px;
}

.rocket {
  width: 102px;
  position: relative;
  height: 160px;
}

.span {
  background: linear-gradient(197.87deg, #568dfe, #7c83fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.is-easy {
  color: #f5797f;
}

.getting-started-is-container {
  align-self: stretch;
  position: relative;
}

.getting-started-is-easy-wrapper {
  width: 479px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.rocket-parent {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  font-size: 64px;
  color: #1c1c1c;
  font-family: 'Funnel Display';
}

.frame-child {
  width: 906px;
  position: relative;
  border-radius: 56px;
  height: 740ox;
}

.frame-child video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 56px;
}

.frame-parent {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 96px 80px;
  box-sizing: border-box;
  gap: 0px;
  text-align: center;
  font-size: 64px;
  color: #1c1c1c;
  font-family: 'Funnel Display';
  top: 30px;
  bottom: 30px;
}

.rectangle-div {
  width: 100%;
  position: relative;
  border-radius: 56px;
  height: 740px;
}

/* For MacBook Air (targeting 1440x900 and 2560x1600 scaled, with Retina support) */
@media only screen and (min-width: 1366px) and (max-width: 1440px) and (min-resolution: 140dpi),
only screen and (min-width: 1366px) and (max-width: 1440px) and (-webkit-min-device-pixel-ratio: 1.5) {
  .frame-parent {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 96px 80px !important;
    gap: 0px !important;
  }

  .rocket-parent {
    width: 50% !important;
  }

  .frame-child {
    width: 906px !important;
    height: 740px !important;
  }

  .rectangle-div {
    height: 740px !important;
  }

  .frame-child video {
    width: 100% !important;
    height: 100% !important;
    border-radius: 56px !important;
  }

  .getting-started-is-easy-wrapper {
    width: 479px !important;
  }

  .getting-started-is-container {
    font-size: 64px !important;
    display: inline !important;
  }

  .getting-started {
    display: inline !important;
  }

  .is-easy {
    display: inline !important;
  }

  .rocket-icon {
    width: 104px !important;
    height: 104px !important;
  }

  .rocket-shadow {
    width: 61px !important;
    height: 10px !important;
  }

  .rocket-group {
    gap: 48px !important;
  }

  .rocket {
    height: 160px !important;
  }
}

/* For large tablets and small desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .frame-parent {
    padding: 80px 60px;
    gap: 40px;
  }

  .rocket-parent {
    width: 45%;
  }

  .frame-child {
    width: 55%;
    height: auto;
  }

  .rectangle-div {
    position: relative;
    height: 0;
    padding-bottom: 81.6777%;
    /* 740/906 * 100% for aspect ratio */
  }

  .frame-child video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .getting-started-is-easy-wrapper {
    width: 100%;
  }

  .getting-started-is-container {
    font-size: 52px;
  }

  .rocket-icon {
    width: 90px;
    height: 90px;
  }

  .rocket-shadow {
    width: 50px;
    height: 8px;
  }

  .rocket-group {
    gap: 40px;
  }

  .rocket {
    height: 140px;
  }
}

/* For tablets (max-width: 992px) */
@media (max-width: 992px) {
  .frame-parent {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    gap: 40px;
  }

  .rocket-parent {
    width: 100%;
    order: 1;
    /* Text above video on smaller screens */
  }

  .frame-child {
    width: 100%;
    order: 2;
  }

  .getting-started-is-container {
    font-size: 48px;
  }
}

/* For mobile landscape and small tablets (max-width: 768px) */
@media (max-width: 768px) {
  .frame-parent {
    padding: 50px 30px;
    gap: 30px;
    margin-top: 30px;
  }

  .getting-started-is-container {
    font-size: 40px;
    display: flex;
    flex-direction: column;
  }

  .getting-started {
    display: inline-block;
  }

  .is-easy {
    display: inline-block;
  }

  .rocket-icon {
    width: 80px;
    height: 80px;
  }

  .rocket-shadow {
    width: 45px;
    height: 7px;
  }

  .rocket-group {
    gap: 30px;
  }

  .rocket {
    height: 120px;
  }

  .rectangle-div {
    border-radius: 40px;
  }

  .frame-child video {
    border-radius: 40px;
  }
}

/* For small mobile (max-width: 576px) */
@media (max-width: 576px) {
  .frame-parent {
    padding: 40px 20px;
    gap: 20px;
    top: 20px;
    bottom: 20px;
  }

  .getting-started-is-container {
    font-size: 32px;
    display: flex;
    flex-direction: column;
  }

  .getting-started {
    display: inline-block;
  }

  .is-easy {
    display: inline-block;
  }

  .rocket-icon {
    width: 70px;
    height: 70px;
  }

  .rocket-shadow {
    width: 40px;
    height: 6px;
  }

  .rocket-group {
    gap: 20px;
  }

  .rocket {
    height: 100px;
  }

  .rectangle-div {
    border-radius: 28px;
  }

  .frame-child video {
    border-radius: 28px;
  }
}

/* For very small screens (max-width: 400px) */
@media (max-width: 400px) {
  .getting-started-is-container {
    font-size: 28px;
    display: flex;
    flex-direction: column;
  }

  .getting-started {
    display: inline-block;
  }

  .is-easy {
    display: inline-block;
  }

  .frame-parent {
    padding: 30px 15px;
  }
}

@media only screen and (min-width: 1201px) and (max-width: 1540px) {

  /* 1. Stack items vertically */
  .frame-parent {
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px !important;
    padding: 60px 40px !important;
  }

  /* 2. Set text and video containers to take up full width */
  .rocket-parent,
  .frame-child {
    width: 100% !important;
  }

  /* 3. Ensure the text appears on top */
  .rocket-parent {
    order: 1 !important;
  }

  /* 4. Ensure the video appears below and is not too wide */
  .frame-child {
    order: 2 !important;
    /* max-width: 906px; Prevents video from becoming too large */
  }

  /* 5. Keep heading text on one line */
  .getting-started-is-container {
    font-size: 60px !important;
    /* Slightly smaller font for this range */
    white-space: nowrap;
    /* Prevents text from wrapping */
  }

  /* 6. Maintain video aspect ratio */
  .rectangle-div {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 50%;
    /* Aspect Ratio (740 / 906) */
  }

  .frame-child video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .getting-started-is-easy-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto !important;
  }
}

@media (min-width: 1541px) {

  /* 1. Restore the side-by-side flex layout */
  .frame-parent {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 96px 80px !important;
    gap: 0px !important;
  }

  /* 2. Restore the original widths for text and video */
  .rocket-parent {
    width: 50% !important;
  }

  .frame-child {
    width: 906px !important;
    height: 740px !important;
  }

  /* 3. Restore video container height */
  .rectangle-div {
    height: 740px !important;
    padding-bottom: 0;
    /* Remove padding-bottom from the previous media query */
  }

  /* 4. Restore absolute positioning for video if it was removed */
  .frame-child video {
    position: relative;
    /* Or static, depending on original CSS */
  }
}


/* Main Container for the Learning Lab Section */
.learninglab-main-container {
  width: 100%;
  background-color: #fff;
  border-radius: 80px;
  padding: 80px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
}

/* Title Section */
.learninglab-title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.learninglab-title-container {
  font-family: 'Funnel Display', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0;
}

.learninglab-child-title {
  color: #f5797f;
}

.learninglab-description {
  max-width: 778px;
  font-size: 32px;
  line-height: 1.4;
}

/* Cards Wrapper - No styles on desktop */
.learninglab-cards-wrapper {
  width: 100%;
}

/* Cards Container (Desktop) */
.learninglab-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  min-height: 460px;
}

.learninglab-card-row {
  display: contents;
  /* Behaves as if the div isn't there on desktop */
}

/* Individual Card Styling (Desktop) */
.learninglab-card {
  position: relative;
  border-radius: 32px;
  padding: 140px 20px 40px;
  width: calc(25% - 15px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 420px;
}

/* Card Background Colors */
.learninglab-card1 {
  background-color: #ffebb4;
}

.learninglab-card2 {
  background-color: #b4f0ff;
}

.learninglab-card3 {
  background-color: #ffd8f4;
}

.learninglab-card4 {
  background-color: #ffd1d8;
}

/* Card Image Wrapper (Desktop) */
.learninglab-image-wrapper {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learninglab-image {
  max-width: 210px;
  max-height: 250px;
  object-fit: contain;
  border-radius: 0px 0px 100px 100px;
}

/* Card Content (Desktop) */
.learninglab-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.learninglab-card-title {
  font-size: 24px;
  font-weight: 700;
}

.learninglab-card-text {
  font-size: 20px;
  line-height: 1.5;
  margin: 0;
}


/* --- Responsive Styles --- */

/* Tablet view */
@media (max-width: 1200px) and (min-width: 768px) {
  .learninglab-main-container {
    padding: 60px 40px;
  }

  .learninglab-card {
    width: calc(50% - 10px);
    margin-top: 100px;
  }

  .learninglab-title-container {
    font-size: 48px;
  }

  .learninglab-description {
    font-size: 28px;
  }
}

/* --- MOBILE VIEW STYLES (As per image) --- */
@media (max-width: 767px) {
  .learninglab-main-container {
    padding: 40px 20px;
    border-radius: 40px;
    gap: 30px;
  }

  .learninglab-title-container {
    font-size: 32px;
  }

  .learninglab-description {
    font-size: 20px;
  }

  /* Wrapper for the dotted border */
  .learninglab-cards-wrapper {
    /* border: 2px dotted #007bff; */
    border-radius: 20px;
    /* padding: 15px; */
    padding-top: 55px;
    /* Added padding to prevent image clipping */
    width: 100%;
    box-sizing: border-box;
  }

  /* Main container for card rows */
  .learninglab-cards-container {
    display: flex;
    flex-direction: column;
    gap: 55px;
    /* Increased gap to make space for floating images */
    position: relative;
  }

  /* Horizontal dotted separator line */
  .learninglab-cards-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    transform: translateY(-50%);
    /* border-top: 2px dotted #007bff; */
    z-index: 0;
  }

  /* Each row contains two cards */
  .learninglab-card-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
  }

  /* Vertical dashed separator line */
  #row1::after,
  #row2::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    /* border-left: 2px dashed #f5797f; */
    z-index: 0;
  }

  /* Card styles for mobile with floating image */
  .learninglab-card {
    width: calc(50% - 7.5px);
    min-height: auto;
    padding: 70px 15px 25px 15px;
    /* Increased top padding for image */
    border-radius: 24px;
    position: relative;
    z-index: 1;
    /* Ensure card is above separator lines */
  }

  /* Image wrapper for floating effect */
  .learninglab-image-wrapper {
    position: absolute;
    top: -50px;
    /* Pulls the image up */
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .learninglab-image {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  /* Content styles for mobile */
  .learninglab-card-content {
    margin-top: 0;
  }

  .learninglab-card-title {
    font-size: 18px;
  }

  .learninglab-card-text {
    font-size: 16px;
  }
}


.layer-1-icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 198.2px;
  height: 126px;
  overflow: hidden;
  object-fit: contain;
  opacity: 0.4;
}

.learning-library {
  color: #f5797f;
}

.explore-your-learning-container {
  width: 815px;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #1c1c1c;
}

.this-screen-shows {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
}

.parents-can-protect {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.pick-relevant-tags {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.easily-set-up {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.explore-your-learning-library-parent {
  position: absolute;
  top: 79px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.layer-1-parent {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 835px;
  height: 281px;
}

.frame-wrapper {
  width: 793px;
  position: relative;
  height: 420px;
}

.system-workspace-child {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #e1f5fe;
  width: 572px;
  height: 572px;
}

.system-workspace-icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 349px;
  height: 704px;
  object-fit: cover;
}

.top-icon {
  position: absolute;
  top: 525px;
  left: -111px;
  width: 175.7px;
  height: 159.8px;
  object-fit: contain;
}

.system-workspace1 {
  position: absolute;
  top: 3px;
  left: 177px;
  width: 349px;
  height: 704px;
}

.bottom-icon {
  position: absolute;
  top: 92px;
  left: 544px;
  width: 92.7px;
  height: 151px;
  object-fit: contain;
}

.system-workspace {
  width: 721px;
  position: relative;
  height: 704px;
}

.password-protected-screens1 {
  position: absolute;
  top: 0px;
  left: 177px;
  width: 349px;
  height: 704px;
  object-fit: cover;
}

.top-icon1 {
  position: absolute;
  top: 55px;
  left: 70px;
  width: 141.7px;
  height: 133.5px;
  object-fit: contain;
}

.bottom-icon1 {
  position: absolute;
  top: 474.49px;
  left: 543.69px;
  width: 102.6px;
  height: 115px;
  object-fit: contain;
}

.with-pin {
  color: #1c1c1c;
}

.secure-access-with-container {
  width: 100%;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #f5797f;
}

.kids-can-type {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
}

.secure-access-with-container-Prompt {
  width: 100%;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #1c1c1c;
}

.secure-access-with-pin-parent {
  /* position: absolute;
  	top: 79px;
  	left: 20px;
  	width: 773px;
  	display: flex;
  	flex-direction: column;
  	align-items: flex-start;
  	justify-content: flex-start;
  	gap: 12px; */
  width: 100%;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #1c1c1c;
}

.layer-1-group {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 793px;
  height: 281px;
}

.how-it-works-password-protec {
  /* width: 1567px;
  	display: flex;
  	flex-direction: row;
  	align-items: center;
  	justify-content: flex-start;
  	gap: 53px;
  	color: #f5797f; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 96px 80px;
  box-sizing: border-box;
  text-align: center;
  font-size: 64px;
  color: #f5797f;
  font-family: 'Funnel Display';
  gap: 40px;
}

.custom-workspaces-1-child {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #fce4ec;
  width: 572px;
  height: 572px;
}

.custom-workspaces-11 {
  position: absolute;
  top: 0px;
  left: 176px;
  width: 350px;
  height: 704px;
  object-fit: cover;
}

.top-icon2 {
  position: absolute;
  top: 407.13px;
  left: 528.55px;
  width: 123.9px;
  height: 127.7px;
  object-fit: contain;
}

.bottom-icon2 {
  position: absolute;
  top: 91px;
  left: 90px;
  width: 120px;
  height: 100px;
  object-fit: cover;
}

.workspace-categories-child {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #ffb6b9;
  width: 572px;
  height: 572px;
}

.workspace-categories-icon {
  position: absolute;
  top: 0px;
  left: 176px;
  width: 349px;
  height: 704px;
  object-fit: cover;
}

.top-icon3 {
  position: absolute;
  top: 141px;
  left: 65px;
  width: 103.3px;
  height: 119px;
  object-fit: contain;
}

.bottom-icon3 {
  position: absolute;
  top: 455px;
  left: 525px;
  width: 118.4px;
  height: 121.9px;
  object-fit: contain;
}

.once-you-enter {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.children-can-interact {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.prompt-preview-1-child {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #d7f2ff;
  width: 572px;
  height: 572px;
}

.prompt-preview-11 {
  position: absolute;
  top: calc(50% - 352px);
  left: 177px;
  width: 349px;
  height: 704px;
  object-fit: cover;
}

.top-icon4 {
  position: absolute;
  top: 93.38px;
  left: 53.27px;
  width: 109.5px;
  height: 119.2px;
  object-fit: contain;
}

.bottom-icon4 {
  position: absolute;
  top: 470.97px;
  left: 484.47px;
  width: 122.1px;
  height: 124.1px;
  object-fit: contain;
}

.top-icon5 {
  position: absolute;
  top: 106px;
  left: 49px;
  width: 118.4px;
  height: 121.8px;
  object-fit: contain;
}

.bottom-icon5 {
  position: absolute;
  top: 383.76px;
  left: 549.24px;
  width: 113.5px;
  height: 120.5px;
  object-fit: contain;
}

.talk-to-the-container {
  width: 805px;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #1c1c1c;
}

.top-icon6 {
  position: absolute;
  top: 118px;
  left: 27px;
  width: 149.9px;
  height: 137.3px;
  object-fit: contain;
}

.bottom-icon6 {
  position: absolute;
  top: 417px;
  left: 449px;
  width: 163px;
  height: 100px;
  object-fit: cover;
}

.kid-chat-text-item {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #bed8ef;
  width: 572px;
  height: 572px;
}

.kid-chat-text4 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 349.3px;
  height: 704px;
  object-fit: cover;
}

.kid-chat-text-inner {
  position: absolute;
  top: 517px;
  left: 79px;
  backdrop-filter: blur(4px);
  background-color: rgba(217, 217, 217, 0.01);
  width: 193px;
  height: 66px;
}

.kid-chat-text3 {
  position: absolute;
  top: 0px;
  left: 177px;
  width: 349px;
  height: 704px;
}

.top-icon7 {
  position: absolute;
  top: 126.64px;
  left: 81.7px;
  width: 134.7px;
  height: 137.6px;
  object-fit: contain;
}

.bottom-icon7 {
  position: absolute;
  top: 467.73px;
  left: 506.54px;
  width: 103.7px;
  height: 118.5px;
  object-fit: cover;
}

.how-it-works-kid-chat-text1 {
  width: 721px;
  height: 704px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.get-instant-alerts {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
}

.smart-parent-control-parent {
  position: absolute;
  top: 79px;
  left: 0px;
  width: 773px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.layer-1-parent4 {
  position: absolute;
  top: calc(50% - 110px);
  left: 0px;
  width: 773px;
  height: 221px;
}

.instance-parent {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 150px 80px;
  box-sizing: border-box;
  gap: 96px;
  text-align: left;
  font-size: 56px;
  color: #1c1c1c;
  font-family: 'Funnel Display';
}


.copilot-section-wrapper {
  width: 100%;
  padding: 0 80px 112px;
  box-sizing: border-box;
  font-family: "Funnel Display", sans-serif;
  color: #1c1c1c;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.copilot-section-content {
  background-color: #ebebf0;
  border-radius: 80px;
  padding: 100px 80px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  overflow: hidden;
}

.copilot-text-buttons-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 1;
  max-width: 50%;
}

.copilot-heading-subheading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.copilot-heading {
  font-size: 48px;
  max-width: 100%;
  display: inline-block;
}

.copilot-subheading {
  font-size: 32px;
  font-family: "Funnel Sans", sans-serif;
}

.copilot-button-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.copilot-store-icon {
  width: 220px;
  height: auto;
}

.copilot-overlapping-images {
  position: relative;
  width: 548px;
  height: 495px;
  flex-shrink: 0;
  overflow: hidden;
}

.copilot-image-child,
.copilot-image-parent {
  position: absolute;
  width: 280px;
  object-fit: cover;
  border-radius: 32px 32px 0 0;
}

.copilot-image-child {
  top: 13px;
  left: 268px;
}

.copilot-image-parent {
  top: 97px;
  left: 0;
}

.copilot-bg-graphic {
  position: absolute;
  width: 39.53%;
  height: 20.91%;
  top: 65.16%;
  right: 23.18%;
  max-width: 100%;
  max-height: 100%;
  z-index: 0;
}

.kidpilot-bg-graphic {
  position: absolute;
  width: 18.53%;
  height: 17.91%;
  top: 35.16%;
  right: 0%;
  max-width: 100%;
  max-height: 100%;
  z-index: 0;
}

/* Responsive Styles */
@media (max-width: 1224px) {
  .copilot-section-content {
    flex-direction: column;
    padding: 80px 40px;
    border-radius: 48px;
  }

  .copilot-text-buttons-block {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .copilot-overlapping-images {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }

  .copilot-image-child,
  .copilot-image-parent {
    position: static;
    width: 45%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }

  .copilot-overlapping-images {
    display: flex;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .copilot-section-content {
    padding: 60px 20px;
  }
  .copilot-heading {
    font-size: 36px;
  }
  .copilot-subheading {
    font-size: 20px;
  }
  .copilot-store-icon {
    width: 160px;
  }
  .copilot-overlapping-images {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    overflow: hidden;
  }
  .copilot-image-child,
  .copilot-image-parent {
    width: 60%;
    max-width: 100%;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .copilot-section-wrapper {
    padding: 20px 20px;
  }
  .copilot-section-content {
    padding: 40px 16px;
    border-radius: 24px;
  }
  .copilot-heading {
    font-size: 28px;
  }
  .copilot-subheading {
    font-size: 16px;
  }
  .copilot-store-icon {
    width: 120px;
  }
  .copilot-image-child,
  .copilot-image-parent {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
  }
  .copilot-bg-graphic,
  .kidpilot-bg-graphic {
    display: none;
  }
}

.footer-container {
  background-color: #ffffff;
  border-radius: 40px 40px 0 0;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* Ensures the large text doesn't break layout */
  margin-top: 50px;
  /* Example margin */
}

.footer-content {
  position: relative;
  z-index: 2;
}

.brand-identity {
  margin-bottom: 15px;
}

.brand-logo {
  width: 55px;
  height: auto;
  margin-bottom: 10px;
}

.brand-title {
  font-size: 24px;
  font-weight: 600;
  color: #1c1c1c;
  margin: 0;
}

.footer-tagline {
  font-size: 16px;
  color: #333;
  margin: 0 auto 15px auto;
  max-width: 300px;
  line-height: 1.5;
}

.contact-info {
  font-size: 16px;
  color: #333;
  margin: 0;
}

.contact-link {
  color: #0076e5;
  text-decoration: none;
  font-weight: bold;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Background Text Styles */
.footer-background-text-wrapper {
  /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.footer-background-text {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 900;
  /* Very bold */
  font-size: 9.375vw;
  /* Responsive font size based on viewport width */
  color: #eeeeee;
  margin: 0;
  white-space: nowrap;
  /* Keeps the text on one line */
  letter-spacing: 2px;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .footer-container {
    border-radius: 60px 60px 0 0;
    padding: 50px 40px;
  }

  .footer-tagline {
    font-size: 18px;
    max-width: none;
  }

  .contact-info {
    font-size: 18px;
  }

  .footer-background-text {
    /* font-size: 10vw; Larger text for tablets */
    letter-spacing: 5px;
    font-family: "Bebas Neue", sans-serif;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .footer-container {
    border-radius: 80px 80px 0 0;
    padding: 60px 60px;
  }

  .brand-title {
    font-size: 28px;
  }

  .footer-tagline,
  .contact-info {
    font-size: 20px;
  }

  .footer-background-text {
    font-size: 65px;
    /* Fixed large size for desktops */
    font-family: "Bebas Neue", sans-serif;
  }

  /* .custom-content-wrapper {
    width: 100%;
    max-width: 1091px;
    background-color: #ffebb4;
    border-radius: 80px;
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    box-sizing: border-box;
    }

    .custom-section-image-wrapper {
    border-radius: 80px;
    overflow: hidden;
    width: 350px;
    height: auto;
    flex-shrink: 0;
    } */
}

/* Larger Desktop Styles */
@media (min-width: 1440px) {
  .footer-background-text {
    font-size: 180px;
    /* Even larger for high-res screens */
    font-family: "Bebas Neue", sans-serif;
    width: 1499px;
    position: relative;
  }
}

.footer-divider {
  border: none;
  border-top: 1px solid #1f2124;
  /* light grey line */
  margin: 20px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
  /* Tailwind gray-500 */
  padding: 10px 0;
  flex-wrap: wrap;
}

.footer-copy {
  width: 320px;
  position: relative;
  font-size: 15px;
  letter-spacing: -0.23px;
  line-height: 20px;
  font-family: "SF Pro";
  color: #8e8e93;
  text-align: left;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.privacy-policy {
  width: 101px;
  position: relative;
  text-decoration: underline;
  letter-spacing: -0.31px;
  line-height: 21px;
  display: inline-block;
  flex-shrink: 0;
  color: #8e8e93;
}

.privacy-policy:hover {
  border-color: #6b7280;
  text-decoration: underline;
  color: rgba(0, 92, 252, 0.72);
}

.terms-conditions {
  width: 143px;
  position: relative;
  text-decoration: underline;
  letter-spacing: -0.31px;
  line-height: 21px;
  display: inline-block;
  flex-shrink: 0;
  color: #8e8e93;
}

.terms-conditions:hover {
  border-color: #6b7280;
  text-decoration: underline;
  color: rgba(0, 92, 252, 0.72);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
}

/* animation */

.top-icon {
  animation: float 3s ease-in-out infinite;
}

.bottom-icon {
  animation: float 3s ease-in-out infinite 0.5s;
  /* Slight delay for staggered effect */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* Move up by 15px at the peak */
  }
}


.top-decor {
  animation: float 3s ease-in-out infinite;
}

.bottom-decor {
  animation: float 3s ease-in-out infinite 0.5s;
  /* Slight delay for staggered effect */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* Move up by 15px at the peak */
  }
}

.top-decor-one {
  animation: float 3s ease-in-out infinite;
}

.bottom-decor-one {
  animation: float 3s ease-in-out infinite 0.5s;
  /* Slight delay for staggered effect */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* Move up by 15px at the peak */
  }
}

.top-decor-two {
  animation: float 3s ease-in-out infinite;
}

.bottom-decor-two {
  animation: float 3s ease-in-out infinite 0.5s;
  /* Slight delay for staggered effect */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* Move up by 15px at the peak */
  }
}

.top-decor-three {
  animation: float 3s ease-in-out infinite;
}

.bottom-decor-three {
  animation: float 3s ease-in-out infinite 0.5s;
  /* Slight delay for staggered effect */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* Move up by 15px at the peak */
  }
}

.top-decor-four {
  animation: float 3s ease-in-out infinite;
}

.bottom-decor-four {
  animation: float 3s ease-in-out infinite 0.5s;
  /* Slight delay for staggered effect */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* Move up by 15px at the peak */
  }
}

.top-decor-five {
  animation: float 3s ease-in-out infinite;
}

.bottom-decor-five {
  animation: float 3s ease-in-out infinite 0.5s;
  /* Slight delay for staggered effect */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* Move up by 15px at the peak */
  }
}

.top-decor-six {
  animation: float 3s ease-in-out infinite;
}

.bottom-decor-six {
  animation: float 3s ease-in-out infinite 0.5s;
  /* Slight delay for staggered effect */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
    /* Move up by 15px at the peak */
  }
}

.top-decor-seven {
  animation: float 3s ease-in-out infinite;
}

.bottom-decor-seven {
  animation: float 3s ease-in-out infinite 0.5s;
  /* Slight delay for staggered effect */
}





/* ////////////////////////////// Section feature-section */
/* For example: */
.main-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 198.2px;
  height: 126px;
  overflow: hidden;
  object-fit: contain;
  /* opacity: 0.4; */
}

.main-image-2 {
  position: absolute;
  top: -68px;
  left: 0px;
  width: 198.2px;
  height: 126px;
  overflow: hidden;
  object-fit: contain;
  /* opacity: 0.4; */
}

.main-image-3 {
  position: absolute;
  top: -68px;
  left: 0px;
  width: 198.2px;
  height: 126px;
  overflow: hidden;
  object-fit: contain;
  /* opacity: 0.4; */
}

.main-image-4 {
  position: absolute;
  top: -68px;
  left: 0px;
  width: 198.2px;
  height: 126px;
  overflow: hidden;
  object-fit: contain;
  /* opacity: 0.4; */
}

.main-image-5 {
  position: absolute;
  top: -68px;
  left: 0px;
  width: 198.2px;
  height: 126px;
  overflow: hidden;
  object-fit: contain;
  /* opacity: 0.4; */
}

.main-image-6 {
  position: absolute;
  top: -68px;
  left: 0px;
  width: 198.2px;
  height: 126px;
  overflow: hidden;
  object-fit: contain;
  /* opacity: 0.4; */
}

.main-image-7 {
  position: absolute;
  top: -68px;
  left: 0px;
  width: 198.2px;
  height: 126px;
  overflow: hidden;
  object-fit: contain;
  /* opacity: 0.4; */
}

.main-image-8 {
  position: absolute;
  top: -68px;
  left: 0px;
  width: 198.2px;
  height: 126px;
  overflow: hidden;
  object-fit: contain;
  /* opacity: 0.4; */
}

.hub-highlight {
  color: #f5797f;
}

.learning-hub-title {
  width: 815px;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #1c1c1c;
}

.learning-hub-desc {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
}

.pin-access-desc {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.tag-desc {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.workspace-desc {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.learning-hub-parent {
  position: absolute;
  top: 79px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.image-text-group {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 835px;
  height: 281px;
}

.content-box {
  width: 793px;
  position: relative;
  height: 420px;
}

.workspace-bg {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #e1f5fe;
  width: 572px;
  height: 572px;
}

.workspace-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 349px;
  height: 704px;
  object-fit: cover;
}

.top-decor {
  position: absolute;
  top: 525px;
  left: -111px;
  width: 115.7px;
  height: 115.8px;
  object-fit: contain;
}

.workspace-content {
  position: absolute;
  top: 3px;
  left: 177px;
  width: 349px;
  height: 704px;
}

.bottom-decor {
  position: absolute;
  top: 100px;
  left: 514px;
  width: 115.7px;
  height: 115.8px;
  object-fit: contain;
}

.workspace-display {
  width: 721px;
  position: relative;
  height: 704px;
}

.secure-screen {
  position: absolute;
  top: 0px;
  left: 177px;
  width: 349px;
  height: 704px;
  object-fit: cover;
}

.top-decor-one {
  position: absolute;
  top: 55px;
  left: 80px;
  width: 115.7px;
  height: 115.8px;
  object-fit: contain;
}

.bottom-decor-one {
  position: absolute;
  top: 474.49px;
  left: 543.69px;
  width: 100px;
  height: 115px;
  object-fit: contain;
}

.pin-highlight {
  color: #1c1c1c;
}

.pin-access-title {
  width: 100%;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #f5797f;
}

.chat-text-title {
  width: 100%;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #f5797f;
}

.chat-text-desc {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
}

.prompt-action-title {
  width: 100%;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #1c1c1c;
}

.pin-access-parent {
  width: 100%;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #1c1c1c;
}

.secure-content-group {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 793px;
  height: 281px;
}

.secure-access-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 96px 80px;
  box-sizing: border-box;
  text-align: center;
  font-size: 64px;
  color: #f5797f;
  font-family: 'Funnel Display';
  gap: 40px;
}

.custom-workspace-bg {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #fce4ec;
  width: 572px;
  height: 572px;
}

.custom-workspace-image {
  position: absolute;
  top: 0px;
  left: 176px;
  width: 350px;
  height: 704px;
  object-fit: cover;
}

.top-decor-two {
  position: absolute;
  top: 407.13px;
  left: 528.55px;
  width: 100.9px;
  height: 100.7px;
  object-fit: contain;
}

.bottom-decor-two {
  position: absolute;
  top: 101px;
  left: 124px;
  width: 87px;
  height: 72px;
  object-fit: cover;
}

.category-workspace-bg {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #ffb6b9;
  width: 572px;
  height: 572px;
}

.category-workspace-image {
  position: absolute;
  top: 0px;
  left: 176px;
  width: 349px;
  height: 704px;
  object-fit: cover;
}

.top-decor-three {
  position: absolute;
  top: 141px;
  left: 65px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.bottom-decor-three {
  position: absolute;
  top: 455px;
  left: 525px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.prompt-text {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.voice-interaction-desc {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
  height: 120px;
  margin-top: 5px;
}

.prompt-workspace-bg {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #d7f2ff;
  width: 572px;
  height: 572px;
}

.prompt-workspace-image {
  position: absolute;
  top: calc(50% - 352px);
  left: 177px;
  width: 349px;
  height: 704px;
  object-fit: cover;
}

.top-decor-four {
  position: absolute;
  top: 93.38px;
  left: 53.27px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.bottom-decor-four {
  position: absolute;
  top: 470.97px;
  left: 484.47px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.top-decor-five {
  position: absolute;
  top: 106px;
  left: 49px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.bottom-decor-five {
  position: absolute;
  top: 383.76px;
  left: 549.24px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.voice-interaction-title {
  width: 805px;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #1c1c1c;
}

.top-decor-six {
  position: absolute;
  top: 118px;
  left: 67px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.bottom-decor-six {
  position: absolute;
  top: 417px;
  left: 449px;
  width: 133px;
  height: 75px;
  object-fit: cover;
}

.chat-text-bg {
  position: absolute;
  top: 69px;
  left: 65px;
  border-radius: 50%;
  background-color: #bed8ef;
  width: 572px;
  height: 572px;
}

.chat-text-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 349.3px;
  height: 704px;
  object-fit: cover;
}

.chat-text-overlay {
  position: absolute;
  top: 517px;
  left: 79px;
  backdrop-filter: blur(4px);
  background-color: rgba(217, 217, 217, 0.01);
  width: 193px;
  height: 66px;
}

.chat-text-content {
  position: absolute;
  top: 0px;
  left: 177px;
  width: 349px;
  height: 704px;
}

.top-decor-seven {
  position: absolute;
  top: 126.64px;
  left: 81.7px;
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.bottom-decor-seven {
  position: absolute;
  top: 467.73px;
  left: 506.54px;
  width: 100px;
  height: 114px;
  object-fit: cover;
}

.chat-text-section {
  width: 721px;
  height: 704px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.parent-control-title {
  width: 100%;
  position: relative;
  font-size: 56px;
  display: inline-block;
  font-family: 'Funnel Display';
  text-align: left;
  color: #1c1c1c;
}

.parent-control-desc {
  width: 100%;
  position: relative;
  font-size: 24px;
  font-family: 'Funnel Sans';
  color: #252525;
  text-align: left;
  display: inline-block;
}

.parent-control-parent {
  position: absolute;
  top: 79px;
  left: 0px;
  width: 773px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.parent-control-group {
  position: absolute;
  top: calc(50% - 110px);
  left: 0px;
  width: 773px;
  height: 221px;
}

.feature-section {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 150px 80px;
  box-sizing: border-box;
  gap: 96px;
  text-align: left;
  font-size: 56px;
  color: #1c1c1c;
  font-family: 'Funnel Display';
}

/* Styles for the other section */
.app-section-wrapper {
  width: 100%;
  padding: 0 80px 112px;
  box-sizing: border-box;
  font-family: "Funnel Display", sans-serif;
  color: #1c1c1c;
  display: flex;
  flex-direction: column;
}

.app-section-content {
  background-color: #ebebf0;
  border-radius: 80px;
  padding: 160px 80px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.app-text-buttons-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 1;
}

.app-heading-subheading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-heading {
  font-size: 48px;
  max-width: 100%;
  display: inline-block;
}

.app-subheading {
  font-size: 32px;
  font-family: "Funnel Sans", sans-serif;
}

.app-button-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.app-store-icon {
  width: 220px;
  height: auto;
}

.app-overlapping-images {
  position: absolute;
  top: 106px;
  right: 160px;
  width: 548px;
  height: 495px;
}

.app-image-child,
.app-image-parent {
  position: absolute;
  width: 280px;
  object-fit: cover;
  border-radius: 32px 32px 0 0;
}

.app-image-child {
  top: 13px;
  left: 268px;
}

.app-image-parent {
  top: 97px;
  left: 0;
}

.app-bg-graphic {
  position: absolute;
  width: 39.53%;
  height: 20.91%;
  top: 65.16%;
  right: 23.18%;
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
}

.kidpilot-bg-graphic {
  position: absolute;
  width: 18.53%;
  height: 17.91%;
  top: 35.16%;
  right: 0%;
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
}


/* --- RESPONSIVE STYLES --- */

/* Tablet Devices (e.g., iPads) */
@media (max-width: 1100px) {

  /* Feature Section adjustments */
  .feature-section {
    padding: 100px 20px;
    gap: 80px;
  }

  .secure-access-section {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  /* Consistent order: Image on top, Text below */
  .secure-access-section:nth-child(odd) .content-box {
    order: 2;
  }

  .secure-access-section:nth-child(odd) .workspace-display {
    order: 1;
  }

  .secure-access-section:nth-child(8) .chat-text-section {
    order: 1;
  }

  .secure-access-section:nth-child(8) .content-box {
    order: 2;
  }

  .content-box,
  .workspace-display,
  .chat-text-section {
    width: 100%;
    position: relative;
    height: auto;
    flex-basis: auto;
    transform: none;
    /* Reset transform from old tablet view */
  }

  /* Simplify image displays */
  .workspace-display,
  .chat-text-section {
    height: 550px;
    /* Increased height for tablet screens */
  }

  .workspace-bg,
  .custom-workspace-bg,
  .category-workspace-bg,
  .prompt-workspace-bg,
  .chat-text-bg {
    position: absolute;
    width: 500px;
    /* Adjusted for new container height */
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .workspace-content,
  .chat-text-content,
  .secure-screen,
  .custom-workspace-image,
  .category-workspace-image,
  .prompt-workspace-image {
    position: absolute;
    width: 300px;
    /* Slightly larger image for tablets */
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .workspace-image,
  .chat-text-image {
    width: 100%;
    height: 100%;
  }

  /* Hide decorative elements */
  .chat-text-overlay {
    display: none;
  }

  /* Reposition decorative elements for tablet */
  .main-image {
    /* position: relative;
        display: block;
        margin: 0 auto 20px;
        width: 150px;
        height: auto;
        top: auto;
        left: auto; */
    display: none;
  }

  .main-image-2,
  .main-image-3,
  .main-image-4,
  .main-image-5,
  .main-image-6,
  .main-image-7 {
    display: none;
  }

  .top-decor,
  .bottom-decor,
  .top-decor-one,
  .bottom-decor-one,
  .top-decor-two,
  .bottom-decor-two,
  .top-decor-three,
  .bottom-decor-three,
  .top-decor-four,
  .bottom-decor-four,
  .top-decor-five,
  .bottom-decor-five,
  .top-decor-six,
  .bottom-decor-six,
  .top-decor-seven,
  .bottom-decor-seven {
    transform: scale(0.7);
    /* Scale down the decor elements */
  }

  .top-decor {
    top: 440px;
    left: -39%;
  }

  .bottom-decor {
    top: 50px;
    left: 70%;
  }

  .top-decor-one {
    top: 6px;
    left: 17%;
  }

  .bottom-decor-one {
    top: 350px;
    left: 70%;
  }

  .top-decor-two {
    top: 308px;
    left: 68%;
  }

  .bottom-decor-two {
    top: 46px;
    left: 22%;
  }

  .top-decor-three {
    top: 85px;
    left: 19%;
  }

  .bottom-decor-three {
    top: 350px;
    left: 70%;
  }

  .top-decor-four {
    top: 43px;
    left: 15%;
    transform: rotate(-15deg);
    transform-origin: center;
  }

  .bottom-decor-four {
    top: 365px;
    left: 63%;
  }

  .top-decor-five {
    top: 70px;
    left: 16%;
  }

  .bottom-decor-five {
    top: 310px;
    left: 69%;
  }

  .top-decor-six {
    top: 80px;
    left: 14%;
  }

  .bottom-decor-six {
    top: 313px;
    left: 67%;
  }

  .top-decor-seven {
    top: 57px;
    left: 19%;
  }

  .bottom-decor-seven {
    top: 368px;
    left: 65%;
  }


  /* Center-align text content */
  .content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
  }

  .image-text-group,
  .secure-content-group,
  .parent-control-group {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
  }

  .learning-hub-parent,
  .pin-access-parent,
  .parent-control-parent {
    position: relative;
    top: auto;
    left: auto;
    gap: 16px;
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .learning-hub-title,
  .pin-access-title,
  .prompt-action-title,
  .voice-interaction-title,
  .parent-control-title,
  .chat-text-title {
    font-size: 40px;
    /* Kept tablet font size for better readability */
    text-align: center;
    width: 100%;
    line-height: 1.2;
  }

  .learning-hub-desc,
  .pin-access-desc,
  .tag-desc,
  .workspace-desc,
  .prompt-text,
  .voice-interaction-desc,
  .chat-text-desc,
  .parent-control-desc {
    font-size: 20px;
    /* Kept tablet font size */
    text-align: center;
    width: 100%;
    max-width: 500px;
    /* Allow slightly wider text on tablets */
    margin-top: 0;
    height: auto;
  }

  /* App Download Section adjustments */
  .app-section-wrapper {
    padding: 0 40px 80px;
  }

  .app-section-content {
    padding: 120px 40px 40px;
    border-radius: 40px;
    text-align: center;
  }

  .app-text-buttons-block {
    align-items: center;
  }

  /* Hide images on tablet */
  .app-overlapping-images,
  .app-bg-graphic,
  .kidpilot-bg-graphic {
    display: none;
  }

  .app-heading {
    font-size: 38px;
  }

  .app-subheading {
    font-size: 26px;
  }
}


/* Mobile Devices (e.g., iPhones) */
@media (max-width: 768px) {

  /* Feature Section adjustments */
  .feature-section {
    padding: 60px 20px;
    gap: 80px;
  }

  .secure-access-section {
    flex-direction: column;
    gap: 40px;
    padding: 50px 10px 50px 10px;
  }

  /* Consistent order: Image on top, Text below */
  .secure-access-section:nth-child(odd) .content-box {
    order: 2;
  }

  .secure-access-section:nth-child(odd) .workspace-display {
    order: 1;
  }

  .secure-access-section:nth-child(8) .chat-text-section {
    order: 1;
  }

  .secure-access-section:nth-child(8) .content-box {
    order: 2;
  }

  .content-box,
  .workspace-display,
  .chat-text-section {
    width: 100%;
    position: relative;
    height: auto;
    flex-basis: auto;
  }

  /* Simplify image displays */
  .workspace-display,
  .chat-text-section {
    height: 450px;
  }

  .workspace-bg,
  .custom-workspace-bg,
  .category-workspace-bg,
  .prompt-workspace-bg,
  .chat-text-bg {
    position: absolute;
    width: 110%;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .workspace-content,
  .chat-text-content,
  .secure-screen,
  .custom-workspace-image,
  .category-workspace-image,
  .prompt-workspace-image {
    position: absolute;
    width: 250px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .workspace-image,
  .chat-text-image {
    width: 100%;
    height: 100%;
  }

  /* Hide only necessary elements on mobile */
  .chat-text-overlay {
    display: none;
  }

  /* Reposition decorative elements for mobile */
  .main-image {
    /* width: 120px; smaller for mobile */
    /* margin-bottom: 15px; */
    display: none;
  }

  .main-image-2,
  .main-image-3,
  .main-image-4,
  .main-image-5,
  .main-image-6,
  .main-image-7 {
    display: none;
  }

  .top-decor,
  .bottom-decor,
  .top-decor-one,
  .bottom-decor-one,
  .top-decor-two,
  .bottom-decor-two,
  .top-decor-three,
  .bottom-decor-three,
  .top-decor-four,
  .bottom-decor-four,
  .top-decor-five,
  .bottom-decor-five,
  .top-decor-six,
  .bottom-decor-six,
  .top-decor-seven,
  .bottom-decor-seven {
    transform: scale(0.6);
    /* Further scale down for mobile */
    z-index: 0;
  }

  .top-decor {
    top: 414px;
    left: -25%;
    width: 90px;
    height: 70px;
  }

  .bottom-decor {
    top: 10px;
    left: 80%;
    width: 90px;
    height: 90px;
  }

  .top-decor-one {
    top: 20px;
    left: 0%;
    width: 77px;
    height: 90px;
  }

  .bottom-decor-one {
    top: 300px;
    left: 85%;
    width: 70px;
    height: 70px;
  }

  .top-decor-two {
    top: 250px;
    left: 84%;
    height: 70px;
    width: 70px;
  }

  .bottom-decor-two {
    top: 42px;
    left: 2%;
    width: 70px;
    height: 60px;
  }

  .top-decor-three {
    top: 80px;
    left: -6%;
    width: 70px;
    height: 70px;
  }

  .bottom-decor-three {
    top: 290px;
    left: 85%;
    width: 70px;
    height: 70px;
  }

  .top-decor-four {
    top: 40px;
    left: -5%;
    width: 70px;
    height: 70px;
  }

  .bottom-decor-four {
    top: 300px;
    left: 86%;
    width: 70px;
    height: 70px;
  }

  .top-decor-five {
    top: 50px;
    left: -4%;
    width: 70px;
    height: 70px;
  }

  .bottom-decor-five {
    top: 260px;
    left: 85%;
    width: 70px;
    height: 70px;
  }

  .top-decor-six {
    top: 60px;
    left: -5%;
    width: 70px;
    height: 70px;
  }

  .bottom-decor-six {
    top: 280px;
    left: 71%;
    width: 100px;
    height: 60px;
  }

  .top-decor-seven {
    top: 26px;
    left: 0%;
    width: 70px;
    height: 70px;
  }

  .bottom-decor-seven {
    top: 300px;
    left: 81%;
    width: 66px;
    height: 74px;
  }

  /* Center-align text content */
  .content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .learning-hub-parent,
  .pin-access-parent,
  .parent-control-parent {
    gap: 16px;
    text-align: center;
    align-items: center;
  }

  .learning-hub-title,
  .pin-access-title,
  .prompt-action-title,
  .voice-interaction-title,
  .parent-control-title,
  .chat-text-title {
    font-size: 32px;
    text-align: center;
    width: 100%;
    line-height: 1.2;
  }

  .learning-hub-desc,
  .pin-access-desc,
  .tag-desc,
  .workspace-desc,
  .prompt-text,
  .voice-interaction-desc,
  .chat-text-desc,
  .parent-control-desc {
    font-size: 18px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin-top: 0;
  }

  /* App Download Section adjustments */
  .app-section-wrapper {
    padding: 0 20px 60px;
  }

  .app-section-content {
    padding: 120px 20px 40px;
    /* More top padding for text */
    border-radius: 40px;
    text-align: center;
  }

  .app-text-buttons-block {
    align-items: center;
  }

  /* Hide images on mobile */
  .app-overlapping-images,
  .app-bg-graphic,
  .kidpilot-bg-graphic {
    display: none;
  }

  .app-heading {
    font-size: 32px;
  }

  .app-subheading {
    font-size: 18px;
  }
}

/*
 * ===================================================================
 *  STYLE FOR MACBOOK / HIGH-RES LAPTOPS (1201px to 1540px)
 * ===================================================================
 * This query targets the specific range for MacBook-sized screens,
 * creating a clean, single-column layout without affecting larger
 * desktops or smaller tablets.
 */

@media only screen and (min-width: 1201px) and (max-width: 1540px) {

  /* 1. Main Section Adjustments */
  .feature-section {
    padding: 80px 40px;
    /* Adjust padding for this screen size */
    gap: 60px;
    /* Adjust gap between sections */
  }
  /* 2. Convert to a single-column layout */
  .secure-access-section {
    flex-direction: column !important;
    /* Stack items vertically */
    align-items: center !important;
    /* Center the items */
    gap: 50px !important;
    /* Space between image and text */
    max-width: 950px;
    /* Constrain the width for better readability */
    margin: 0 auto;
    /* Center the section itself */
  }

  /* 3. Standardize the order: IMAGE ON TOP, TEXT BELOW */
  .secure-access-section .workspace-display,
  .secure-access-section .chat-text-section {
    order: 1 !important;
    /* Image container always comes first */
  }

  .secure-access-section .content-box {
    /* order: 2 !important; Text container always comes second */
    height: auto;
  }

  .secure-content-group {
    height: auto;
  }

  /* 4. Reset widths and transforms for the new layout */
  .content-box,
  .workspace-display,
  .chat-text-section {
    width: 100% !important;
    flex-basis: auto !important;
    transform: none !important;
    /* Reset any desktop transforms */
    position: relative;
  }

  /* 5. Center align all text content */
  .content-box {
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .image-text-group,
  .secure-content-group,
  .parent-control-group {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    /* max-width: 650px; Constrain text width for readability */
  }

  .learning-hub-parent,
  .pin-access-parent,
  .parent-control-parent {
    align-items: center;
    /* Center text vertically */
    text-align: center;
  }

  /* 6. Adjust font sizes for this view */
  .learning-hub-title,
  .pin-access-title,
  .prompt-action-title,
  .voice-interaction-title,
  .parent-control-title,
  .chat-text-title {
    font-size: 48px;
  }

  .learning-hub-desc,
  .pin-access-desc,
  .workspace-desc,
  .tag-desc,
  .prompt-text,
  .voice-interaction-desc,
  .chat-text-desc,
  .parent-control-desc {
    font-size: 20px;
    margin: 0 auto;
    /* Center the description block */
  }

  /* 7. Reposition the decorative images for the new layout */
  /* (This requires careful manual adjustment) */
  .workspace-display,
  .chat-text-section {
    height: 600px;
    /* Standardize height for image containers */
  }

  .top-decor {
    top: 563px;
  }

  .bottom-decor {
    top: 40px;
  }

  /* .top-decor-one { top: 40px; left: 20%; } */
  /* .bottom-decor-one { top: 400px; left: 80%; } */
  /* .top-decor-two { top: 400px; left: 80%; } */
  /* .bottom-decor-two { top: 50px; left: 20%; } */
  /* .top-decor-three { top: 80px; left: 15%; } */
  /* .bottom-decor-three { top: 400px; left: 80%; } */
  /* .top-decor-four { top: 60px; left: 15%; } */
  /* .bottom-decor-four { top: 420px; left: 75%; } */
  /* .top-decor-five { top: 80px; left: 15%; } */
  /* .bottom-decor-five { top: 380px; left: 80%; } */
  /* .top-decor-six { top: 100px; left: 12%; } */
  /* .bottom-decor-six { top: 380px; left: 80%; } */
  /* .top-decor-seven { top: 60px; left: 18%; } */
  /* .bottom-decor-seven { top: 420px; left: 78%; } */
}

/* --- START OF contact form CSS --- */
.contact-love-to-hear {
  color: #f5797f;
}

.contact-wed-love-to-container {
  align-self: stretch;
  position: relative;
}

.contact-have-a-question {
  align-self: stretch;
  position: relative;
  font-size: 32px;
  font-family: 'Funnel Sans';
}

.contact-wed-love-to-hear-from-you-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
}

.contact-adobe-express-file-13-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 566px;
  height: 452.3px;
  object-fit: contain;
}

.contact-adobe-express-file-13-1-wrapper {
  width: 566px;
  position: relative;
  height: 452.3px;
}

.contact-frame-group {
  width: 774px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 38px;
}

.contact-frame-child {
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 12px;
  background-color: #fff;
  border: 2px solid #ebedf0;
  box-sizing: border-box;
  width: 642px;
  height: 72px;
}

.contact-enter-full-name {
  position: absolute;
  top: calc(50% - 15px);
  left: 29px;
}

.contact-rectangle-parent {
  align-self: stretch;
  position: relative;
  height: 72px;
}

.contact-frame-item {
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 12px;
  background-color: #fff;
  border: 2px solid #ebedf0;
  box-sizing: border-box;
  width: 642px;
  height: 70px;
}

.contact-email {
  position: absolute;
  top: calc(50% - 15px);
  left: 28px;
}

.contact-rectangle-group {
  align-self: stretch;
  position: relative;
  height: 70px;
}

.contact-rectangle-div {
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 12px;
  background-color: #fff;
  border: 2px solid #ebedf0;
  box-sizing: border-box;
  width: 642px;
  height: 297px;
}

.contact-enter-your-message {
  position: absolute;
  top: 20px;
  left: 28px;
}

.contact-rectangle-parent1 {
  width: 642px;
  position: relative;
  height: 297px;
}

.contact-frame-div {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 19px;
}

.contact-submit {
  position: relative;
  font-weight: 600;
}

.contact-submit-wrapper {
  border-radius: 12px;
  background-color: #f5797f;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px 130px;
  font-size: 28px;
  color: #fff;
  font-family: 'Funnel Display';
}

.contact-frame-container {
  width: 642px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  font-size: 24px;
  color: rgba(128, 128, 128, 0.55);
  font-family: 'Funnel Sans';
}

.contact-frame-parent {
  width: 1568px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0px;
}

.contact-macbook-pro-16-3 {
  position: relative;
  /* background-color: #fbfaf3; */
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 150px 80px;
  box-sizing: border-box;
  text-align: left;
  font-size: 56px;
  color: #1c1c1c;
  font-family: 'Funnel Display';
}

.editable-input,
.editable-select,
.editable-textarea {
    border-radius: 12px;
    background-color: #fff;
    border: 2px solid #ebedf0;
    box-sizing: border-box;
    width: 100%;
    font-family: 'Funnel Sans', sans-serif;
    font-size: 24px;
    color: #1c1c1c; /* Text color when user types */
    padding: 22px 28px;
}

.editable-select {
    padding: 18px 28px;
    height: 72px;
    color: rgba(128, 128, 128, 0.55);
}

.editable-select:valid {
    color: #1c1c1c;
}

.editable-select option {
    color: #1c1c1c;
}

.editable-input {
    height: 72px;
}

.editable-textarea {
    height: 297px;
    resize: none; /* Prevents user from resizing the textarea */
    padding-top: 20px;
}

.editable-input::placeholder, .editable-textarea::placeholder {
    color: rgba(128, 128, 128, 0.55);
    font-family: 'Funnel Sans', sans-serif;
}

/* Style for the submit button to make it a real button */
button.contact-submit {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

/* For extra large screens, center the content */
@media (min-width: 1600px) {
  .contact-macbook-pro-16-3 {
    align-items: center;
  }
}

/* For large tablets and small desktops */
@media (max-width: 1200px) {
    .contact-frame-parent {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        width: 100%;
    }

    .contact-frame-group {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .contact-wed-love-to-hear-from-you-parent {
        align-items: center;
    }

    .contact-frame-container {
        width: 100%;
        max-width: 642px; /* Maintain form's max width */
    }
}

/* For standard tablets */
@media (max-width: 992px) {
    .contact-macbook-pro-16-3 {
        padding: 50px 40px;
    }

    .contact-wed-love-to-container {
        font-size: 48px;
    }

    .contact-have-a-question {
        font-size: 28px;
    }

    .contact-adobe-express-file-13-1,
    .contact-adobe-express-file-13-1-wrapper {
        width: 90%;
        max-width: 500px; /* Adjust image size */
        height: auto;
        position: relative;
    }

    /* Adjust width of form elements */
    .contact-frame-child,
    .contact-frame-item,
    .contact-rectangle-div,
    .contact-rectangle-parent1 {
        width: 100%;
    }
}

/* For mobile devices */
@media (max-width: 576px) {
    .contact-macbook-pro-16-3 {
        padding: 40px 20px;
    }

    .contact-wed-love-to-container {
        font-size: 40px;
    }

    .contact-have-a-question {
        font-size: 22px;
    }

    /* --- FIX FOR OVERLAPPING --- */
    /* Update heights for both the container AND the absolutely-positioned child */
    .contact-frame-child,
    .contact-rectangle-parent {
        height: 60px;
    }

    .contact-frame-item,
    .contact-rectangle-group {
        height: 60px;
    }
    
    .contact-rectangle-div,
    .contact-rectangle-parent1 {
        height: 200px; /* This ensures the message box doesn't overflow */
    }
    /* --- END OF FIX --- */

    .contact-enter-full-name,
    .contact-email,
    .contact-enter-your-message {
        font-size: 18px;
    }

    .contact-enter-full-name,
    .contact-email {
       top: calc(50% - 13px);
    }
    
    .contact-submit-wrapper {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 24px;
        font-size: 24px;
        margin-top: 90px;
    }

    .contact-frame-container {
        gap: 24px;
    }

    .contact-frame-group {
        gap: 20px;
    }
}

@media only screen and (min-width: 1201px) and (max-width: 1540px) {
    .contact-frame-parent {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0px;
        flex-wrap: nowrap;
        align-content: center;
        align-items: center;
        width: auto;
    }

    .contact-frame-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 38px;
    }

    .contact-frame-container {
        width: 642px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 36px;
        font-size: 24px;
        color: rgba(128, 128, 128, 0.55);
        font-family: 'Funnel Sans';
    }
    .contact-macbook-pro-16-3 {
    position: relative;
    background-color: #fbfaf3;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    box-sizing: border-box;
    text-align: left;
    font-size: 56px;
    color: #1c1c1c;
    font-family: 'Funnel Display';
    align-content: center;
    flex-wrap: nowrap;
}
}