body {
  font-family: 'Jura', sans-serif;
  font-size: 18px;
  font-weight: 400;
  background-color: #ffffff;
  color: #1a1a1a;
  padding: 40px;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

h1 {
  font-size: 36px;
  color: #13437d;
}

h2 {
  font-size: 30px;
  color: #334e68;
}

h3 {
  font-size: 24px;
  color: #486581;
}

h4 {
  font-size: 20px;
  color: #627d98;
}

h5 {
  font-size: 18px;
  color: #829ab1;
}

hr {
  border: none;
  height: 3px;
  background: linear-gradient(to right, #13437d, #be211f);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin: 15px 0;
}

ul.custom-wrench {
  list-style: none;
  padding-left: 30px;
}

ul.custom-wrench li {
  margin-bottom: 10px;
}

ul.custom-wrench li i {
  color: #be211f;
  margin-right: 8px;
}

.price {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 20px 0 15px 0;
}

.btn-blue-hover-red {
  background-color: #13437d;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.btn-blue-hover-red:hover {
  background-color: #be211f;
  box-shadow: 0 4px 12px rgba(190, 33, 31, 0.5);
}

.btn-red-hover-blue {
  background-color: #be211f;
  color: #fff;
  border: none;
  padding: 10px 24px;
  font-size: 18px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.btn-red-hover-blue:hover {
  background-color: #13437d;
  box-shadow: 0 4px 12px rgba(19, 67, 125, 0.5);
}

.btn-disabled {
  background-color: #ccc;
  color: #666;
  border: none;
  padding: 10px 24px;
  font-size: 18px;
  border-radius: 4px;
  cursor: not-allowed;
  opacity: 0.7;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 20px 0;
}

th {
  font-weight: bold;
  text-align: left;
  padding: 4px 2px;
  color: #13437d;
}

td {
  padding: 4px 2px;
}

@media (max-width: 768px) {
  body {
    padding: 20px;
    font-size: 16px;
  }

  h1 {
    font-size: 28px;
  }

  .price {
    font-size: 20px;
  }

  .btn-blue-hover-red,
  .btn-red-hover-blue,
  .btn-disabled {
    width: 100%;
    margin-bottom: 10px;
  }

  table {
    font-size: 13px;
  }
}
hr {
  margin: 9px 0 !important;
}

/* Стегнат вертикален ритъм за заглавия */
h1, h2, h3, h4, h5 {
    margin-top: 20px !important;
    margin-bottom: 8px !important;
}

/* Специално за H1 – малко повече въздух */
h1 {
    margin-top: 30px !important;
    margin-bottom: 10px !important;
}