@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Open Sans", sans-serif;
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  font-size: 62.5%;
}

body {
  min-height: 100%;
  line-height: 1.2;
  color: #333333;
  background-color: #f4f7fc;
}

body, form, input, select, textarea, button {
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  font-weight: 500;
  color: #00ADEE;
  transition: color 0.3s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
}

.site-header {
  background-color: #fff;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 1.4rem 0;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .logo {
  max-width: 20rem;
}
.site-header .logo img {
  width: auto;
}
.site-header .nav {
  display: flex;
  justify-content: center;
}
.site-header .nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3.2rem;
}
.site-header .nav .menu .item {
  position: relative;
}
.site-header .nav .menu .link {
  color: #0D2C4F;
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
}
.site-header .nav .menu .link:hover {
  color: #00adee;
}
.site-header .nav .menu .link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #00adee;
  transition: width 0.3s ease;
}
.site-header .nav .menu .link:hover::after {
  width: 100%;
}
.site-header .mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
.site-header .mobile-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: #0D2C4F;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header .mobile-menu {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  height: 100vh;
  max-width: 35rem;
  width: 80%;
  position: fixed;
  top: 0;
  right: -100%;
  padding: 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.site-header .mobile-menu .active {
  right: 0;
}
.site-header .mobile-menu .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.1rem solid #f0f0f0;
}
.site-header .mobile-menu .logo-img {
  height: 3rem;
  width: auto;
}
.site-header .mobile-menu .close {
  background: none;
  border: none;
  font-size: 24px;
  color: #0D2C4F;
  cursor: pointer;
  padding: 5px 10px;
}
.site-header .mobile-menu .list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}
.site-header .mobile-menu .item {
  margin-bottom: 15px;
}
.site-header .mobile-menu .link {
  font-weight: 600;
  font-size: 1.1em;
  color: #0D2C4F;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}
.site-header .mobile-menu .link:hover {
  color: #00ADEE;
}
@media (max-width: 960px) {
  .site-header .nav, .site-header .cta {
    display: none;
  }
  .site-header .mobile-toggle {
    display: block;
  }
  .site-header .container {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .site-header .mobile-menu {
    width: 100%;
    max-width: none;
  }
}

.hero {
  background-color: #008cbf;
  color: #ffffff;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  opacity: 0.4;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3.2rem;
}
.hero .text {
  padding: 8rem 0;
  flex: 1;
  z-index: 100;
}
.hero .partnership-badge {
  background-color: rgba(255, 255, 255, 0.1490196078);
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9em;
  display: inline-block;
  margin-bottom: 2rem;
  font-weight: 600;
}
.hero h1 {
  font-weight: 700;
  font-size: 3em;
  margin-bottom: 10px;
  line-height: 1.2;
  color: #ffffff;
}
.hero h1 .highlight {
  color: #FF6B6B;
}
.hero h2 {
  font-weight: 400;
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #ffffff;
}
.hero .benefits {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}
.hero .benefits .item {
  margin-bottom: 10px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}
.hero .checkmark {
  color: #4CAF50;
  margin-right: 10px;
  font-size: 1.2em;
}
.hero .cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-align: center;
  background-color: #00ADEE;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.hero .cta-button:hover {
  background-color: #008cbf;
  transform: translateY(-2px);
}
.hero .image {
  min-height: 100%;
  width: 100%;
  display: flex;
  align-items: baseline;
}
.hero .image img {
  max-height: 600px;
  padding-top: 20px;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3.2rem;
    text-align: center;
  }
  .hero .image img {
    display: none;
  }
}

.benefits > .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}
.benefits .item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefits .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.benefits .item h3 {
  font-size: 2rem;
  margin-bottom: 1.6rem;
  font-weight: 600;
  color: #0D2C4F;
}
.benefits .item p {
  font-size: 0.95em;
  color: #555555;
}
.benefits .benefit-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .benefits .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefits .text-section h2 {
    font-size: 2em;
  }
}

.discount {
  background-color: #0D2C4F;
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
.discount header .title, .discount header .sub-title {
  color: #fff !important;
}
.discount > .container {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: rgba(255, 255, 255, 0.0784313725);
  text-align: left;
  padding: 40px;
  border-radius: 10px;
}
.discount .offer {
  flex: 1;
  text-align: center;
}
.discount .offer .offer-badge {
  display: inline-block;
  background-color: #ff3636;
  font-size: 0.9em;
  color: #ffffff;
  margin: 0 0 1rem;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
}
.discount .offer p {
  font-size: 1.2em;
  margin-bottom: 1.4rem;
}
.discount .offer .discount-value-large {
  font-size: 8rem;
  font-weight: 900;
  color: #1AC3F3;
  line-height: 1;
  margin-bottom: 5px;
}
.discount .offer .discount-value-large .percent-sign {
  font-size: 0.5em;
  vertical-align: super;
  margin-right: 1rem;
}
.discount .offer .off-text-large {
  font-size: 0.3em;
  font-weight: 700;
  color: #0D2C4F;
  background-color: #ffffff;
  padding: 6px 10px;
  border-radius: 5px;
  text-transform: uppercase;
  position: relative;
  top: -20px;
  margin-left: 5px;
}
.discount .offer .discount-condition {
  font-size: 1.1em;
  margin-bottom: 25px;
}
.discount .terms h3 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}
.discount .terms ul {
  line-height: 1.5;
  margin-bottom: 1.6rem;
}
.discount .terms p {
  margin-bottom: 8px;
  color: #e0e0e0;
}
@media (max-width: 768px) {
  .discount .container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3.2rem;
    text-align: center;
    margin: 0 4rem;
  }
}

.testimonials > .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.2rem;
}
.testimonials .testimonial-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.testimonials .testimonial-quote {
  font-style: italic;
  color: #555555;
  margin-bottom: 20px;
  font-size: 1em;
  position: relative;
  padding-left: 25px;
}
.testimonials .testimonial-quote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 2.5em;
  color: #00ADEE;
  position: absolute;
  left: -5px;
  top: -10px;
}
.testimonials .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}
.testimonials .author-initials {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00ADEE;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
}
.testimonials .author-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #0D2C4F;
  margin: 0;
}
.testimonials .author-title {
  font-size: 0.9em;
  color: #777777;
  margin: 0;
}
@media (max-width: 768px) {
  .testimonials .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.contact {
  background-color: #e9f2ff;
}
.contact header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.contact > .container {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.contact > .container ul {
  font-size: 1.8rem;
  line-height: 1.6;
}
.contact footer {
  text-align: center;
  margin-top: 2.4rem;
}
.contact footer .contact-info {
  color: #555555;
  margin-bottom: 1.2rem;
}
.contact footer .terms-notice {
  color: #777777;
}
@media (max-width: 768px) {
  .contact .container {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 3.2rem;
    text-align: center;
    margin: 0 4rem;
  }
}

.site-footer {
  background-color: #0D2C4F;
  color: #e0e0e0;
  padding: 30px 0;
  text-align: center;
}
.site-footer p {
  margin: 5px 0;
  font-size: 0.9em;
}
.site-footer a {
  color: #1AC3F3;
}

@media (max-width: 960px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 12px;
  }
}
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  padding: 10.4rem 0;
}
.section header {
  max-width: 960px;
  text-align: center;
  margin: 0 auto 4rem;
}
.section header .title {
  color: #0D2C4F;
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.section header .sub-title {
  color: #808080;
  font-weight: 300;
  margin-bottom: 2.8rem;
}

.btn {
  font-weight: 600;
  text-align: center;
  border-radius: 25px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
}
.btn-primary {
  background-color: #00ADEE;
  color: #ffffff;
}
.btn-sm {
  font-size: 1.6rem;
  padding: 1.4rem 2.4rem;
}
.btn-sm:hover {
  background-color: #008cbf;
  transform: translateY(-2px);
}
.btn-md {
  font-size: 1.8rem;
  padding: 1.6rem 2.8rem;
}
.btn-md:hover {
  background-color: #008cbf;
  transform: translateY(-2px);
}

.checkmark {
  color: #1AC3F3;
  margin-right: 0.6rem;
  font-size: 2rem;
}
/*# sourceMappingURL=main.css.map */
