/* Common styles for static pages */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #374151;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #f9fafb;
}
.container {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
h1 {
  color: #111827;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}
h2 {
  color: #1f2937;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1rem;
}
ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
li {
  margin-bottom: 0.5rem;
}
.emphasis {
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
.highlight {
  background-color: #fdf2f8;
  border: 1px solid #fbcfe8;
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
a {
  color: #7c3aed;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
th, td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}
th {
  background-color: #f9fafb;
  font-weight: 600;
}
.risk-low {
  color: #10b981;
  font-weight: 500;
}
.risk-medium {
  color: #f59e0b;
  font-weight: 500;
}
.risk-high {
  color: #ef4444;
  font-weight: 500;
}
.risk-very-low {
  color: #059669;
  font-weight: 500;
}

/* Responsive styles for mobile devices */
@media (max-width: 640px) {
  body {
    padding: 1rem;
    font-size: 15px;
    line-height: 1.5;
  }
  
  .container {
    padding: 1.25rem;
  }
  
  h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  p, li {
    font-size: 0.95rem;
  }
  
  .emphasis, .highlight {
    padding: 0.75rem;
    margin: 0.75rem 0;
  }
  
  .feature-section {
    margin-bottom: 2rem;
    padding: 1.25rem;
  }
  
  .feature-section h2 {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
  
  .feature-section h2 span {
    width: 2rem;
    height: 2rem;
  }
  
  .feature-highlight {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .conclusion {
    padding: 1.5rem;
    margin-top: 2rem;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  
  .benefit-item {
    padding: 1rem;
  }
  
  table {
    font-size: 0.9rem;
  }
  
  th, td {
    padding: 0.5rem;
  }
  
  .table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
  }
}

/* Styles for how-eviya-supports-well-being.html */
.feature-section {
  margin-bottom: 3rem;
  padding: 2rem;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-section h2 {
  color: #6d4f9c;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-section h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #6d4f9c;
  color: white;
  border-radius: 50%;
  font-weight: bold;
}

.feature-highlight {
  background-color: #f5f3fa;
  border-left: 4px solid #6d4f9c;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

.conclusion {
  background: linear-gradient(to right, #f5f3fa, #f4f7f4);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 3rem;
}

.conclusion h2 {
  color: #6d4f9c;
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-item h3 {
  color: #6d4f9c;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 640px) {
  .feature-section {
    padding: 1.5rem;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
}