* {
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  background: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

/* ===== HEADER ===== */
.main-header {
  background: linear-gradient(135deg, #0f1f3d, #1e3a6d);
  color: white;
  padding: 70px 20px;
  text-align: center;
}

.logo {
  max-width: 170px;
  margin-bottom: 20px;
}

.main-header h1 {
  font-size: 34px;
  margin-bottom: 15px;
}

.main-header p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  color: #d6dbea;
}

/* ===== BUTTONS ===== */
.buttons {
  margin-top: 30px;
}

.btn {
  background: #e67e22;
  color: white;
  padding: 15px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin: 8px;
  transition: 0.3s;
}

.btn:hover {
  background: #cf6d17;
}

.btn-secondary {
  background: #f39c12;
}

.btn-secondary:hover {
  background: #d68910;
}

/* ===== SECTIONS ===== */
section {
  max-width: 1050px;
  margin: auto;
  background: white;
  padding: 50px 30px;
  margin-top: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

section h2 {
  color: #0f1f3d;
  margin-bottom: 20px;
  font-size: 26px;
}

section p {
  max-width: 900px;
}

/* ===== LISTS ===== */
ul.services {
  list-style: none;
  padding: 0;
  margin-top: 25px;
}

ul.services li {
  background: #f1f3f6;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-left: 6px solid #e67e22;
  border-radius: 6px;
  font-weight: 500;
}

/* ===== TRUST BOX ===== */
.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  marg
