* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0f2f46;
  color: white;
}





.container{
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 20px;
}


.lang-switcher{
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  background: rgba(255,255,255,0.9);
  border-radius: 25px;
  padding: 4px;
  gap: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}


.lang-btn{
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  color: #333;
  transition: 0.3s;
}


.lang-btn:hover{
  background: #0077ff;
  color: white;
}


.lang-btn.active{
  background: #0077ff;
  color: white;
}


@media (max-width: 768px){

  .lang-switcher{
    top: 10px;
    right: 10px;
  }

  .lang-btn{
    padding: 5px 12px;
    font-size: 12px;
  }

}


@media (max-width: 480px){

  .lang-switcher{
    top: 8px;
    right: 8px;
    padding: 3px;
  }

  .lang-btn{
    padding: 4px 10px;
    font-size: 11px;
  }

}


.service {
  padding: 60px 20px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.service-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center; 
  justify-content: center; 
}


.image-box {
  flex: 1;
  position: relative;
}

.image-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}


.back-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #00d1a0;
  color: black;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  z-index: 2;
}


.text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  text-align: center;
}

.text-box h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.text-box p {
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 25px;
}


.price {
  font-size: 28px;
  color: #00d1a0;
  font-weight: bold;
  margin-bottom: 20px;
}


.order-btn {
  display: inline-block;
  background: #00d1a0;
  color: black;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}


@media (max-width: 900px) {
  .service-container {
    flex-direction: column;
  }

  .image-box img {
    height: 300px;
  }
}


@media (max-width: 500px) {
  .text-box h2 {
    font-size: 24px;
  }

  .price {
    font-size: 22px;
  }

  .order-btn {
    padding: 10px 22px;
  }
}