@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
html{
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.35;
  color: #333;
}
.why-choose{
  scroll-margin-top: 120px;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px;
}

.btn {
  padding: 16px 30px;
  border: none;
  border-radius: 80px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  align-items: center;
  text-decoration: none;
  display: inline-flex;
  gap: 6px;
  text-align: center;
  background-color: transparent;
}

.btn-primary {
  background: #FFC444;
  color: #2C3339;
}

.btn-primary:hover {
  background: #e67e22;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #333;
}

.btn-outline {
  background: transparent;
  color: #f39c12;
  border: 2px solid #f39c12;
}

.btn-outline:hover {
  background: #f39c12;
  color: white;
}


h2{
   font-size: 46px;
   font-weight: 700;
   color: #2C3339;
}

@media(max-width: 992px){
   h2{
      font-size: 36px;
   }
   .commitment-text h2{
      margin-bottom: 15px;
   }
}
@media(max-width: 768px){
   h2{
      line-height: 1.2 !important;
      font-size: 30px;
   }
}