@charset "UTF-8";
/* Import Fira Sans and Fira Code fonts from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Import other SCSS files */
/* Style for the navbar */
.navbar {
  background-color: #33550F;
  padding: 0.5rem 0;
  position: fixed;
  /* Fixes the navbar to the top of the viewport */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Style for the navbar container */
.navbar-container {
  background-color: #f7f7f7;
  padding: 0;
  max-width: 83%;
  height: 60px;
  margin: 0 auto;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Style for the logo */
.navbar-logo {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
}
.navbar-logo img {
  height: 100%;
  width: auto;
  max-height: 60px;
  object-fit: contain;
  margin-left: 1rem;
  border-radius: 15px;
}

/* Style for the menu */
.navbar-menu {
  list-style: none;
  padding: 0;
  display: flex;
  margin-right: 2rem;
}
.navbar-menu li {
  margin-right: 8px;
}
.navbar-menu .navbar-link {
  color: #30332C;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 8px;
  background-color: transparent;
}
.navbar-menu .navbar-link:hover, .navbar-menu .navbar-link.active {
  color: #F2F0F0;
  background-color: #496528;
  border-radius: 48px;
}
.navbar-menu .diagnostico-link {
  color: #F2F0F0;
  background-color: #76C31B;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 8px;
  border-radius: 48px;
}
.navbar-menu .diagnostico-link:hover, .navbar-menu .diagnostico-link.active {
  color: #eeffd8;
  background-color: #496528;
  border-radius: 48px;
}

.burger-menu-items {
  display: none;
}

@media (max-width: 760px) {
  .navbar-link,
  .diagnostico-link {
    display: none; /* Hide navbar links */
  }
  .navbar-container {
    position: relative; /* Keeps the positioning context for absolute children */
  }
  .navbar-menu {
    display: none; /* Ensure the menu is hidden */
    position: absolute; /* Take it out of the flow */
    z-index: 1; /* Place it behind the burger menu */
  }
  .burger-menu-container {
    position: absolute; /* Allow it to overlay */
    right: 20px; /* Adjust as necessary */
    cursor: pointer;
    z-index: 2; /* Place it above the hidden menu */
    margin-left: auto;
  }
  .burger-menu-items {
    display: flex; /* Show burger menu items */
  }
  .burger-menu-container {
    width: 100%;
  }
  #burger-menu {
    margin-left: auto; /* Pushes the burger menu to the right */
    cursor: pointer;
    height: 27px;
    width: 27px;
    position: relative; /* Set to relative for proper positioning of spans */
    z-index: 2;
  }
  #burger-menu span,
  #burger-menu span:before,
  #burger-menu span:after {
    background: #496528; /* Default color */
    display: block;
    height: 4px;
    width: 100%; /* Make spans take the full width of the container */
    opacity: 1;
    position: absolute;
    transition: 0.3s ease-in-out;
  }
  #burger-menu span:before,
  #burger-menu span:after {
    content: "";
  }
  #burger-menu span {
    right: 0px;
    top: 13px;
    width: 27px;
  }
  #burger-menu span:before {
    left: 0px;
    top: -10px;
    width: 16px;
  }
  #burger-menu span:after {
    left: 0px;
    top: 10px;
    width: 20px;
  }
  #burger-menu.close span,
  #burger-menu.close span:before,
  #burger-menu.close span:after {
    background: #f7f7f7; /* Change to white when the menu is closed */
  }
  #burger-menu.close span {
    transform: rotate(-45deg);
    top: 13px;
    width: 27px;
  }
  #burger-menu.close span:before {
    top: 0px;
    transform: rotate(90deg);
    width: 27px;
  }
  #burger-menu.close span:after {
    top: 0px;
    left: 0;
    transform: rotate(90deg);
    opacity: 0;
    width: 0;
  }
  /* Menu styles */
  #menu {
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    text-align: right; /* Aligns text to the right */
    padding-top: 20px;
    transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    align-items: flex-end; /* Align items to the right */
  }
  #menu.overlay {
    visibility: visible;
    opacity: 1;
    padding-top: 100px;
    background: rgba(0, 0, 0, 0.8);
    height: 100%; /* Ensure it covers the full screen */
  }
  #menu li {
    list-style: none;
  }
  #menu a {
    color: #f7f7f7;
    background-color: #30332C;
    display: block;
    font-size: 32px;
    margin-bottom: 30px;
    margin-right: 100px;
    text-decoration: none;
    text-align: right; /* Align links to the right */
  }
}
/* Ensure main content does not overlap the fixed navbar */
body {
  margin: 0;
  padding-top: 60px;
  /* Adjust based on the height of your navbar */
}

.footer {
  background-color: #30332C;
  color: #fff;
  padding: 150px 0;
  text-align: center;
  position: relative; /* Keeps the footer in the document flow */
  top: 200px;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  background-color: #33550F;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: absolute; /* Keeps the overlay effect */
  bottom: 5px; /* Adjust as needed */
  left: 0;
  right: 0;
  z-index: 2;
  box-shadow: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}

.footer-logo {
  margin: 30px 30px;
  display: flex;
  justify-content: center;
}

.footer-logo img {
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  width: 200px;
  height: auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: nowrap; /* Prevent wrapping */
}

.footer-col-1,
.footer-col-2,
.footer-col-3 {
  flex: 1;
  padding-top: 50px;
  text-align: center;
  box-sizing: border-box;
}

.footer-col-1,
.footer-col-2,
.footer-col-3 {
  min-width: 0; /* Allow columns to shrink */
}

.footer-col-1 {
  min-width: 150px; /* Minimum width to keep content from collapsing */
}

.footer-col-2 {
  min-width: 250px; /* Minimum width to keep content from collapsing */
  margin: 0 auto; /* Space between items */
}

.footer-col-2 h3 {
  margin-bottom: 15px; /* Space between the heading and list */
}

ul {
  list-style: none; /* Remove bullet points */
  padding: 0; /* Remove default padding */
}

.contact-item {
  display: flex; /* Use flexbox */
  align-items: center; /* Center items vertically */
  margin-bottom: 10px;
}

.contact-item a {
  width: 100%;
}

.contact-icon {
  margin-right: 10px; /* Space between icon and text */
  width: 24px; /* Set a fixed width for icons */
  height: auto; /* Maintain aspect ratio */
}

.footer-link {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Use inherited text color */
}

.footer-col-3 {
  min-width: 150px; /* Minimum width to keep content from collapsing */
}

.footer-col-2 img,
.footer-col-3 img {
  max-width: 30px;
  height: auto;
}

.footer-col-1 ul,
.footer-col-2 ul,
.footer-col-3 ul {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.footer-col-1 li,
.footer-col-2 li,
.footer-col-3 li {
  margin: 5px 0;
}

.footer-col-1 a,
.footer-col-2 a,
.footer-col-3 a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-col-1 a:hover,
.footer-col-2 a:hover,
.footer-col-3 a:hover {
  color: #ddd;
}

.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-menu li {
  margin: 0 15px;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ddd;
}

.footer-links h3 {
  color: #fff;
}

p {
  margin: 0;
  font-size: 14px;
}

.policy-title {
  color: #2c3e50;
  font-size: 24px;
  margin-bottom: 20px;
}

.policy-intro,
.policy-statement,
.policy-consent,
.policy-contact {
  margin-bottom: 15px;
  color: #2c3e50;
}

.policy-list {
  margin-left: 20px;
  color: #2c3e50;
}

.policy-item {
  margin-bottom: 10px;
  color: #2c3e50;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .footer {
    background-color: #30332C;
    color: #fff;
    padding: 300px 0;
    text-align: center;
    position: relative; /* Keeps the footer in the document flow */
    z-index: 1;
  }
  .footer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: #33550F;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: absolute; /* Keeps the overlay effect */
    bottom: 30px; /* Adjust as needed */
    left: 0;
    right: 0;
    z-index: 2;
    box-shadow: none;
  }
  .footer-columns {
    display: flex; /* Ensure flex container */
    flex-direction: column; /* Stack columns vertically */
    align-items: center; /* Center columns horizontally */
    width: 100%; /* Full width */
  }
  .footer-col-1,
  .footer-col-2,
  .footer-col-3 {
    width: 100%; /* Full width of the container */
    margin: 5px 0; /* Reduced spacing between columns */
    text-align: center; /* Center align text in columns */
  }
  .footer-col-1 img,
  .footer-col-2 img,
  .footer-col-3 img {
    display: block; /* Block level to remove extra space */
    margin: 0 auto; /* Center the image horizontally */
  }
  .footer-menu {
    display: flex; /* Flex container for menu items */
    flex-direction: column; /* Stack menu items vertically */
    align-items: center; /* Center align menu items */
    margin-top: 10px; /* Reduced top margin */
  }
  .footer-menu li {
    margin: 5px 0; /* Space between menu items */
  }
}
@media (max-width: 768px) {
  .footer {
    background-color: #30332C;
    color: #fff;
    padding: 300px 0;
    text-align: center;
    position: relative; /* Keeps the footer in the document flow */
    z-index: 1;
  }
  .footer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: #33550F;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: absolute; /* Keeps the overlay effect */
    bottom: 30px; /* Adjust as needed */
    left: 0;
    right: 0;
    z-index: 2;
    box-shadow: none;
  }
  .footer-columns {
    display: flex; /* Ensure flex container */
    flex-direction: column; /* Stack columns vertically */
    align-items: center; /* Center columns horizontally */
    width: 100%; /* Full width */
  }
  .footer-col-1,
  .footer-col-2,
  .footer-col-3 {
    width: 100%; /* Full width of the container */
    margin: 5px 0; /* Reduced spacing between columns */
    text-align: center; /* Center align text in columns */
  }
  .footer-col-1 img,
  .footer-col-2 img,
  .footer-col-3 img {
    display: block; /* Block level to remove extra space */
    margin: 0 auto; /* Center the image horizontally */
  }
  .footer-menu {
    display: flex; /* Flex container for menu items */
    flex-direction: column; /* Stack menu items vertically */
    align-items: center; /* Center align menu items */
    margin-top: 10px; /* Reduced top margin */
  }
  .footer-menu li {
    margin: 5px 0; /* Space between menu items */
  }
}
@media (max-width: 640px) {
  .footer {
    background-color: #30332C;
    color: #fff;
    padding: 300px 0;
    text-align: center;
    position: relative; /* Keeps the footer in the document flow */
    z-index: 1;
  }
  .footer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: #33550F;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: absolute; /* Keeps the overlay effect */
    bottom: 30px; /* Adjust as needed */
    left: 0;
    right: 0;
    z-index: 2;
    box-shadow: none;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 431px) {
  .footer {
    background-color: #30332C;
    color: #fff;
    padding: 500px 0;
    text-align: center;
    position: relative; /* Keeps the footer in the document flow */
    z-index: 1;
  }
  .footer-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    background-color: #33550F;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: absolute; /* Keeps the overlay effect */
    bottom: 30px; /* Adjust as needed */
    left: 0;
    right: 0;
    z-index: 2;
    box-shadow: none;
  }
  .footer-links {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
}
/* Main container styles */
.main {
  box-sizing: border-box;
  background: #F7FAF4;
  padding-top: 30px;
}

/* Flex container for the main section */
.main-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 2rem 0 2rem;
  width: 86%;
}

/* Styles for image and text content */
.image-content,
.text-content {
  flex: 1;
  box-sizing: border-box;
  min-width: 300px;
}

/* Image styles */
.image-content {
  max-width: 500px;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text content styles */
.main-text-content {
  color: #33550F;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 0;
  gap: 2rem;
  margin-right: 3rem;
  width: 50%; /* Ensure it uses the available width of its container */
  box-sizing: border-box; /* Include padding and border in width calculation */
}

.main h1 {
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.main-page-tile {
  font-size: 4rem;
}

.main-page-subtitle {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.text-content-small {
  width: 50%;
  box-sizing: border-box;
  padding: 0;
}

/* Contact button styles */
.contact-button {
  display: inline-block;
  background-color: #33550F;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 24px;
  transition: background-color 0.3s;
  margin-bottom: 3rem;
}

.contact-button:hover {
  color: #F2F0F0;
  background-color: #496528;
  border-radius: 48px;
}

.main-service-section {
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.main-service-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  gap: 2rem;
}

.main-service-content-title {
  text-align: center;
  display: block;
  width: 100%;
  margin-top: 3rem;
}

.main-service-content-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 80%;
  margin-top: 3rem;
  height: 100%;
}

.main-service-content-cards img {
  max-height: 200px;
  width: 100%; /* or a specific width if needed */
  object-fit: cover;
}

.main-service-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  max-width: 300px;
  max-height: 400px;
  margin-bottom: 4rem;
}

.main-container-service-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-top: 1rem;
}

.main-service-card-title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  margin-top: 1rem;
  flex: 1;
  min-height: 60px;
  overflow: hidden;
}

.main-service-card-title h2 {
  margin: 0;
  line-height: 1.2;
  word-wrap: break-word;
  white-space: normal;
  font-size: 1.2rem;
  max-height: 2.4em;
}

.main-container-service-content img {
  width: 100%;
  height: auto;
  display: block;
}

.main-container-service-content > div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.main-container-service-content div:last-child {
  font-size: 1rem;
}

.main-service-button-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: #33550F;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 24px;
  transition: background-color 0.3s;
  margin-top: 3rem;
}

.main-service-button-container:hover {
  color: #F2F0F0;
  background-color: #496528;
  border-radius: 48px;
}

/* About Section Styles */
.about-section {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: 82%;
  margin: 0 auto;
  padding: 4rem 0;
}

.about-content-title,
.about-content-text,
.about-content-image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.about-content-title {
  flex: 1;
  text-align: left;
  max-width: 30%;
  color: #4C7F17;
}

.about-content-text {
  flex: 2;
  text-align: end;
  width: auto;
  max-width: 35%;
  padding-top: 0;
}

.about-content-image {
  flex: 1;
  max-width: 35%;
  display: flex;
  align-items: flex-end;
  margin-left: 20px;
}

.about-content-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.clientes-section {
  padding: 4rem 0 4rem;
  margin: 0 auto;
  background-color: #ffffff;
  height: 100%;
}

.clientes-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 82%;
  margin: 0 auto;
  margin-bottom: 200px;
}

.clientes-card {
  padding: 0;
  max-height: 300px;
}

.clientes-content-title {
  text-align: left;
  margin: 0;
  padding: 0;
}

.clientes-content-cards {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 0;
  width: 100%;
  margin-top: 2rem;
}

.container-clientes-content {
  display: flex;
  flex-direction: row; /* Make items side by side */
  flex-wrap: wrap; /* Allow items to wrap when needed */
  justify-content: center;
  align-items: flex-start; /* Align items at the top */
  box-sizing: border-box;
  padding: 20px;
  width: 100%;
}

/* Balloon Styling */
.balloon-cliente {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 10px; /* Optional: control spacing between balloons */
  flex: 1 1 300px; /* Flex-grow and flex-basis */
  max-width: 300px;
}

.client-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  margin-bottom: -25px;
  border: 3px solid #4C7F17;
}

.balloon-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px; /* Add padding for some space around text */
  background-color: #f8f8f8; /* Optional: You can change background color */
  border-radius: 10px; /* Optional: Rounded corners for a balloon-like effect */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
  max-width: 600px; /* Optional: Set a max-width for the content */
  margin: 20px auto; /* Center the div horizontally */
}

.balloon-text h2 {
  font-size: 24px; /* Adjust as needed */
  font-weight: bold;
  margin-bottom: 10px;
}

.balloon-text p {
  font-size: 16px; /* Adjust for readability */
  line-height: 1.6; /* For better line spacing */
  color: #555; /* Text color */
  margin-bottom: 20px;
}

.balloon-text a img {
  width: 24px; /* Adjust size of the LinkedIn icon */
  height: 24px;
  margin-left: 10px; /* Add spacing between name and icon */
  margin-top: 2px;
}

.balloon-text a:hover img {
  opacity: 0.8; /* Optional: Change opacity on hover for a subtle effect */
}

/* Media queries for responsive design */
@media only screen and (max-width: 880px) {
  .main-section {
    flex-direction: column;
  }
  .image-content,
  .text-content {
    max-width: 100%;
    flex: none;
  }
  .text-content {
    width: 100%;
  }
  .image-content {
    margin-top: 1rem;
  }
  .service-card {
    margin-bottom: 2rem;
    /* Reduce margin on smaller screens */
  }
  .service-content-cards {
    flex-direction: column;
    align-items: center;
  }
  .service-button-container {
    width: 80%;
  }
  .about-section {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    padding: 1rem 0;
  }
  .about-content-title,
  .about-content-text,
  .about-content-image {
    max-width: 100%;
    text-align: center;
  }
  .about-content-image img {
    max-width: 300px;
    height: auto;
  }
  .clientes-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 82%;
    margin: 0 auto;
    margin-bottom: 200px;
  }
  .clientes-card {
    margin: 0;
    padding: 0;
    max-height: 300px;
  }
  .container-clientes-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 1rem 1rem;
  }
  .clientes-content-cards {
    display: flex;
    justify-content: center;
    gap: 1.5rem; /* Use gap to control spacing between cards */
    flex-wrap: wrap; /* Allow cards to wrap */
    padding: 0;
    width: 100%;
  }
  .balloon-cliente {
    flex: 1 1 300px; /* Ensure cards take up appropriate space */
    max-width: 3000px;
    margin-bottom: 1rem; /* Control space between rows */
  }
  .client-image {
    width: 80px;
    height: 80px;
  }
  .balloon-text {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 600px) {
  .clientes-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 82%;
    margin: 0 auto;
    margin-bottom: 50px;
  }
  .clientes-card {
    margin-bottom: 200px;
  }
}
@media only screen and (max-width: 500px) {
  .clientes-section {
    margin-bottom: 450px;
  }
  .balloon-cliente {
    margin-bottom: 10px;
    /* Reduce bottom margin further */
    flex: 1 1 100%;
    /* Ensure full-width layout */
    max-width: 90%;
    /* Reduce maximum width to fit better */
  }
  .client-image {
    width: 70px;
    /* Further reduce size */
    height: 70px;
  }
  .clientes-card {
    margin-bottom: 350px;
  }
  .balloon-text {
    font-size: 0.8rem;
    /* Further adjust font size */
  }
}
/* Main container styles */
.contact {
  max-width: 100%;
  box-sizing: border-box;
  background: #F7FAF4;
  padding-top: 2rem;
  display: flex;
  margin: 0;
}

/* Flex container for the main section */
.contact-main-section {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 80%;
  margin: 0 auto;
}

/* Container for content */
.contact-content {
  width: 100%;
  text-align: left;
}

/* Container for form and links side by side */
.contact-container {
  display: flex;
  width: 100%;
  gap: 2rem;
}

/* Form container styles */
.contact-form {
  flex: 0 0 70%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
}

.form-row {
  display: flex; /* Use flexbox */
  justify-content: space-between; /* Space between the two inputs */
  align-items: center; /* Align items vertically */
  margin-bottom: 1em; /* Space below the row */
  gap: 10px;
}

/* Adjust form-group to stack label on top of input */
.form-group {
  flex: 1;
}

.form-group label {
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #33550F;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Lato", sans-serif;
}

.form-group textarea {
  resize: vertical;
}

/* Align submit button to the end of the form */
.submit-button-contact {
  align-self: flex-end;
  background-color: #33550F;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 24px;
  transition: background-color 0.3s;
  margin-top: 1rem;
  width: 200px;
  cursor: pointer;
}

.submit-button:hover {
  color: #F2F0F0;
  background-color: #496528;
  border-radius: 48px;
  cursor: pointer;
}

.contact-links p {
  margin-bottom: 2rem;
}

.contact-links img {
  vertical-align: middle;
  max-width: 30px;
  margin-right: 1rem;
}

.contact-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-links ul li {
  margin-bottom: 10px;
}

.contact-links ul li a {
  text-decoration: none;
}

.contact-links ul li a:hover {
  text-decoration: underline;
}

.contact-title {
  color: #4C7F17;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.text-content-small p {
  color: #33550F;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.contact a {
  color: inherit; /* Inherit text color from parent */
  text-decoration: none; /* Remove underline */
  cursor: pointer; /* Change cursor to pointer */
  background-color: #f0f0f0; /* Set a background color */
  padding: 5px; /* Add some padding for better appearance */
  border-radius: 3px; /* Optional: round the corners */
}

.contact a:hover {
  background-color: #e0e0e0; /* Change background color on hover */
}

.contact a:visited {
  color: inherit; /* Keep the visited link color the same */
  text-decoration: none; /* No underline for visited links */
  background-color: #f0f0f0; /* Keep the background color same for visited */
}

@media only screen and (max-width: 880px) {
  /* Main container styles */
  .contact {
    max-width: 100%;
    box-sizing: border-box;
    background: #F7FAF4;
    padding-top: 50px;
    padding-bottom: 100px;
    display: flex;
  }
  /* Flex container for the main section */
  .contact-main-section {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    max-width: 90%;
    margin: 0 auto;
    padding: 4rem 0;
  }
  /* Container for content */
  .contact-content {
    width: 100%;
    text-align: left;
  }
  /* Container for form and links side by side */
  .contact-container {
    display: flex;
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
  }
  /* Form container styles */
  .contact-form {
    flex: 1 1 70%;
    /* Adjust flex-basis to allow shrinking */
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
  }
  /* Adjust form-group to stack label on top of input */
  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #33550F;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
  }
  .form-group textarea {
    resize: vertical;
  }
  /* Align submit button to the end of the form */
  .submit-button {
    align-self: flex-end;
    background-color: #33550F;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 24px;
    transition: background-color 0.3s;
    margin-top: 1rem;
    width: 200px;
  }
  .submit-button:hover {
    color: #F2F0F0;
    background-color: #496528;
    border-radius: 48px;
  }
  /* Links container styles */
  .contact-links {
    flex: 1 1 30%;
    /* Adjust flex-basis to allow shrinking */
    padding: 20px;
    box-sizing: border-box;
    background: #f8f8f8;
    border-radius: 5px;
  }
  .contact-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .contact-links ul li {
    margin-bottom: 100px;
  }
  .contact-links ul li a {
    text-decoration: none;
  }
  .contact-links ul li a:hover {
    text-decoration: underline;
  }
  .navbar-title {
    color: #4C7F17;
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  .text-content-small {
    color: #33550F;
    margin-bottom: 2rem;
  }
}
/* Media Query for Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: -300px;
  }
  .contact-form,
  .contact-links {
    flex: 1 1 100%;
    /* Allow both containers to take full width */
  }
}
/* Main container styles */
.service-main {
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background: #F7FAF4;
  padding-top: 60px;
}

/* Flex container for the main section */
.service-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  max-width: 85%;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Individual service containers */
.service-container-1,
.service-container-2,
.service-container-3 {
  width: 100%;
  height: auto;
  margin-bottom: 3rem;
  box-sizing: border-box;
}

/* Flex container for service-container-1 and service-container-3 */
.service-container-1,
.service-container-3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* Align items vertically in the center */
  box-sizing: border-box;
}

/* Flex container for service-container-2 */
.service-container-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center; /* Align items vertically in the center */
  box-sizing: border-box;
  margin-bottom: 3rem;
}

/* Flex item styles for image and text */
.service-text-content,
.service-image-content {
  box-sizing: border-box;
  padding: 1rem; /* Optional padding for spacing */
}

.service-text-content {
  flex: 1; /* Text takes remaining space */
  min-width: 300px;
}

.service-image-content {
  flex: 1; /* Image takes 50% width */
  min-width: 300px;
  max-width: 500px;
  max-height: 560px;
  position: relative;
  overflow: hidden;
}

/* Ensure the image fits its container */
.service-image-content img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}

/* Title and subtitle styles */
.service-title {
  font-size: 2rem;
}

.service-section p {
  font-size: 1.5rem;
  line-height: 2;
  margin: 2rem 0;
}

/* Button styles */
.service-contact-button {
  display: inline-block;
  background-color: #33550F;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 24px;
  transition: background-color 0.3s;
  margin-bottom: 1rem;
  margin-top: 1rem;
  border: 1px solid transparent;
}

.service-contact-button:hover {
  color: #F2F0F0;
  background-color: #496528;
}

/* Cards container to hold the individual cards */
.cards-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem; /* Adds space between the cards */
  flex-wrap: wrap; /* Makes sure the cards wrap on smaller screens */
  width: 100%;
  max-width: 1200px;
  margin-top: 1rem; /* Limits the width for large screens */
}

/* Card 1, 2, and 3 styles */
.card-1,
.card-2,
.card-3 {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card-1 {
  width: 48%; /* Two cards side by side */
}

.card-2 {
  width: 90%; /* One card taking full width */
}

.card-3 {
  width: 100%; /* One card taking full width */
}

/* Customize the text size for list items */
.card-1 ul li,
.card-2 ul li,
.card-3 ul li {
  font-size: 1rem; /* Set text size to 1rem */
  line-height: 1.5; /* Adjust line height for better readability */
  margin-bottom: 0.5rem; /* Add some spacing between list items */
  position: relative; /* Ensure we can position the bullet correctly */
}

/* Remove default bullets */
.card-1 ul,
.card-2 ul,
.card-3 ul {
  list-style-type: none; /* Remove default bullets */
  padding-left: 1.5rem; /* Add space for custom bullets */
}

/* Use ::before to add custom bullets */
.card-1 ul li::before,
.card-2 ul li::before,
.card-3 ul li::before {
  content: "•"; /* Custom bullet symbol (can be replaced with other symbols or images) */
  color: #33550F; /* Bullet color */
  font-size: 1.2rem; /* Adjust bullet size */
  position: absolute; /* Position the bullet to the left */
  left: -1.5rem; /* Position the bullet outside the padding */
  top: 0; /* Align the bullet to the top of the line */
}

/* Card 4 styles */
.card-4 {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  padding: 2rem;
  width: 30%; /* Three cards side by side */
  box-sizing: border-box;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Card title */
.card-4 h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Card content */
.card-4 p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Styles */
/* Medium devices (tablets) */
@media (max-width: 768px) {
  .service-image-content,
  .service-text-content {
    flex: 0 0 100%; /* Make each take full width */
    margin-bottom: 1rem; /* Add spacing between the image and text */
  }
  .service-image-content img {
    width: 100%; /* Ensure image takes full width of the container */
  }
  .cards-container {
    flex-direction: column; /* Stack cards vertically */
    gap: 1.5rem; /* Reduced gap for smaller screen */
  }
  /* Ensure cards break to full width */
  .card-1,
  .card-2,
  .card-3 {
    width: 100%; /* Cards take full width */
  }
  .card-1 {
    margin-top: 2rem;
  }
  .service-container-2 .service-image-content {
    order: 1; /* Ensure the image comes after the text */
  }
  .service-container-2 .service-text-content {
    order: 2; /* Ensure the text comes first */
  }
  /* Ensure the contact button is after the image */
  .service-container-2 .service-contact-button-container {
    order: 3; /* Place the contact button after the image */
  }
  .service-container-4 {
    flex-direction: column; /* Stack vertically */
    width: 100%; /* Ensure full width */
    margin-top: 2rem;
  }
  .service-container-4 .card-4 {
    width: 100%; /* Card-4 takes 100% width under 768px */
    margin-bottom: 2rem;
  }
}
/* Small devices (phones) */
@media (max-width: 576px) {
  .service-service-text {
    font-size: 0.9em; /* Smaller text size */
  }
  .service-contact-button {
    padding: 0.75rem 1.5rem; /* Smaller button padding */
  }
}
.blog-section {
  width: 90%;
  margin: 2rem auto;
}

.blog-page-title {
  margin-bottom: 2rem; /* Space below the title */
  text-align: center; /* Center align the title text */
}

.blog-page-title h1 {
  font-size: 2rem; /* Adjust font size as needed */
  margin: 0;
}

.blog-content-cards {
  position: relative;
  display: flex;
  flex-wrap: wrap; /* Allows cards to wrap if there's not enough space */
  gap: 16px; /* Space between cards */
  justify-content: space-between; /* Space between cards */
}

.blog-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(25% - 16px); /* Adjust width to fit 4 cards in a row, accounting for gap */
  box-sizing: border-box;
  max-width: calc(25% - 16px); /* Ensure each card fits within 25% of the container width minus gap */
  border: 1px solid #ccc; /* Border for better visibility */
  padding: 16px; /* Padding inside each card */
  background-color: #fff; /* Background color of the card */
  position: relative; /* Position relative to align button */
}

.blog-card-image {
  width: 100%; /* Ensures the container takes the full width of the card */
  overflow: hidden; /* Hides any overflowed content */
  position: relative; /* Allows positioning of the image inside */
  padding-top: 66.67%; /* Aspect ratio of 270x180 is approximately 3:2, so padding-top = (height/width) * 100 */
}

.blog-card-image img {
  position: absolute; /* Positions the image absolutely within the container */
  top: 0;
  left: 0;
  width: 100%; /* Makes the image fill the container's width */
  height: 100%; /* Makes the image fill the container's height */
  object-fit: cover; /* Ensures the image covers the container without distortion */
  display: block; /* Ensures there’s no extra space below the image */
}

.blog-card-category {
  margin-top: 0.5rem;
  font-size: 1rem;
  height: 3.4rem;
}

.blog-card-title h2 {
  font-size: 1.5rem; /* Adjust based on your design */
  line-height: 1.7rem; /* Adjust line height as needed */
  height: 3.4rem;
  overflow: hidden;
  max-height: 3.4rem; /* 2 * line-height (1.7rem) */
}

.blog-card-paragraph {
  overflow: hidden; /* Hide overflowed content */
  margin-top: auto;
}

.blog-card-paragraph p {
  margin: 0;
  font-size: 1rem; /* Adjust based on your design */
  line-height: 1.6rem; /* Adjust line height as needed */
  color: #333; /* Adjust color if needed */
  display: -webkit-box; /* Creates a block container for the text */
  -webkit-line-clamp: 3; /* Limit the text to 3 lines (adjust based on your design) */
  -webkit-box-orient: vertical; /* Stack children vertically */
  overflow: hidden; /* Hide overflowed content */
  text-overflow: ellipsis;
}

.blog-button-container {
  text-decoration: none;
  display: block; /* Make the link fill the container */
  margin-top: auto; /* Push the button to the bottom of the card */
  padding: 0.5rem 1rem; /* Padding for the button */
  background-color: #eee; /* Background color for the button */
  border-radius: 4px; /* Rounded corners for the button */
  color: #000; /* Text color for the button */
  align-self: flex-end; /* Align button to the right */
  text-align: right; /* Align text within the button to the right */
}

.blog-button-container:hover {
  color: #496528; /* Color on hover */
}

.pagination button {
  text-decoration: none;
  margin-top: 1rem;
  margin-right: 5px;
  padding: 0.5rem 1rem; /* Padding for the button */
  background-color: #eee; /* Background color for the button */
  border-radius: 4px; /* Rounded corners for the button */
  color: #000; /* Text color for the button */
  align-self: flex-end; /* Align button to the right */
  text-align: right;
}

.pagination button:hover {
  background-color: #496528; /* Color on hover */
  color: #F7FAF4;
}

.blog-spinner {
  position: fixed; /* Fixed position */
  left: 50%; /* Center horizontally */
  top: 30%; /* Center vertically */
  width: 50px; /* Width of the spinner */
  height: 50px; /* Height of the spinner */
  border: 8px solid #F7FAF4; /* Light grey background */
  border-top: 8px solid #33550F; /* Blue color */
  border-radius: 50%; /* Circular shape */
  animation: spin 1s linear infinite; /* Spin animation */
  z-index: 1000; /* Sit on top */
  margin-bottom: 200px;
  transform: translate(-50%, -50%); /* Center the spinner */
}

.blog a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background-color: #33550F;
  color: #F7FAF4;
  padding: 5px;
  border-radius: 3px;
  margin-top: auto;
  height: 1.7rem;
}

.blog-loading {
  margin-bottom: 300px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .blog-card {
    flex: 1 1 calc(33.333% - 16px); /* Adjust width for medium screens (3 cards per row) */
    max-width: calc(33.333% - 16px); /* Ensure each card fits within 33.333% of the container width minus gap */
  }
}
@media (max-width: 900px) {
  .blog-card {
    flex: 1 1 calc(50% - 16px); /* Adjust width for smaller screens (2 cards per row) */
    max-width: calc(50% - 16px); /* Ensure each card fits within 50% of the container width minus gap */
  }
}
@media (max-width: 600px) {
  .blog-card {
    flex: 1 1 100%; /* Adjust width for very small screens (1 card per row) */
    max-width: 100%; /* Ensure each card fits within 100% of the container width */
  }
}
/* about container styles */
.about {
  margin: 0 auto;
  box-sizing: border-box;
  background: #F7FAF4;
  padding-top: 60px;
  padding: 2rem 0;
  width: 86%;
}

/* Flex container for the main section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  margin: 0 auto;
}

.about-info, .about-differentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  margin: 0 auto;
  width: 86%;
  margin-top: 2rem;
}

/* Styles for image and text content */
.about-image-content,
.about-text-content {
  flex: 1;
  box-sizing: border-box;
  min-width: 300px;
}

/* Image styles */
.about-image-content {
  max-width: 500px;
  max-height: 500px;
  overflow: hidden;
  position: relative;
}

.about-image-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-robertok-img {
  position: relative;
  padding: 5px; /* Add padding for some space around text */
  background-color: #4C7F17; /* Optional: You can change background color */
  border-radius: 50%; /* Optional: Rounded corners for a balloon-like effect */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
  max-width: 600px; /* Optional: Set a max-width for the content */
  margin: 20px auto;
}

.about-robertok-img img {
  border-radius: 50%;
}

/* Text content styles */
.about-text-content {
  color: #33550F;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 0;
  gap: 2rem;
  box-sizing: border-box; /* Include padding and border in width calculation */
}

h1.about-title {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.about-text-content p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2;
  color: black;
}

/* Styling for about-extra */
.about-extra {
  width: 100%;
  margin-bottom: 2rem;
}

.about-info-title {
  margin-bottom: 2rem;
}

.about-robertok-text a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background-color: #f0f0f0;
  padding: 5px;
  border-radius: 3px;
}

.about-extra ul li {
  font-size: 1.5rem;
  line-height: 2;
  color: black;
  margin-bottom: 0.5rem; /* Add some spacing between list items */
  position: relative; /* Ensure we can position the bullet correctly */
}

/* Remove default bullets */
.about-extra ul {
  list-style-type: none; /* Remove default bullets */
  padding-left: 1.5rem; /* Add space for custom bullets */
}

/* Use ::before to add custom bullets */
.about-extra ul li::before {
  content: "•"; /* Custom bullet symbol (can be replaced with other symbols or images) */
  color: #33550F; /* Bullet color */
  font-size: 1.2rem; /* Adjust bullet size */
  position: absolute; /* Position the bullet to the left */
  left: -1.5rem; /* Position the bullet outside the padding */
  top: 0; /* Align the bullet to the top of the line */
}

/* Styling for about-robertok */
h1.about-robertok, h1.about-extra {
  margin-bottom: 0.5rem;
  font-size: 3rem;
}

.about-robertok p, .about-extra p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2;
  color: black;
}

.about-text-content-small {
  width: 100%;
  box-sizing: border-box;
  padding: 0;
}

.about-robertok {
  display: flex;
  align-items: flex-start; /* Aligns the image to the top */
  gap: 20px; /* Adds space between the image and text */
}

.about-robertok-img img {
  max-height: 200px; /* Set maximum height of the image */
  width: auto; /* Maintain aspect ratio */
}

.about-robertok-text p {
  line-height: 1.6;
}

/* Contact button styles */
.about-contact-button {
  display: inline-block;
  background-color: #33550F;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 24px;
  transition: background-color 0.3s;
  margin-bottom: 3rem;
}

.about-contact-button:hover {
  color: #F2F0F0;
  background-color: #496528;
  border-radius: 48px;
}

/* Values section styles */
.about-values {
  padding: 20px;
  background-color: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Space between cards */
}

.about-card {
  flex: 1 1 calc(50% - 20px); /* 2 cards per row with gap */
  box-sizing: border-box;
  border: 1px solid #4C7F17;
  padding: 20px;
  background-color: #F4FBF5;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to the top */
  text-align: center; /* Center text horizontally */
  min-height: 150px; /* Ensure a minimum height for centering */
}

.about-card h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #66AA1F;
  font-size: 2rem;
}

.about-card p {
  margin: 0;
  font-size: 1.5rem;
}

/* Remove default list styling */
.values-list {
  list-style-type: none; /* Removes default bullets */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
  font-size: 1.5rem;
}

.values-list li {
  margin-bottom: 10px; /* Adds space between list items */
}

.values-list li strong {
  display: block; /* Makes the strong text block level to separate it from the description */
  margin-bottom: 5px; /* Adds space below the strong text */
}

.about-img-container {
  margin: 0 auto;
}

.about-img-container img {
  max-width: 800px;
  max-height: 300px;
  margin: 0;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .about-card {
    flex: 1 1 100%; /* Stacks cards vertically on small screens */
  }
  .about-robertok {
    flex-direction: column;
    justify-content: flex-start;
  }
  .about-robertok-text {
    margin: 0 auto;
    max-width: 80%;
  }
}
.diagnostics {
  max-width: 100%;
  box-sizing: border-box;
  background: #F7FAF4;
}

/* Flex container for the main section */
.diagnostics-main-section {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Container for content */
.diagnostics-content {
  width: 100%;
  text-align: left;
}

/* Container for form and links side by side */
.diagnostics-container {
  display: flex;
  width: 100%;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  /* Allow wrapping on smaller screens */
}

.diagnostics-content h1 {
  font-size: 2rem;
}

.diagnostics-container-header h1 {
  margin-bottom: 20px;
}

.diagnostics-container-header ol,
.diagnostics-container-header ul {
  margin-top: 10px;
  margin-bottom: 20px;
  padding-left: 20px;
}

.diagnostics-container-header h2,
.diagnostics-container-header h3 {
  margin-top: 20px;
  margin-bottom: 15px;
}

.diagnostics-container-header p {
  margin-top: 20px;
}

.diagnostics-container-header h3 {
  font-style: italic;
  font-weight: bold;
  text-decoration: wavy;
}

.diagnostics-form {
  flex: 1 1 70%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
}

.form-group {
  margin-bottom: 15px; /* Space below each group */
  width: 100%; /* Ensure full width for each form group */
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #33550F;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
  resize: none; /* Prevent resizing */
  overflow: auto; /* Enable scrolling for long text */
}

/* Align submit button to the end of the form */
.submit-button {
  align-self: flex-end;
  background-color: #33550F;
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 24px;
  transition: background-color 0.3s;
  margin-top: 1rem;
  width: 200px;
  cursor: pointer;
  border: none;
}

.submit-button:hover {
  color: #F2F0F0;
  background-color: #496528;
  border-radius: 48px;
  cursor: pointer;
}

.question-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 10px;
  /* Added padding */
  flex-wrap: wrap;
  margin-bottom: 20px;
  border: 2px solid #ccc;
  /* Added border */
  border-radius: 8px;
  /* Optional: rounded corners */
  background-color: #f9f9f9;
  /* Optional: background color */
}

.rating {
  display: flex;
  align-items: center;
  background-color: green;
  border-radius: 35px;
  max-width: 300px;
  margin-left: auto;
}

.stars {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  margin: 0 0 5px 15px;
  padding: 0;
}

.star {
  font-size: 36px;
  cursor: pointer;
  color: lightgray;
  margin-bottom: 0;
  margin-left: 0.5rem;
}

.star.active {
  color: gold;
}

.counter {
  width: 40px;
  height: 40px;
  background-color: white;
  color: green;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 10px;
  margin-right: 5px;
  white-space: nowrap;
}

.question {
  font-weight: bold;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  display: flex;
  align-items: center;
  max-width: 60%;
}

@media (max-width: 600px) {
  .diagnostic-form-row {
    flex-direction: column; /* Stack items vertically */
  }
  .form-group {
    flex: 1 1 100%; /* Full width on small screens */
  }
  .question-container {
    display: flex;
    flex-direction: column; /* Stack question above rating */
    width: 100%; /* Full width */
    margin-bottom: 1rem; /* Space below each question */
    padding: 10px; /* Add padding for better spacing */
    box-sizing: border-box; /* Include padding in width calculation */
    overflow: hidden; /* Prevent overflow */
  }
  .question {
    margin-bottom: 0.5rem; /* Space between question and stars */
    word-wrap: break-word; /* Allow long words to break */
    font-size: 1rem; /* Adjust font size for better visibility */
    line-height: 1.2; /* Adjust line height for better readability */
    font-weight: bold;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    max-width: 100%;
  }
  .rating {
    display: flex; /* Use flexbox for stars */
    flex-direction: row; /* Align stars in a row */
    justify-content: flex-start; /* Align stars to the start */
    margin-top: 0.5rem; /* Space between question and stars */
  }
  .stars {
    margin-top: 0.5rem; /* Space above the stars */
  }
  .star {
    cursor: pointer; /* Change cursor for stars */
  }
}
/* Background and Overlay */
.background-page {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.background-page img {
  width: 100%;
  height: auto;
}

.background-page::before::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.overlay-dark-page {
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 400px;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.overlay-article-page {
  background-color: rgba(255, 255, 255, 0.8);
  width: 90%; /* Make it responsive */
  max-width: 400px; /* Limit maximum width */
  height: auto; /* Allow height to adjust */
  margin: 3rem auto; /* Center the overlay vertically and horizontally */
  padding: 20px;
  position: absolute;
  top: 40%; /* Center vertically */
  left: 0; /* Align to the left */
  transform: translateY(-50%); /* Adjust to truly center vertically */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Space items evenly */
  color: #151515;
  box-sizing: border-box; /* Include padding in width/height calculations */
  padding-left: 20px; /* Keep space on the left */
}

.overlay-article-page h5 {
  font-size: 1rem;
}

.overlay-article-page h1 {
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: break-word;
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.overlay-article-page h6 {
  font-size: 1rem;
  margin-top: auto; /* Push h6 to the bottom */
}

.blog-page-content {
  margin: 0 auto;
  max-width: 80%;
  font-size: 2.5rem;
}

.blog-content p {
  margin-top: 100px;
}

p#text.blog-page-text::first-letter {
  font-size: 1.5rem;
  /* Optional: make it larger for emphasis */
  margin-left: 3rem;
  /* Add left margin to create space */
}

.blog-page-subtitle {
  font-size: 2.5rem;
  /* Adjust as needed */
  margin: 50px 0;
}

.blog-page-text {
  line-height: 1.6;
  font-size: 1.5rem;
  text-align: left;
  width: 100%;
  height: auto;
}

.blog-page-text img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.blog-page-share {
  font-size: 2rem;
  margin-top: 4rem;
}

.suggestions {
  margin-top: 2rem;
}

.blog-page-suggestions {
  display: flex;
  flex-direction: column;
}
.blog-page-suggestions h2 {
  margin-bottom: 16px;
}

.blog-page-suggestion-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.blog-page-suggestion-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33% - 16px);
  max-width: calc(33% - 16px);
  box-sizing: border-box;
  border: 1px solid #496528;
  padding: 16px;
  background-color: #fff;
  transition: transform 0.3s;
  position: relative;
}
.blog-page-suggestion-card:hover {
  transform: scale(1.05);
}

.blog-page-suggestion-card-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.blog-page-suggestion-card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

h3.blog-page-suggestion-card-title {
  font-size: 1rem;
  height: 3.4rem;
}

.blog-page-suggestion-card-title {
  font-size: 1.5rem;
  line-height: 1.7rem;
  height: 3.4rem;
  overflow: hidden;
  max-height: 3.4rem;
}

.blog-page-suggestion-card-text {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.blog-page-suggestion-card-text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-page-suggestion-card-text a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  background-color: #33550F;
  color: #F7FAF4;
  padding: 5px;
  border-radius: 3px;
  margin-top: auto;
}

@media (max-width: 768px) {
  .blog-page-suggestion-card {
    flex: 1 1 calc(50% - 16px);
    max-width: calc(50% - 16px);
  }
}
@media (max-width: 576px) {
  .blog-page-suggestion-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
}

/* Global body styles */
body {
  font-family: "Lato", sans-serif;
  background: #F7FAF4;
}

/* Navbar styles */
.navbar {
  font-family: "Montserrat", sans-serif;
}

/* Text content styles */
.text-content {
  font-family: "Lato", sans-serif;
  color: #33550F;
}

.text-content h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #33550F;
}

h2 {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: #33550F;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  color: #000000;
}

.snackbar {
  visibility: hidden; /* Hidden by default */
  min-width: 400px; /* Set a minimum width */
  min-height: 100px; /* Minimum height */
  margin-left: -200px; /* Center the snackbar */
  background-color: #33550F; /* Background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded corners */
  border-color: #F7FAF4;
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Sit on top */
  top: 50%; /* Center vertically */
  left: 50%;
  bottom: auto; /* Remove bottom positioning */
  font-size: 17px; /* Text size */
  transition: visibility 0s, opacity 0.5s linear; /* Fade effect */
  /* Flexbox properties for vertical centering */
  display: flex; /* Enable flexbox */
  align-items: center; /* Vertically center the content */
  justify-content: center; /* Horizontally center the content */
}

.snackbar.show {
  visibility: visible; /* Show the snackbar */
  opacity: 1; /* Fade in the snackbar */
}

.spinner {
  position: fixed; /* Fixed position */
  left: 50%; /* Center horizontally */
  top: 50%; /* Center vertically */
  width: 50px; /* Width of the spinner */
  height: 50px; /* Height of the spinner */
  border: 8px solid #f3f3f3; /* Light grey background */
  border-top: 8px solid #33550F; /* Blue color */
  border-radius: 50%; /* Circular shape */
  animation: spin 1s linear infinite; /* Spin animation */
  z-index: 1000; /* Sit on top */
  transform: translate(-50%, -50%); /* Center the spinner */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pagination button {
  padding: 10px;
  margin: 5px;
  margin-bottom: 100px;
}

.pagination button.active {
  background-color: #33550F; /* Active color */
  color: white; /* Text color */
  border: none;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

.modal-close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-close-button:hover,
.modal-close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0; /* Adjust as needed */
}

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