/* css/medisafe-alternative.css */

.page-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-top: 6rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.1;
  padding: 0 1rem;
}

.page-title span {
  color: var(--accent);
}

.page-subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.6;
  padding: 0 1rem;
}

.comparison-section {
  max-width: 1000px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.comparison-table th {
  background: #fdfdfd;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.comparison-table th.highlight {
  background: rgba(255, 183, 3, 0.1);
  color: var(--text-primary);
  border-bottom: 2px solid var(--accent);
  width: 35%;
}

.comparison-table td {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.comparison-table td.highlight {
  background: rgba(255, 183, 3, 0.03);
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.icon-check {
  color: #10B981;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.icon-cross {
  color: #EF4444;
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* Feature grid similar to about.css */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1.05rem;
}

.cta-section {
  text-align: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, rgba(255,183,3,0.1), rgba(255,183,3,0.02));
  margin-top: 2rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Removed Store Buttons (now in common.css) */

@media (max-width: 768px) {
  .page-title {
    font-size: 2.2rem;
  }
  
  .page-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
  }
  
  .comparison-table th {
    font-size: 1rem;
  }
  
  .cta-section {
    padding: 4rem 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
}
