.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 7.5rem 5rem;
  background: linear-gradient(135deg, rgba(63, 140, 203, 1) 0%, rgba(141, 199, 64, 1) 100%);
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-images {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 22rem;
  aspect-ratio: 2.71;
  margin-bottom: 1rem;
  margin-top: 3rem; /* Push images down on desktop to avoid navbar overlap */
}

.hero-img {
  position: absolute;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 500px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
              0 4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-img:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 
              0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-img-notes {
  width: 8.7%;
  height: 23.58%;
  top: 5.68%;
  left: 13.83%;
  border-radius: 5000px;
}

.hero-img-files {
  width: 17.18%;
  height: 46.59%;
  top: 17.05%;
  left: 82.82%;
}

.hero-img-memoji {
  width: 29.13%;
  height: 78.12%;
  top: 19.89%;
  left: 11.26%;
}

.hero-img-memoji-2 {
  width: 27.97%;
  height: 75.85%;
  top: 19.89%;
  left: 60.24%;
}

.hero-img-photos {
  width: 17.29%;
  height: 46.59%;
  top: 17.05%;
  left: 0;
}

.hero-img-messages {
  width: 14.46%;
  height: 39.2%;
  top: 58.24%;
  left: 83.34%;
}

.hero-img-icloud {
  width: 31.95%;
  height: 86.65%;
  top: 0;
  left: 34.05%;
}

.hero-img-ical {
  width: 9.53%;
  height: 25.28%;
  top: 72.63%;
  left: 37.17%;
}

.hero-img-backup {
  width: 12.58%;
  height: 34.12%;
  top: 0;
  left: 74.25%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 800px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-family: "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
  font-family: "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  line-height: 1.4;
  margin: 0;
  letter-spacing: -0.01em;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #8dc73f 0%, #7ab336 100%);
  color: #ffffff;
  font-family: "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border-radius: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(139, 199, 63, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-whatsapp:hover {
  background: linear-gradient(135deg, #7ab336 0%, #6a9e2f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 199, 63, 0.4);
}

.whatsapp-icon {
  width: 1.25rem;
  height: 1.25rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.cta-triage {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #3f8ccb 0%, #2a6ca6 100%);
  color: #ffffff;
  font-family: "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border-radius: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(63, 140, 203, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-triage:hover {
  background: linear-gradient(135deg, #2a6ca6 0%, #1e5080 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(63, 140, 203, 0.4);
}

.hero-description {
  font-family: "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.6;
  margin: 1rem 0 0 0;
  max-width: 700px;
  letter-spacing: -0.01em;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .hero {
    padding: 8rem 2rem 3rem;
    min-height: 90vh;
    gap: 1.5rem;
  }

  .hero-images {
    width: 100%;
    max-width: 700px;
    height: 14rem; /* Reduced height for better mobile proportion */
    margin-top: 2rem;
    margin-bottom: 1rem;
    aspect-ratio: 2.71; /* Maintain aspect ratio for consistency */
  }

  .hero-img-notes {
    width: 8.7%;
    height: 23.58%;
    top: 5.68%;
    left: 13.83%;
    border-radius: 5000px;
  }

  .hero-img-files {
    width: 17.18%;
    height: 46.59%;
    top: 17.05%;
    left: 82.82%;
  }

  .hero-img-memoji {
    width: 29.13%;
    height: 78.12%;
    top: 19.89%;
    left: 11.26%;
  }

  .hero-img-memoji-2 {
    width: 27.97%;
    height: 75.85%;
    top: 19.89%;
    left: 60.24%;
  }

  .hero-img-photos {
    width: 17.29%;
    height: 46.59%;
    top: 17.05%;
    left: 0;
  }

  .hero-img-messages {
    width: 14.46%;
    height: 39.2%;
    top: 58.24%;
    left: 83.34%;
  }

  .hero-img-icloud {
    width: 31.95%;
    height: 86.65%;
    top: 0;
    left: 34.05%;
  }

  .hero-img-ical {
    width: 9.53%;
    height: 25.28%;
    top: 72.63%;
    left: 37.17%;
  }

  .hero-img-backup {
    width: 12.58%;
    height: 34.12%;
    top: 0;
    left: 74.25%;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
  }

  .cta-whatsapp,
  .cta-triage {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .whatsapp-icon {
    width: 1rem;
    height: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 6rem 1rem 2rem;
  }

  .hero-images {
    width: 100%;
    max-width: 500px;
    height: 10rem; /* Further reduced height for smaller screens */
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    aspect-ratio: 2.71; /* Maintain aspect ratio for consistency */
  }

  .hero-img-notes {
    width: 8.7%;
    height: 23.58%;
    top: 5.68%;
    left: 13.83%;
    border-radius: 5000px;
  }

  .hero-img-files {
    width: 17.18%;
    height: 46.59%;
    top: 17.05%;
    left: 82.82%;
  }

  .hero-img-memoji {
    width: 29.13%;
    height: 78.12%;
    top: 19.89%;
    left: 11.26%;
  }

  .hero-img-memoji-2 {
    width: 27.97%;
    height: 75.85%;
    top: 19.89%;
    left: 60.24%;
  }

  .hero-img-photos {
    width: 17.29%;
    height: 46.59%;
    top: 17.05%;
    left: 0;
  }

  .hero-img-messages {
    width: 14.46%;
    height: 39.2%;
    top: 58.24%;
    left: 83.34%;
  }

  .hero-img-icloud {
    width: 31.95%;
    height: 86.65%;
    top: 0;
    left: 34.05%;
  }

  .hero-img-ical {
    width: 9.53%;
    height: 25.28%;
    top: 72.63%;
    left: 37.17%;
  }

  .hero-img-backup {
    width: 12.58%;
    height: 34.12%;
    top: 0;
    left: 74.25%;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.4;
  }

  .hero-cta {
    padding: 0.75rem 1rem;
  }

  .cta-whatsapp,
  .cta-triage {
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
  }

  .hero-description {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}

.language-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 4rem 7.5rem;

  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  width: 100%;
}

.container2 {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 2.5rem;
  width: 100%;
  max-width: 1200px;
}

.section-title {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1e293b;
  text-align: center;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.025em;
}

.section-content {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.section-description {
  font-family: "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  line-height: 1.6;
  max-width: 678px;
  margin: 0;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #3f8ccb 0%, #2a6ca6 100%);
  color: #ffffff;
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(63, 140, 203, 0.3);
}

.learn-more:hover {
  background: linear-gradient(135deg, #2a6ca6 0%, #1e4f7a 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(63, 140, 203, 0.4);
}

.language-list {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
}

.language-list::-webkit-scrollbar {
  display: none;
}

.language-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 210px;
  min-width: 210px;
  height: 455px;
  padding: 2rem 1.5rem 4rem 0.5rem;
  background: linear-gradient(137deg, rgba(63, 140, 203, 0) 30%, rgba(0, 238, 255, 0.6) 100%);
  border-radius: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.language-card:hover {
  transform: translateY(-5px);
}

.language-card:nth-child(2) {
  background: linear-gradient(137deg, rgba(63, 140, 203, 0) 30%, rgba(214, 120, 26, 0.6) 100%);
}

.language-card:nth-child(3) {
  background: linear-gradient(137deg, rgba(63, 140, 203, 0) 30%, rgba(253, 128, 23, 0.6) 100%);
}

.language-card:nth-child(4) {
  background: linear-gradient(137deg, rgba(63, 140, 203, 0) 30%, rgba(89, 0, 29, 0.6) 100%);
}

.language-card:nth-child(5) {
  background: linear-gradient(137deg, rgba(63, 140, 203, 0) 30%, rgba(119, 164, 93, 0.6) 100%);
}

.language-icon {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
}

.language-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  box-shadow: 0 4px 5.8px rgba(0, 0, 0, 0.25);
  align-items: flex-start;
}

.language-graphic {
  position: relative;
  width: 6.25rem;
  height: 3.9375rem;
}

.language-graphic img {
  position: absolute;
  object-fit: cover;
}

.language-graphic img:nth-child(1) {
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
}

.language-graphic img:nth-child(2) {
  top: 0.0625rem;
  left: 4.8125rem;
  width: 1.375rem;
  height: 1.375rem;
}

.language-graphic img:nth-child(3) {
  top: 2.5625rem;
  left: 4.5rem;
  width: 1.375rem;
  height: 1.375rem;
}

.language-graphic img:nth-child(4) {
  top: 1.125rem;
  left: 2rem;
  width: 2.3125rem;
  height: 2.3125rem;
}

.language-card:nth-child(3) .language-graphic {
  width: 4.2056rem;
  height: 3.3113rem;
}

.language-card:nth-child(3) .language-graphic img:nth-child(1) {
  top: 0;
  left: 2.8125rem;
  width: 1.375rem;
  height: 1.375rem;
}

.language-card:nth-child(3) .language-graphic img:nth-child(2) {
  top: 1rem;
  left: 0;
  width: 2.3125rem;
  height: 2.3125rem;
}

.language-card:nth-child(4) .language-graphic {
  width: 4.2956rem;
  height: 3.8481rem;
}

.language-card:nth-child(4) .language-graphic img:nth-child(1) {
  top: 0;
  left: 2.8125rem;
  width: 1.5rem;
  height: 1.5rem;
}

.language-card:nth-child(4) .language-graphic img:nth-child(2) {
  top: 2.4375rem;
  left: 2.4375rem;
  width: 1.375rem;
  height: 1.375rem;
}

.language-card:nth-child(4) .language-graphic img:nth-child(3) {
  top: 1rem;
  left: 0;
  width: 2.3125rem;
  height: 2.3125rem;
}

.language-name {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffffff;
  text-align: left;
  line-height: 1.75rem;
  margin: 0;
  max-width: 135px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .language-section {
    padding: 2rem 2rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .section-description {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .learn-more {
    font-size: 1rem;
  }

  .language-card {
    width: 180px;
    height: 400px;
    padding: 1.5rem 1rem 3rem 0.5rem;
  }

  .language-icon {
    width: 3rem;
    height: 3rem;
  }

  .language-name {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}

@media (max-width: 480px) {
  .language-section {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .learn-more {
    font-size: 0.875rem;
  }

  .language-card {
    width: 160px;
    height: 350px;
    padding: 1rem 0.75rem 2rem 0.5rem;
  }

  .language-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .language-name {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.whatsapp-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 4rem 7.5rem;
  background-color: #ffffff;
  width: 100%;
}

.container3 {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}

.section-title {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #1d1d1f;
  text-align: center;
  line-height: 3.5rem;
  margin: 0;
}

.whatsapp-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(103deg, #3f8ccb 30%, #8dc740 100%);
  border-radius: 2rem;
  overflow: hidden;
}

.content-text {
  flex: 1;
  min-width: 256px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

.section-description {
  font-family: "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #ffffff;
  text-align: left;
  line-height: 1.75rem;
  margin: 0;
}

.phone-screen {
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 1.47;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-section {
    padding: 2rem 2rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .whatsapp-content {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }

  .section-description {
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-align: center;
  }

  .phone-screen {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .whatsapp-section {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .whatsapp-content {
    padding: 0.75rem;
  }

  .section-description {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .phone-screen {
    max-width: 250px;
  }
}
.low-data-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 4rem 7.5rem;
  background-color: #ffffff;
  width: 100%;
}

.container4 {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
}

.section-title {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #1d1d1f;
  text-align: center;
  line-height: 3.5rem;
  margin: 0;
}

.low-data-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(103deg, #3f8ccb 30%, #8dc740 100%);
  border-radius: 2rem;
  overflow: hidden;
}

.phone-screen {
  width: 100%;
  max-width: 460px;
  height: auto;
  aspect-ratio: 1.39;
  object-fit: cover;
}

.content-text {
  flex: 1;
  min-width: 256px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

.section-description {
 font-family: "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #ffffff;
  text-align: left;
  line-height: 1.75rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .low-data-section {
    padding: 2rem 2rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .low-data-content {
    flex-direction: column;
    padding: 1rem;
    gap: 1.5rem;
  }

  .section-description {
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-align: center;
  }

  .phone-screen {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .low-data-section {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .low-data-content {
    padding: 0.75rem;
  }

  .section-description {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .phone-screen {
    max-width: 250px;
  }
}
.privacy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 7.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  width: 100%;
  position: relative;
}

.privacy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.container5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: "Open Sans", "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #1d1d1f;
  text-align: center;
  line-height: 3.5rem;
  margin: 0;
  background: linear-gradient(135deg, #3f8ccb, #8dc740);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-text {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem 0;
}

.section-description {
  font-family: "Open Sans", "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #334155;
  text-align: left;
  line-height: 2rem;
  margin: 0;
}

.phone-screen {
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 1.47;
  object-fit: cover;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.phone-screen:hover {
  transform: scale(1.02);
}

.certifications {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  padding: 2rem 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2rem;
  backdrop-filter: blur(5px);
}

.certifications-intro {
  font-family: "Open Sans", "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #1e293b;
  text-align: center;
  line-height: 2rem;
  margin: 0;
}

.certification-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 1000px;
}

.certification-item {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(63, 140, 203, 0.15) 0%, rgba(141, 199, 64, 0.15) 100%);
  border-radius: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(63, 140, 203, 0.2);
  font-family: "Open Sans", "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: #1e293b;
  text-align: center;
  line-height: 1.6rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.certification-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.certification-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.certification-item:hover::before {
  left: 100%;
}

.certification-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 3.86;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-section {
    padding: 3rem 1.5rem;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  .privacy-content {
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
    text-align: center;
  }

  .content-text {
    min-width: 100%;
    max-width: 100%;
  }

  .section-description {
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
  }

  .phone-screen {
    max-width: 320px;
    order: -1;
  }

  .certifications {
    padding: 1.5rem;
    gap: 2rem;
  }

  .certifications-intro {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .certification-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .certification-item {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    min-width: 100%;
  }

  .certification-image {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .privacy-section {
    padding: 2rem 1rem;
    gap: 1rem;
  }

  .privacy-section::before {
    opacity: 0.3;
  }

  .section-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .privacy-content {
    padding: 1rem;
    gap: 1.5rem;
  }

  .section-description {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .phone-screen {
    max-width: 280px;
  }

  .certifications {
    padding: 1rem;
    gap: 1.5rem;
  }

  .certifications-intro {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }

  .certification-item {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    line-height: 1.4rem;
  }

  .certification-image {
    max-width: 240px;
  }
}
.impact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 7.5rem;
  background: linear-gradient(103deg, #3f8ccb 30%, #8dc740 100%);
  width: 100%;
}

.container6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.section-title {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: #ffffff;
  text-align: center;
  line-height: 3.5rem;
  margin: 0;
}

.impact-content {
  display: flex;
  justify-content: center;
  width: 100%;
}

.section-description {
 font-family: "Inter", "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
  text-align: left;
  line-height: 1.5rem;
  margin: 0;
}

.impact-stats {
  display: flex;
  gap: 2rem;
  width: 100%;
  overflow-x: auto;
  padding: 1rem 0;
  scrollbar-width: none;
}

.impact-stats::-webkit-scrollbar {
  display: none;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 330px;
  min-width: 270px;
  height: 455px;
  padding: 2rem 0 4rem;
  background: linear-gradient(137deg, rgba(63, 140, 203, 0) 30%, rgba(0, 0, 0, 0.6) 100%);
  border-radius: 2rem;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
}

.stat-text {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  line-height: 2.5rem;
  margin: 0;
  box-shadow: 0 4px 5.8px rgba(0, 0, 0, 0.25);
  width: 100%;
  padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .impact-section {
    padding: 2rem 2rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .section-description {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .stat-card {
    width: 280px;
    height: 400px;
    padding: 1.5rem 0 3rem;
  }

  .stat-icon {
    width: 3rem;
    height: 3rem;
  }

  .stat-text {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}

@media (max-width: 480px) {
  .impact-section {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .section-description {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .stat-card {
    width: 250px;
    height: 350px;
    padding: 1rem 0 2rem;
  }

  .stat-icon {
    width: 2.5rem;
    height: 2.5rem;
  }

  .stat-text {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.disclaimer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: 4rem 7.5rem;
  background-color: #f5f5f7;
  width: 100%;
}

.container7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 1200px;
}

.section-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #c82c20;
  border-radius: 2rem;
}

.header-label {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.75rem;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.header-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section-title {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1d1d1f;
  text-align: left;
  line-height: 2.5rem;
  margin-bottom: 8px;
}

.section-subtitle {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #1d1d1f;
  text-align: center;
  line-height: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-subtitle:hover {
  color: #3f8ccb;
}

.disclaimer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

.disclaimer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  background: linear-gradient(103deg, rgba(63, 140, 203, 0.2) 30%, rgba(141, 199, 64, 0.2) 100%);
  border-radius: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), inset 1px 0 0 rgba(255, 255, 255, 0.32);
  min-width: 280px;
  max-width: 320px;
}

.disclaimer-title {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1d1d1f;
  text-align: center;
  line-height: 1.75rem;
  margin: 0;
}

.disclaimer-text {
  font-family:  "Inter", "Roboto", Helvetica, sans-serif;;
  font-weight: 400;
  font-size: 1rem;
  color: #1d1d1f;
  text-align: left;
  line-height: 1.5rem;
  margin: 0;
}

.emergency-link {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 600;
  color: #3f8ccb;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.emergency-link:hover {
  color: #2a6ca6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 2rem 2rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 2.25rem;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .disclaimer-item {
    min-width: 250px;
    padding: 1.5rem 0.75rem;
  }

  .disclaimer-title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .disclaimer-text {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }
}

@media (max-width: 480px) {
  .disclaimer-section {
    padding: 1.5rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.75rem;
  }

  .section-subtitle {
    font-size: 0.875rem;
    line-height: 1.125rem;
  }

  .disclaimer-item {
    min-width: 200px;
    padding: 1rem 0.5rem;
  }

  .disclaimer-title {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  .disclaimer-text {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}


/* Container */
.partner-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  gap: 24px;
}

/* Title */
.partner-title-wrapper {
  text-align: center;
}
.partner-title {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1d1d1f;
  margin: 0;
}

/* Logos */
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  width: 100%;
  max-width: 1200px;
}
.partner-logo {
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.partner-logo:hover {
  transform: scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .partner-logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
  }
  .partner-logo {
    height: 60px;
    flex: 0 0 auto;
  }
  .partner-logos::-webkit-scrollbar {
    display: none;
  }
}

/* Fade-in Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Base classes - hidden by default, no animation until triggered */
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

/* Active classes - applied when element comes into view */
.fade-in.animate {
  opacity: 1;
}

.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes for staggered animations */
.fade-in-delay-1.animate {
  transition-delay: 0.2s;
}

.fade-in-delay-2.animate {
  transition-delay: 0.4s;
}

.fade-in-delay-3.animate {
  transition-delay: 0.6s;
}

.fade-in-delay-4.animate {
  transition-delay: 0.8s;
}

.fade-in-delay-5.animate {
  transition-delay: 1s;
}
