.lang-page {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #0f1111;
  background-color: #ffffff;
  padding: 40px 20px;
  /* direction: rtl; */
}
.lang-container {
  max-width: 900px;
  margin: 0 auto;
}
.lang-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f1111;
}
.lang-subtitle {
  font-size: 14px;
  color: #333333;
  margin-bottom: 24px;
  line-height: 1.5;
}
.lang-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 25px;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  width: fit-content;
}
.lang-option input[type="radio"] {
  accent-color: #007185;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.translation-text {
  font-style: italic;
  font-weight: 400;
  color: #565959;
  font-size: 14px;
}
.option-divider {
  border-top: 1px solid #e7e7e7;
  width: 280px;
  margin: 4px 0;
}
.section-divider {
  border-top: 1px solid #d5d9d9;
  margin: 30px 0 25px 0;
  width: 100%;
}
.lang-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}
.btn-save {
  background-color: #ffd814;
  border: 1px solid #fcd200;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #0f1111;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(213, 217, 217, 0.5);
}
.btn-save:hover {
  background-color: #f7ca00;
  border-color: #f2c200;
}
.btn-cancel {
  background-color: #ffffff;
  border: 1px solid #d5d9d9;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 14px;
  color: #0f1111;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-cancel:hover {
  background-color: #f7ffa;
  border-color: #d5d9d9;
}







.header-for-phone,.footer-mobile{
  display: none;
}
@media (max-width: 768px) {
  .header-for-phone, .footer-mobile {
    display: block;
  }
}