.comparison {
  background: #fff;
  padding: 4rem 1.5rem;
  color: #0b3d0b;
  text-align: center;
}

.comparison h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0b3d0b;
}

.comparison p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.comparison-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-card {
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 450px;
  text-align: center;
}

/* Alternating card backgrounds */
.straight-card {
  background: #f7f5e7; /* parchment */
}

.sax-card {
  background: #ffffff; /* white */
}

.comparison-images {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.comparison-images svg {
  max-width: 160px;
  border-radius: 6px;
  background: #ddd;
}

.comparison-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #0b3d0b;
}

.comparison-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .comparison-images {
    flex-direction: column;
  }
}
.comparison-card {
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 450px;
  text-align: center;

  border: 2px solid #d4af37; /* gold outline */
}

/* Link styling */
.comparison-card h3 a {
  color: #d4af37;   /* gold link */
  text-decoration: none;
  font-weight: bold;
}

.comparison-card h3 a:hover {
  text-decoration: underline;
}
