html {
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  background-color: #f8fafc;
  color: #2D2D2D;
}

* {
  box-sizing: border-box;
}

jaspr-hero-section, jaspr-header, jaspr-app {
  display: contents;
}

.layout-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.layout-wrapper > *:nth-child(2) {
  flex: 1;
}

.home-layout {
  position: relative;
}
.home-layout .decorative-lines {
  position: relative;
  width: 100%;
  height: 0;
  z-index: 10;
  pointer-events: none;
}
.home-layout .decorative-lines .line-cyan, .home-layout .decorative-lines .line-blue {
  position: absolute;
  height: 10px;
  border-radius: 5px;
  transform: rotate(-45deg);
  transform-origin: left center;
}
.home-layout .decorative-lines .line-cyan {
  background: linear-gradient(90deg, #282599 -0.01%, #0055C3 15%, #009BD5 35%);
  top: 2vw;
  left: -2vw;
  width: 20vw;
  max-width: 300px;
  min-width: 150px;
}
.home-layout .decorative-lines .line-blue {
  background: linear-gradient(270deg, #282599 30%, #0055C3 85%, #009BD5 120%);
  top: 6vw;
  left: -2vw;
  width: 14vw;
  max-width: 200px;
  min-width: 100px;
}

.main-header {
  position: fixed;
  top: 39px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1173.76px;
  height: 57.76px;
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 66px;
  padding: 12px 22px;
  border-bottom: 1px solid #D3D3D3;
  box-shadow: 0px 4px 8.8px 0px rgba(0, 0, 0, 0.2509803922);
  z-index: 1000;
  backdrop-filter: blur(12px);
}
.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
.main-header .container .logo {
  height: 28px;
  display: block;
}
.main-header .container .hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.main-header .container .hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2D2D2D;
  transition: all 0.3s ease;
}
.main-header .container .hamburger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.main-header .container .hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.main-header .container .hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.main-header .container .main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}
.main-header .container .main-nav ul li a {
  text-decoration: none;
  color: #2D2D2D;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}
.main-header .container .main-nav ul li a.active, .main-header .container .main-nav ul li a:hover {
  color: #009BD5;
}
.main-header .container .lang-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.main-header .container .lang-selector img {
  width: 20px;
  height: 20px;
}
.main-header .container .lang-selector span {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  color: #2D2D2D;
  font-size: 0.95rem;
}
.main-header .container .icon-container {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header .container .icon-container i {
  font-size: 24px;
  color: #2D2D2D;
}
@media (max-width: 768px) {
  .main-header {
    border-radius: 20px;
    padding: 10px 20px;
  }
  .main-header .container .hamburger-btn {
    display: flex;
    z-index: 1001;
  }
  .main-header .container .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .main-header .container .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
  }
  .main-header .container .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .main-header .container .lang-selector {
    display: none;
  }
}

.main-footer {
  background-color: #101828;
  color: #ffffff;
  width: 100%;
  margin: 0;
}
.main-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 4rem 5% 3rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.main-footer .footer-content .footer-info {
  max-width: 400px;
}
.main-footer .footer-content .footer-info .footer-logo {
  height: 40px;
  margin-bottom: 1.5rem;
}
.main-footer .footer-content .footer-info p {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}
.main-footer .footer-content .footer-social h4 {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.main-footer .footer-content .footer-social .social-icons {
  display: flex;
  gap: 1.5rem;
}
.main-footer .footer-content .footer-social .social-icons a {
  text-decoration: none;
}
.main-footer .footer-content .footer-social .social-icons a i {
  font-size: 24px;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
.main-footer .footer-content .footer-social .social-icons a:hover i {
  opacity: 0.7;
}
.main-footer .footer-bottom {
  padding: 2rem 5%;
}
.main-footer .footer-bottom p {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 16px 32px;
  background-color: #F8FAFC;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 8.8px 0 rgba(0, 0, 0, 0.25);
}
.cookie-banner .cookie-text {
  color: #2D2D2D;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}
.cookie-banner .cookie-btn {
  padding: 8px 16px;
  background-color: #009BD5;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-weight: bold;
  font-family: "Lato", sans-serif;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 0 8rem 5%;
  background-color: #f8fafc;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-section .hero-content {
  flex: 1;
  max-width: 50%;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
  transform: translateY(calc(var(--scroll-y, 0px) * -0.25));
  opacity: 0;
}
.hero-section .hero-content.animate-in {
  animation: fadeInLeft 500ms ease-in-out forwards;
}
.hero-section .hero-content.already-visible {
  opacity: 1;
  transform: translateY(calc(var(--scroll-y, 0px) * -0.25));
  animation: none;
}
.hero-section .hero-content h1 {
  font-family: "Lato", sans-serif;
  font-size: 64px;
  color: #2D2D2D;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: normal;
}
.hero-section .hero-content p {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  color: #2D2D2D;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
}
.hero-section .hero-content .btn-primary {
  background-color: #009BD5;
  color: #ffffff;
  padding: 10px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  display: inline-block;
}
.hero-section .hero-visuals {
  position: absolute;
  right: -8vw;
  top: 50%;
  transform: translateY(calc(-50% + var(--scroll-y, 0px) * -0.15));
  width: 60vw;
  height: 80vh;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-section .hero-visuals img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  opacity: 0;
}
.hero-section .hero-visuals img.animate-in {
  animation: fadeInRight 500ms ease-in-out 250ms forwards;
}
.hero-section .hero-visuals img.already-visible {
  opacity: 1;
  animation: none;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate(-50px, calc(var(--scroll-y, 0px) * -0.25));
  }
  to {
    opacity: 1;
    transform: translate(0, calc(var(--scroll-y, 0px) * -0.25));
  }
}
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-indicator lottie-player {
  width: 64px;
  height: 64px;
  opacity: 1;
  display: block;
}
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

.services-section {
  padding: 5rem 5%;
  background: rgba(1, 155, 213, 0.0509803922);
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services-section .section-header {
  max-width: 800px;
  margin: 0 auto 4rem auto;
}
.services-section .section-header .subtitle {
  color: #009BD5;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}
.services-section .section-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  color: #2D2D2D;
  margin-bottom: 1rem;
}
.services-section .section-header p {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: #2D2D2D;
  line-height: 1.5;
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.services-section .services-grid .service-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E0E0;
  opacity: 0;
}
.services-section .services-grid .service-card.animate-in {
  animation: fadeInUp 800ms ease-out forwards;
}
.services-section .services-grid .service-card.animate-in:nth-child(1) {
  animation-delay: 0ms;
}
.services-section .services-grid .service-card.animate-in:nth-child(2) {
  animation-delay: 200ms;
}
.services-section .services-grid .service-card.animate-in:nth-child(3) {
  animation-delay: 400ms;
}
.services-section .services-grid .service-card.already-visible {
  opacity: 1;
  transform: translateY(0);
  animation: none;
}
.services-section .services-grid .service-card .icon-container {
  width: 50px;
  height: 50px;
  background-color: rgba(0, 155, 213, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.services-section .services-grid .service-card .icon-container i {
  font-size: 24px;
  color: #009BD5;
}
.services-section .services-grid .service-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: #2D2D2D;
  margin-bottom: 0.8rem;
}
.services-section .services-grid .service-card p {
  font-family: "Lato", sans-serif;
  color: #2D2D2D;
}

.services-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.process-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 5%;
  background-color: #f8fafc;
  gap: 4rem;
}
.process-section .process-visuals {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}
.process-section .process-visuals img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.process-section .process-content {
  flex: 1;
}
.process-section .process-content h2 {
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  color: #2D2D2D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.process-section .process-content p {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #2D2D2D;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.process-section .process-content .btn-primary {
  background-color: #009BD5;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  display: inline-block;
}

.flutter-section {
  padding: 5rem 5%;
  background-color: #ffffff;
}
.flutter-section .flutter-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 4rem;
}
.flutter-section .flutter-header h2 {
  flex: 1;
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  color: #2D2D2D;
  line-height: 1.2;
}
.flutter-section .flutter-header p {
  flex: 1;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: #2D2D2D;
  line-height: 1.6;
}
.flutter-section .flutter-tabs {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
}
.flutter-section .flutter-tabs .tab {
  background: none;
  border: none;
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: #2D2D2D;
  cursor: pointer;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.flutter-section .flutter-tabs .tab.active {
  background-color: #009BD5;
  color: #ffffff;
}
.flutter-section .flutter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
.flutter-section .flutter-content .text-content {
  flex: 1;
}
.flutter-section .flutter-content .text-content p {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: #2D2D2D;
  line-height: 1.6;
  white-space: pre-wrap;
}
.flutter-section .flutter-content .image-content {
  flex: 1;
}
.flutter-section .flutter-content .image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section {
  padding: 5rem 5%;
  background-color: #f8fafc;
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.faq-section .section-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  color: #2D2D2D;
  margin-bottom: 1rem;
}
.faq-section .section-header p {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #555;
}
.faq-section .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-list .faq-item {
  border-bottom: 1px solid #E0E0E0;
  padding: 1.5rem 0;
}
.faq-section .faq-list .faq-item .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-section .faq-list .faq-item .faq-question h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #2D2D2D;
  font-weight: 500;
}
.faq-section .faq-list .faq-item .faq-question .icon {
  color: #888;
  font-family: monospace;
  font-size: 1.2rem;
}
.faq-section .faq-list .faq-item .faq-answer {
  display: none;
  padding-top: 1rem;
}
.faq-section .faq-list .faq-item .faq-answer p {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  white-space: pre-wrap;
}
.faq-section .faq-list .faq-item.active .faq-answer {
  display: block;
}

.process-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14rem 5% 5rem 5%;
  background-color: #f8fafc;
  gap: 4rem;
}
.process-hero .hero-visuals {
  flex: 1;
}
.process-hero .hero-visuals img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.process-hero .hero-content {
  flex: 1;
}
.process-hero .hero-content h1 {
  font-family: "Lato", sans-serif;
  font-size: 3rem;
  color: #2D2D2D;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.process-hero .hero-content p {
  font-family: "Lato", sans-serif;
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  white-space: pre-wrap;
}
.process-hero .hero-content .btn-primary {
  background-color: #009BD5;
  color: #ffffff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.process-hero .hero-content .btn-primary:hover {
  background-color: rgb(0, 117.8873239437, 162);
}

.benefits-section {
  padding: 5rem 5%;
  background-color: #f8fafc;
}
.benefits-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.benefits-section .section-header .subtitle {
  color: #009BD5;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.benefits-section .section-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 2.8rem;
  color: #2D2D2D;
}
.benefits-section .benefits-bento {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.benefits-section .benefits-bento .small-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.5rem;
  height: 100%;
}
.benefits-section .benefits-bento .bento-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid #E0E0E0;
  display: flex;
  flex-direction: column;
}
.benefits-section .benefits-bento .bento-card .icon-wrapper {
  width: 45px;
  height: 45px;
  background-color: rgba(0, 155, 213, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.benefits-section .benefits-bento .bento-card .icon-wrapper i {
  font-size: 22px;
  color: #009BD5;
}
.benefits-section .benefits-bento .bento-card h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.3rem;
  color: #2D2D2D;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.benefits-section .benefits-bento .bento-card p {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.benefits-section .benefits-bento .bento-card.tall-card {
  height: 100%;
}
.benefits-section .benefits-bento .bento-card.tall-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.benefits-section .benefits-bento .bento-card.tall-card .image-container {
  flex: 1;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #E0E0E0;
}
.benefits-section .benefits-bento .bento-card.tall-card .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.benefits-section .benefits-bento .bento-card.center-content {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.benefits-section .benefits-bento .bento-card.center-content h3 {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .benefits-section .benefits-bento {
    grid-template-columns: 1fr;
  }
  .benefits-section .benefits-bento .tall-card {
    height: auto;
  }
  .benefits-section .benefits-bento .tall-card .image-container {
    height: 300px;
    flex: none;
  }
}
@media (max-width: 768px) {
  .benefits-section .benefits-bento .small-cards-grid {
    grid-template-columns: 1fr;
  }
}

.discovery-section {
  padding: 5rem 5%;
  background-color: #ffffff;
  text-align: center;
}
.discovery-section .section-header {
  max-width: 900px;
  margin: 0 auto 4rem auto;
}
.discovery-section .section-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  color: #009BD5;
  margin-bottom: 0.5rem;
}
.discovery-section .section-header .subtitle {
  color: #2D2D2D;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1.5rem;
}
.discovery-section .section-header p {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  white-space: pre-wrap;
}
.discovery-section .discovery-visuals {
  max-width: 1000px;
  margin: 0 auto;
}
.discovery-section .discovery-visuals img {
  width: 100%;
  height: auto;
}

.pricing-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 5%;
  background-color: #ffffff;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
}
.pricing-section .pricing-content {
  flex: 1;
}
.pricing-section .pricing-content h2 {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  color: #2D2D2D;
  margin-bottom: 1rem;
}
.pricing-section .pricing-content p {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.5;
}
.pricing-section .pricing-content .features-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pricing-section .pricing-content .features-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.pricing-section .pricing-content .features-list .feature-item .feature-icon {
  width: 50px;
  height: 50px;
  background-color: #E6F5FC;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-section .pricing-content .features-list .feature-item .feature-icon i {
  font-size: 24px;
  color: #009BD5;
}
.pricing-section .pricing-content .features-list .feature-item .feature-text h4 {
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #2D2D2D;
  margin-bottom: 0.5rem;
}
.pricing-section .pricing-content .features-list .feature-item .feature-text p {
  font-family: "Lato", sans-serif;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}
.pricing-section .pricing-card-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}
.pricing-section .pricing-card-wrapper .pricing-card {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-header {
  background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
  padding: 3rem 2rem;
  color: #ffffff;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-header .pricing-label {
  font-family: "Lato", sans-serif;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-header .price-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-header .price-display .price-prefix {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  opacity: 0.9;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-header .price-display .price-amount {
  font-family: "Lato", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-header p {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.8;
  margin: 0;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-body {
  padding: 3rem 2rem;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-body .benefits-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-body .benefits-checklist li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-body .benefits-checklist li .check-icon {
  color: #2ECC71;
  font-size: 20px;
  background-color: rgba(46, 204, 113, 0.1);
  border-radius: 50%;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-body .benefits-checklist li span {
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  color: #2D2D2D;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-body .btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background-color: #4A90E2;
  color: #ffffff;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-body .btn-secondary i {
  font-size: 20px;
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-body .btn-secondary:hover {
  background-color: rgb(34.3857142857, 117.3857142857, 214.6142857143);
}
.pricing-section .pricing-card-wrapper .pricing-card .pricing-body .pricing-footer-note {
  display: block;
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 0.85rem;
  color: #888;
}
@media (max-width: 992px) {
  .pricing-section {
    flex-direction: column;
  }
  .pricing-section .pricing-card-wrapper {
    width: 100%;
  }
}

.blog-section {
  padding: 5rem 5%;
  background-color: #ffffff;
}
.blog-section .section-header {
  margin-bottom: 3rem;
}
.blog-section .section-header .subtitle {
  color: #009BD5;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 0.5rem;
}
.blog-section .section-header h2 {
  font-family: "Lato", sans-serif;
  font-size: 2.5rem;
  color: #2D2D2D;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-section .blog-grid .blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E0E0E0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.blog-section .blog-grid .blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog-section .blog-grid .blog-card .card-content {
  padding: 1.5rem;
  flex: 1;
}
.blog-section .blog-grid .blog-card .card-content .category {
  color: #888;
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
}
.blog-section .blog-grid .blog-card .card-content h3 {
  font-family: "Lato", sans-serif;
  font-size: 1.4rem;
  color: #2D2D2D;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.blog-section .blog-grid .blog-card .card-content p {
  font-family: "Lato", sans-serif;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
.blog-section .center-action {
  text-align: center;
}
.blog-section .center-action .btn-primary {
  background-color: #009BD5;
  color: #ffffff;
  padding: 0.8rem 2.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  display: inline-block;
}

.blog-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*# sourceMappingURL=styles.css.map */
