.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;
}

.image-caption {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Base Styles */

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

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

/* Breadcrumb Navigation */

.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;
}

/* Header Styles */

header {
  margin-bottom: 40px;
  border-bottom: 1px solid #d2d2d7;
  padding-bottom: 20px;
}

h1 {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  color: #86868b;
  margin-top: 0;
}

/* Main Content Styles */

article {
  margin-bottom: 60px;
}

section {
  margin-bottom: 40px;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-top: 40px;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

ul, ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

/* Specification Highlights */

.spec-highlights {
  background-color: #f5f5f7;
  border-radius: 12px;
  padding: 20px;
  margin: 30px 0;
}

.spec-highlights h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.spec-highlights ul {
  list-style-type: none;
  padding-left: 0;
  columns: 2;
}

.spec-highlights li {
  margin-bottom: 12px;
  break-inside: avoid;
}

.spec-highlights strong {
  color: #1d1d1f;
}

/* Tables */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

thead tr {
  background-color: #f5f5f7;
  color: #1d1d1f;
  text-align: left;
}

th, td {
  padding: 12px 15px;
  border-bottom: 1px solid #d2d2d7;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background-color: #f5f5f7;
}

/* Pros and Cons */

.pros-cons {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.pros, .cons {
  flex: 1;
  padding: 20px;
  border-radius: 8px;
}

.pros {
  background-color: #f0f7f0;
  border-left: 4px solid #34c759;
}

.cons {
  background-color: #f7f0f0;
  border-left: 4px solid #ff3b30;
}

.pros h3 {
  color: #34c759;
}

.cons h3 {
  color: #ff3b30;
}

/* Footer Styles */

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;
}

/* Responsive Design */

@media (max-width: 768px) {
  .spec-highlights ul {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .pros-cons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  table {
    display: block;
    overflow-x: auto;
  }
}

