body {
  margin: 0;
  font-family: "Lato", sans-serif;
  background: linear-gradient(180deg, #C6E1FE 0%, #EAF4FF 50%);
  color: #333333;
  min-height: 100vh;
}

h1,
h2,
h3,
.nav-link {
  font-family: "Lato", sans-serif;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 576px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.text-center {
  text-align: center;
}

.text-primary {
  color: #2599CE;
}

@media (max-width: 768px) {
  h1 {
    font-size: 32px !important;
  }
  h2 {
    font-size: 28px !important;
  }
}
header {
  padding-top: 32px;
  padding-bottom: 20px;
  position: relative;
  width: 100%;
  z-index: 1000;
}
header .nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .logo-container img {
  height: 70px;
  width: 170px;
  display: flex;
}
header .hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  z-index: 101;
}
header .hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #2599CE;
  border-radius: 2px;
  transition: all 0.3s ease;
}
header .hamburger-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
header .hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
header .hamburger-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
header .nav-menu {
  display: flex;
  align-items: center;
  gap: 95px;
}
header .nav-menu a {
  text-decoration: none;
  color: #666666;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  line-height: 1;
}
header .nav-menu a:hover {
  color: #2599CE;
}
header .nav-menu a.active {
  color: #2599CE;
  font-weight: 700;
}
header .nav-menu .btn-contact {
  background-color: #2599CE;
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  box-sizing: border-box;
}
header .nav-menu .btn-contact:hover {
  background-color: #207ab3;
}
@media (max-width: 1400px) {
  header .nav-menu {
    gap: 75px;
  }
}
@media (max-width: 1200px) {
  header .nav-menu {
    gap: 50px;
  }
}
@media (max-width: 1080px) {
  header {
    padding-top: 20px;
  }
  header .spacer {
    display: none;
  }
  header .hamburger-btn {
    display: flex;
  }
  header .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    box-shadow: none;
    z-index: 999;
  }
  header .nav-menu a {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    display: block;
  }
  header .nav-menu a:last-child {
    border-bottom: none;
  }
  header .nav-menu .btn-contact {
    width: 90%;
    margin: 20px 0;
  }
  header .nav-menu.is-open {
    max-height: 500px;
    padding-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f0f0f0;
  }
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: auto;
  padding: 150px 0;
}
.hero-section .hero-text {
  max-width: 50%;
}
.hero-section .hero-text h1 {
  font-size: 44px;
  color: #2599CE;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-section .hero-text p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 30px;
}
.hero-section .hero-text .store-buttons {
  display: flex;
  gap: 10px;
}
.hero-section .hero-text .store-buttons img {
  cursor: pointer;
}
.hero-section .hero-image {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 20px;
  }
  .hero-section .hero-text {
    max-width: 100%;
    margin-top: 30px;
  }
  .hero-section .hero-text .store-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-section .hero-image {
    max-width: 80%;
    margin: 0 auto;
  }
}

.scroll-indicator {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: -20px;
  margin-bottom: 40px;
}
.scroll-indicator img {
  width: 26px;
  height: 42px;
  opacity: 1;
  display: block;
}
@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

.features-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  gap: 60px;
}
.features-section .features-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.features-section .features-image-container img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}
.features-section .features-text {
  flex: 1;
}
.features-section .features-text h2 {
  font-size: 42px;
  color: #333333;
  margin-bottom: 30px;
}
.features-section .features-text p {
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
}
.features-section {
  /* RESPONSIVE FEATURES */
}
@media (max-width: 768px) {
  .features-section {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }
  .features-section .features-image-container {
    order: 1;
    width: 100%;
  }
  .features-section .features-image-container img {
    max-width: 70%;
  }
  .features-section .features-text {
    order: 2;
    max-width: 100%;
  }
}

.contact-section {
  padding: 20px 0 80px;
  text-align: center;
}
.contact-section .contact-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333333;
}
.contact-section .contact-title span {
  color: #2599CE;
  font-weight: bold;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
}

.contact-card {
  background: #ffffff;
  max-width: 1096px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 24px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card .form-group {
  width: 100%;
}
.contact-card .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333333;
  font-size: 14px;
  text-align: left;
}
.contact-card .form-group .form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  font-size: 16px;
  color: #333333;
  background-color: #ffffff;
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
}
.contact-card .form-group .form-input::placeholder {
  color: #BBB;
}
.contact-card .form-group .form-input:focus {
  border-color: #2599CE;
  outline: none;
}
.contact-card .phone-input-group {
  display: flex;
  gap: 10px;
}
.contact-card .country-dropdown {
  position: relative;
  width: 110px;
  height: 46px;
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  flex-shrink: 0;
}
.contact-card .country-dropdown select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.contact-card .country-dropdown .display-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  z-index: 1;
}
.contact-card .country-dropdown .display-value .flag {
  font-size: 20px;
  margin-right: 5px;
}
.contact-card .country-dropdown .display-value .code {
  color: #333333;
  font-weight: 500;
}
.contact-card .country-dropdown .display-value .arrow {
  color: #999;
  font-size: 12px;
  margin-left: auto;
}
.contact-card .phone-input {
  flex: 1;
}
.contact-card .btn-submit {
  width: 100%;
  background-color: #2599CE;
  color: #ffffff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.contact-card .btn-submit:hover {
  background-color: #207ab3;
}
@media (max-width: 768px) {
  .contact-card {
    padding: 20px;
  }
}

.page-title {
  text-align: center;
  font-size: 42px;
  color: #333333;
  margin-top: 40px;
  font-family: "Lato", sans-serif;
}

.page-subtitle {
  text-align: center;
  color: #666666;
  margin-bottom: 40px;
}

.white-card {
  background: #ffffff;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 40px auto;
  max-width: 800px;
}
.white-card .step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.white-card .step-item .step-number {
  background: rgba(37, 153, 206, 0.15);
  color: #2599CE;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}
.white-card .policy-document {
  color: #333333;
  line-height: 1.6;
  text-align: justify;
}
.white-card .policy-document h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
  color: #333333;
  text-transform: uppercase;
}
.white-card .policy-document h2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
  color: #2599CE;
  font-weight: 700;
}
.white-card .policy-document h3 {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #E0E0E0;
  text-transform: uppercase;
  color: #333333;
}
.white-card .policy-document h4 {
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #333333;
}
.white-card .policy-document p {
  margin-bottom: 15px;
  font-size: 15px;
}
.white-card .policy-document ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.white-card .policy-document ul li {
  margin-bottom: 8px;
  font-size: 15px;
}
.white-card .policy-document .legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 14px;
}
.white-card .policy-document .legal-table td,
.white-card .policy-document .legal-table th {
  border: 1px solid #E0E0E0;
  padding: 12px;
  vertical-align: top;
}
.white-card .policy-document .legal-table .label-col {
  background-color: #f9f9f9;
  font-weight: 700;
  width: 35%;
}
@media (max-width: 768px) {
  .white-card .policy-document .legal-table {
    display: block;
    width: 100%;
    overflow-x: auto;
  }
  .white-card .policy-document .legal-table .label-col {
    width: auto;
    min-width: 120px;
  }
  .white-card .policy-document h1 {
    font-size: 20px !important;
  }
  .white-card .policy-document h2 {
    font-size: 18px !important;
  }
}
.white-card .signature-section {
  margin-top: 20px;
  border-top: 1px solid transparent;
}
.white-card .signature-section p {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
}
.white-card .signature-section p .signature-image {
  width: 300px;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .white-card .signature-section .signature-image {
    width: 80px;
  }
  .white-card .signature-section {
    margin-top: 40px;
  }
}

.contact-box {
  padding-top: 40px;
  border-top: 1px solid #eee;
  margin-top: 40px;
  text-align: center;
}
.contact-box a {
  color: #2599CE;
  text-decoration: none;
  font-weight: 600;
}

footer {
  background-color: #2599CE;
  padding: 40px 0;
  color: #ffffff;
  margin-top: 80px;
}
footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer-logo-filter img {
  filter: brightness(0) invert(1);
  height: 50px;
}
footer .footer-right-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
footer .find-us-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
footer .store-buttons-row {
  display: flex;
  gap: 10px;
}
footer .store-buttons-row img {
  height: 40px;
  width: auto;
  cursor: pointer;
}
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  footer .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  footer .footer-right-section {
    align-items: center;
    width: 100%;
  }
  footer .store-buttons-row {
    justify-content: center;
    flex-wrap: wrap;
  }
}

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