/* === Global === */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  
  user-select: none;
  -webkit-user-select: none; /* Chrome, Safari, Edge */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE */
}

p {
  line-height: 1.7;
  margin-bottom: 20px;
}

a {
  color: #1c4587;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === Container & Layout === */
.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* === Heading === */
.container h1 {
  background-color: #e0f3ff;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: center;
  font-size: 28px;
  color: #457DFF;
  margin-bottom: 30px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.container h2,
.container h3 {
  color: #457DFF;
  margin-top: 40px;
  font-size: 20px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 5px;
}

.container h3 {
  font-size: 18px;
  border-bottom: none;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* === List Styling === */
ul, ol {
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
}

ol.custom-blue-counter {
  counter-reset: list-counter;
  list-style: none;
  padding-left: 20px;
}

ol.custom-blue-counter > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

ol.custom-blue-counter > li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  color: #457DFF;
  font-weight: bold;
}

/* === Sublist === */
.sublist {
  padding-left: 20px;
  margin-top: 10px;
}

.sublist li {
  list-style-type: circle;
}

/* === Footer note === */
.footer-note {
  margin-top: 40px;
  font-size: 0.95em;
  color: #777;
  text-align: center;
}

hr {
  border: none;
  border-top: 2px solid #e0e0e0;
  margin: 40px 0 20px;
}

/* === Service Card === */
.container-box {
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fffaf3;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  padding: 20px;
  margin: 15px 0;
  transition: transform 0.3s ease;
}

.service-card.active {
  background: #c8964b;
  color: white;
}

.service-card h5 {
  margin-top: 15px;
  font-weight: 600;
}

.service-card p {
  color: #666;
  font-size: 14px;
  margin: 10px 0 15px;
}

.service-card .icon {
  font-size: 40px;
}

.read-more-btn {
  display: inline-block;
  padding: 8px 20px;
  background-color: #c8964b;
  color: white;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 600;
}

.read-more-btn.black {
  background-color: #000;
  color: white;
}

.service-card.active .read-more-btn {
  background-color: #000;
}

.read-more-btn:hover {
  opacity: 0.9;
}

.highlight-blue {
  color: #457DFF;
  font-weight: bold;
}