body {
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

/* Header styles */
header {
  background-color: #f2f2f2;
  padding: 0 15px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 30vh;
  height: 13vh;
}
.menu-toggle {
  font-size: 1.5em;
  cursor: pointer;
  display: none;
}
.language-switch a {
  color: #58585a;
  font-weight: bold;
  margin-right: 10px;
  text-decoration: none;
}

.language-switch a.active {
  color: #ffae42;
}

.menu {
  display: flex;
}

.menu a {
  color: #58585a;
  font-weight: bold;
  margin-right: 15px;
  text-decoration: none;
}

.menu a:hover {
  color: #ffae42;
}
.m-heading{
  font-size: 2.2rem;
  text-align: center;
  color: #58585a;
}

/* Add styles for Our-Solutions section */
.OurSolution-section{
  width: 100vw;
  height: auto;
}
.Os-container, .Os-container-res{
  width: 90vw;
  height: auto;
  margin: 20px auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.Os-container-res{
  width: 90vw;
  height: auto;
  margin: 20px auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-around;
  flex-wrap: wrap;
}
.Os-box-img{
  width: 30vw;
  height: auto;
  flex: 1 1 20px;
  margin: 5px 0;
}
.Os-box-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.Os-box-img img:hover{
  transform: scale(1.1);
}
.Os-box-content{
  width: 60vw;
  height: auto;
  background-color: #f2f2f2;
  flex: 1 1 500px;
  margin: 5px 0;
  padding: 15px 10px;
}
.language-content{
  margin: 20px; 
  line-height: 20px;
  color: #58585a;
}
.enHeading, .nlHeading{
 padding: 20px 0;
}


/* Add styles for FAQ section */
.faq-section {
  margin: 60px 0;
}

.faq-category {
  width: 50vw;
  height: auto;
  margin: 20px auto;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  color: #58585a;
  text-align: center;
  box-shadow: #ffae42;
  border: 1px solid #ffae42;
}

.faq-item {
  margin-bottom: 10px;
  cursor: pointer;
  padding: 5px 0;
  line-height: 30px;
  text-align: left;
}

.question {
  font-weight: bold;
  list-style: 25px;
}
.question:hover{
  color: #ffae42;
}

.answer {
  display: none;
  color: #ffae42;
}

.faq-item.active .answer {
  display: block;
}

/* Add style for price section*/

.prices-section {
  margin: 60px 0;
  text-align: center;
}

.price-table {
  margin: 20px auto;
  width: 63%;
  border-collapse: collapse;
  margin-top: 10px;
  color: #58585a;
  font-weight: 700;
}

.price-table th, .price-table td {
  border: none;
  padding: 10px;
  text-align: start;
}

.t-heading{
  width: 120px;
}

.price-table th:not(:first-child) {
  border-top: 1px solid #ffae42;
  background-color: #ffae42;
  border-left: 1px solid #ffae42;
  border-right: 1px solid #ffae42;
  border-bottom: 1px solid #ffae42;
  text-align: center;
  font-size: large;
}

.price-table td:not(:first-child) {
  border-left: 1px solid #ffae42;
  border-right: 1px solid #ffae42;
  border-bottom: 1px solid #ffae42;
  text-align: center;
  background-color: #f2f2f2;
  font-size: medium;
}

.price-table .border-bottom {
  border-bottom: 1px solid #ffae42;
}

footer {
  background-color: #f2f2f2;
  text-align: center;
  padding: 10px;
}
footer p{
  margin: 0;
  color: #58585a;
  font-weight: bold;
}
strong{
  color: #ffae42;
}

/* Add for Responsive */

@media screen and (max-width: 1024px){
 .Os-container, .Os-container-res{
  display: block;
  width: 85vw;
 }
 .Os-box-img{
  width: 100%;
  height: auto;
  margin: 35px 0;
 }
 .Os-box-content{
   width: 100%;
   height: auto;
   padding: 20px 0;
 }
 .price-table{
  width: 80%;
 }
 .faq-category{
  width: 60vw;
  justify-content: center;

 }
}

@media screen and (max-width: 768px) {
  .menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      color: #58585a;
      background-color: lightgray;
  }
  .menu.show-menu {
      display: flex;
  }

  .menu a {
      margin: 10px;
  }

  .menu-toggle {
      display: block;
  }
  .Os-container-res{
    flex-direction: column-reverse;
  }
  .Os-box-content{
    height: auto;
  }
  .faq-category{
    width: 80vw;
  }
  .Os-box-img{
    height: auto;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    margin: 25px 0;
  }
}