* {
  font-family: "Montserrat", "Inter", sans-serif;
  margin: 0;
}

/* Navigation Bar */
.navbar__hamburger {
  display: none; /* Hidden by default */
  font-size: 24px;
  color: white;
  cursor: pointer;
  margin-left: 20px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #010069;
  padding: 10px 20px;
}

.logo img {
  height: 80px;
}

.navbar__links {
  list-style: none;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.navbar__links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.navbar__links li a:hover {
  color: #007bff;
}

/* Main Section */
.main-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

/* Text Area */
.main-section__text-area {
  flex: 1 1 55%; /* Takes 55% of the width */
}

.main-section__text-area h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #010069;
}

.main-section__text-area h2 {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 5px;
}

.main-section__text-area h4 {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.main-section__text-area h5 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #010069;
  margin-bottom: 20px;
}

.main-section__list {
  list-style: inside;
  font-size: 1rem;
  color: #333;
}

.main-section__list li {
  margin-bottom: 5px;
}

.compliance-section__actions-list {
  display: inline-block;
  text-align: left;
  font-size: 1rem;
  color: #333;
}

.compliance-section__actions-list li {
  margin-bottom: 5px;
}

.compliance-section_measures-list {
  list-style: inside;
  font-size: 1rem;
  color: #333;
  padding: 15px;
}

.compliance-section_measures-list li {
  margin-bottom: 5px;
}

/* Media Player Area */
.main-section__media-player {
  flex: 1 1 40%;
  background-color: #f4f4f4;
  padding: 0;
  border-radius: 8px;
  text-align: center;
  height: 27rem;
}

.main-section__media-player iframe {
  height: 90%;
  width: 95%;
}

.main-section__media-player h3 {
  font-size: 1.3rem;
  margin-top: 5px;
  margin-bottom: 10px;
}

/* Centered Button Container */
.button-container {
  flex: 1 1 100%; /* Full width to center the button */
  text-align: center; /* Center the button horizontally */
  margin-top: 10px; /* Add some spacing */
  margin-bottom: 20px;
}

/* Rounded Button */
.rounded-button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #555;
  background-color: #ffd51e; /* Default background color */
  border: none;
  border-radius: 25px; /* Rounded corners */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Hover Effect */
.rounded-button:hover {
  background-color: #c9a507; /* Darker yellow on hover */
  transform: translateY(-2px); /* Slight lift */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

/* Active (Clicked) State */
.rounded-button:active {
  background-color: #816a03; /* Even darker yellow when clicked */
  transform: translateY(0); /* Reset lift */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Reset shadow */
}

/* Focus State (for accessibility) */
.rounded-button:focus {
  outline: none; /* Remove default outline */
  box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.5); /* Custom focus ring */
}

/* Centered Section */
.pricing-section {
  text-align: center;
  margin-bottom: 20px;
}

.pricing-section__title--navy-blue--centered {
  margin-bottom: 20px;
}

.section__list--block {
  display: block;
  list-style: none;
  padding: 0;
}

.pricing-section__presentation {
  text-align: center;
  margin-bottom: 20px;
}

.compliance-section {
  text-align: center;
  margin-bottom: 20px;
}

.compliance-section__title--centered {
  margin-bottom: 20px;
}

.pricing-section__title--navy-blue {
  color: #010069;
}

.compliance-section__title {
  color: #010069;
}

.compliance-section__subtitle {
  color: #555;
  margin-bottom: 20px;
}

.pricing-section__side-by-side-lists-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.section__list--left,
.section__list--right {
  flex: 1;
  list-style: none;
  padding: 0;
  text-align: left;
}

/* Custom list item */
.section__list-itemsimple {
  padding: 0;
}

.section__list-item {
  padding-left: 1.5em; /* Add space for the custom bullet */
  position: relative;
}

.section__list-item::before {
  content: "\f058"; /* Font Awesome Unicode for the check-circle icon */
  font-family: "Font Awesome 6 Free"; /* Font Awesome font family */
  font-weight: 900; /* Required for solid icons */
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff; /* Icon color */
}

.section-separator-1 {
  background-color: #010069;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.section-separator-1__text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}

.section-separator-2 {
  background-color: #ffd51e;
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.section-separator-2__text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1d1d1d;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}

ul {
  list-style-type: none;
}

li {
  margin-left: 20px;
}

.center {
  margin: auto;
  width: 100%;
}

.testemony-overlap {
  position: relative;
  top: 40px;
  /*   left: 30px; */
}

.nobullet {
  list-style: none;
}

.card1 {
  display: block;
  position: sticky;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin: -150px;
  float: left;
  perspective: 500px;
}

.content {
  position: sticky;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);

  transition: transform 1s;
  transform-style: preserve-3d;
}

.card1:hover .content {
  transform: rotateY(180deg);
  transition: transform 0.5s;
}

.front,
.back {
  position: absolute;
  height: 100%;
  width: 100%;
  background: white;
  line-height: 300px;
  color: #03446a;
  text-align: center;
  font-size: 60px;
  border-radius: 5px;
  backface-visibility: hidden;
}

.back {
  background: #03446a;
  color: white;
  transform: rotateY(180deg);
}

.service-section__text {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  margin-top: 30px;
}
.service-section__text-smaller {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  color: #555;
  margin-bottom: 30px;
}

/* Card Grid Layout */
.card-grid {
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(300px, 1fr)
  ); /* Responsive grid */
  gap: 20px; /* Space between cards */
}

/* Card Styling */
.service-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 15%;
  height: auto;
  display: block;
  margin: auto;
  padding-top: 5%;
}

.service-card p {
  padding: 15px;
  font-size: 0.8rem;
  color: #333;
}

.service-card h2 {
  padding: 15px;
  font-size: 1rem;
  color: #010069;
}

.pricing-card {
  border: 2px solid #010069;
  border-radius: 16px 16px 0 0; /* Rounded corners only at the top */
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card h1 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.pricing-card h2 {
  font-size: 1.75rem;
  color: #010069;
  display: inline;
}

.pricing-card .special-text {
  display: inline;
}

.pricing-card .p0 {
  font-size: 0.9rem;
}

.pricing-card .p1 {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-card .p2 {
  width: 50%;
  font-size: 0.9rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

.pricing-card__top-stripe {
  height: 30px; /* Increased height to accommodate text */
  background-color: #010069; /* Blue color */
  display: flex;
  align-items: center; /* Vertically center the text */
  justify-content: center; /* Horizontally center the text */
  padding: 0 10px; /* Add some padding */
}

.pricing-card-stripe-text {
  color: white; /* White text color */
  font-size: 0.75rem;
  font-weight: bold;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.compliance-card {
  width: 90%;
  border: 2px solid #010069;
  border-radius: 16px 16px 0 0; /* Rounded corners only at the top */
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compliance-card ul {
  margin-top: 10px;
}

.compliance-card li:last-child {
  margin-bottom: 30px;
}

.compliance-card__top {
  height: 30px; /* Increased height to accommodate text */
  background-color: #010069; /* Blue color */
  display: flex;
  align-items: center; /* Vertically center the text */
  justify-content: center; /* Horizontally center the text */
  padding: 0 10px; /* Add some padding */
}

.compliance-card__stripe-text {
  color: white; /* White text color */
  font-size: 0.75rem;
  font-weight: bold;
}

.compliance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.overlap {
  position: relative;
  bottom: 40px;
  /*   left: 30px; */
}

.card__testemony-rounded-button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  color: #555;
  background-color: #c1c1c1; /* Default background color */
  border: none;
  border-radius: 25px; /* Rounded corners */
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Centered Button at the Bottom */
.card__button__container {
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.card__button {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  background-color: #007bff; /* Blue color */
  border: none;
  border-radius: 25px; /* Rounded corners */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card__button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card__button:active {
  background-color: #004080; /* Even darker blue when clicked */
  transform: translateY(0);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.5);
}

.testemony {
  background-color: #010069;
  height: 300px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.testemony-card-grid {
  background-color: #010069;
  padding-top: 20px;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr)
  ); /* Responsive grid */
  gap: 20px; /* Space between cards */
}

.testemony-card {
  margin-top: 10px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #141414;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  background-color: #f0efef;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testemony-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.testemony-card--stars {
  font-size: 1rem;
  content: "⭐⭐⭐⭐⭐";
  margin-top: 10px;
  margin-bottom: 20px;
}

.testemony-card--text {
  font-size: 0.8rem;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 20px;
}

.testemony-card--customer {
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Finala section and footer */

.contact-section {
  display: flex;
  justify-content: space-between;
  background-color: #003366; /* Navy blue */
  color: white;
  padding: 40px 20px;
}

.contact-section__contact,
.contact-section__form {
  flex: 1;
  padding: 20px;
}

.contact-section__title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-section__info p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.contact-section__info i {
  margin-right: 10px;
  color: #007bff; /* Blue icon color */
}

/* Lead Form */
.contact-section__form-fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-section__form-fields input,
.contact-section__form-fields textarea {
  padding: 10px;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-section__form-fields textarea {
  resize: vertical;
}

.contact-section__captcha {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-section__captcha input {
  width: 20px;
  height: 20px;
}

.contact-section__submit-button {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  background-color: #007bff; /* Blue button */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-section__submit-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

/* Footer */
.footer {
  display: flex;
  background-color: #002244; /* Darker navy blue */
  color: white;
  text-align: center;
  padding: 20px;
}

.footer-container {
  display: flex;
  width: 100%;
}

.footer-container__text-area {
  width: 50%;
}

.footer-container__nav-area {
  width: 50%;
}

.footer__logo img {
  height: 50px;
}

.footer__copyright {
  margin-left: 20px;
  margin-top: 5px;
  font-size: 0.7rem;
}

.footer-nav {
  display: flex;
}

.footer-nav__list {
  margin-top: 20px;
  margin-left: 100px;
  font-size: 0.7rem;
  display: flex;
}

.footer-nav__list li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.whatsapp {
  text-decoration: none;
  color: white;
  margin-bottom: 5px;
}

.small-text {
  margin-left: 10px;
  font-size: 0.7rem;
  color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar__hamburger {
    display: block;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar__links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #333;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .navbar__links--active {
    display: flex; /* Show nav links when active */
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav__list {
    margin-left: 0;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .main-section {
    flex-direction: column;
  }

  .main-section__text-area,
  .main-section__media-player {
    flex: 1 1 100%; /* Full width on smaller screens */
  }

  .main-section__text-area h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #010069;
  }

  .main-section__text-area h2 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 5px;
  }

  .main-section__text-area h4 {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
  }

  .main-section__text-area h5 {
    font-size: 0.75rem;
    font-weight: 600;
    color: #010069;
    margin-bottom: 10px;
  }

  .main-section__list {
    list-style: inside;
    font-size: 0.75rem;
    color: #333;
  }

  .main-section__list li {
    margin-bottom: 3px;
  }

  .pricing-section__side-by-side-lists-container {
    flex-direction: column;
  }

  .section-separator-1 {
    flex-direction: column;
    height: 80px;
  }

  .section-separator-2 {
    flex-direction: column;
    height: 100px;
  }

  .contact-section {
    flex-direction: column;
  }

  .contact-section__contact,
  .contact-section__form {
    padding: 10px;
  }

  .contact-section__title {
    font-size: 1.5rem;
  }

  .footer__copyright {
    font-size: 0.5rem;
  }
}
