/* Dla pacjenta page specific styles */
.page-title { font-size: 36px; color: #333; margin-bottom: 20px; text-align: center; }
.subtitle { text-align: center; color: #666; font-size: 18px; margin-bottom: 40px; }

.intro-section { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); margin-bottom: 30px; }
.intro-text { font-size: 16px; line-height: 1.8; color: #333; margin-bottom: 15px; }

.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; margin-bottom: 40px; }

.info-card { background: white; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); overflow: hidden; transition: transform 0.3s; text-decoration: none; color: inherit; display: block; }
.info-card:hover { transform: translateY(-5px); }

.info-card-header { padding: 25px; position: relative; color: white; min-height: 120px; display: flex; flex-direction: column; justify-content: space-between; }
.info-card-header h3 { font-size: 24px; margin-bottom: 10px; }
.info-card-header p { font-size: 14px; opacity: 0.95; }

.card-hypertension { background: linear-gradient(135deg, #4caf50, #8bc34a); }
.card-vitamin { background: linear-gradient(135deg, #ffa726, #ffb74d); }
.card-asthma { background: linear-gradient(135deg, #42a5f5, #64b5f6); }

.info-card-content { padding: 25px; }
.info-card-content ul { list-style: none; }
.info-card-content li { padding: 12px 0; border-bottom: 1px solid #eee; color: #666; }
.info-card-content li:last-child { border-bottom: none; }
.info-card-content li:before { content: '✓'; color: #ff6b35; font-weight: bold; margin-right: 10px; }

.read-more { color: #ff6b35; font-weight: bold; display: inline-block; margin-top: 15px; }

.health-tips { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); margin-bottom: 30px; }
.health-tips h2 { color: #ff6b35; margin-bottom: 25px; font-size: 28px; }

.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.tip-box { padding: 20px; background: linear-gradient(135deg, #fff9f0, #fff); border-radius: 8px; border-left: 4px solid #ff6b35; }
.tip-box h4 { color: #333; margin-bottom: 12px; font-size: 18px; }
.tip-box p { color: #666; font-size: 14px; line-height: 1.6; }

.faq-section { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.faq-section h2 { color: #ff6b35; margin-bottom: 25px; font-size: 28px; }

.faq-item { margin-bottom: 20px; padding: 20px; background: #f9f9f9; border-radius: 8px; }
.faq-question { color: #333; font-weight: bold; margin-bottom: 10px; font-size: 16px; }
.faq-answer { color: #666; font-size: 14px; line-height: 1.6; }
