.supreg {
  font-size: 0.6em;
  vertical-align: super;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.display-hero {
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
}

.display-hero img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid #eee;
}

body {
  font-family: 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0 auto;
  padding: 20px;
}

header {
  padding: 20px;
  margin-bottom: 30px;
}

h1 {
  color: #1d1d1f;
  font-size: 2.2em;
}

h2 {
  color: #1d1d1f;
  margin-top: 30px;
  font-size: 1.8em;
}

h3 {
  margin-top: 25px;
  font-size: 1.4em;
}

.breadcrumb {
  padding: 15px 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}

.breadcrumb li {
  margin-right: 10px;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 10px;
  color: #86868b;
}

.breadcrumb a {
  color: #06c;
  text-decoration: none;
}

.breadcrumb [aria-current="page"] {
  color: #86868b;
  font-weight: bold;
}

.content-section {
  margin-bottom: 40px;
}

.problem-solution {
  background-color: #f8f8f8;
  padding: 20px;
  border-left: 4px solid #06c;
  margin: 20px 0;
}

.warning {
  background-color: #fff8e1;
  padding: 15px;
  border-left: 4px solid #ffc107;
  margin: 20px 0;
}

.repair-option {
  display: flex;
  margin: 20px 0;
  align-items: left;
}

.repair-icon {
  font-size: 2em;
  margin-right: 15px;
  color: #06c;
}

.cta-button {
  display: inline-block;
  background-color: #06c;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #004080;
}

footer {
  border-top: 1px solid #d2d2d7;
  padding-top: 30px;
  margin-top: 50px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

footer nav a {
  color: #06c;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Modern HR Element Styling */

.hrs {
  border: #FF6B00;
  height: 4px;
  width: 80px;
  opacity: 100;
  background-color: #FF6B00;
  margin: 20px 0;
  display: block;
}

.contact-info i {
  color: #FF6B00;
  width: 30px;
  margin-right: 10px;
  text-align: center;
}

