/* Simple responsive styles for the pharmacy site */
:root{
  --accent:#2b7a78;
  --muted:#666;
  --bg:#f8f9fb;
  --card:#ffffff;
  --radius:10px;
}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,Segoe UI,Arial,sans-serif;margin:0;background:var(--bg);color:#0b0b0b}
.container{max-width:980px;margin:0 auto;padding:20px}
.site-header{background:linear-gradient(90deg,var(--accent),#1b6f6d);color:#fff}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 20px}
.brand{margin:0;font-size:1.25rem}
.nav a{color:rgba(255,255,255,0.9);margin-left:16px;text-decoration:none}
.profile-card{display:flex;gap:20px;align-items:center;background:var(--card);padding:18px;border-radius:var(--radius);box-shadow:0 6px 18px rgba(11,11,11,0.05);margin-top:-40px}
.profile-card img{width:140px;height:140px;border-radius:12px;object-fit:cover;border:4px solid #fff}
.profile-info h2{margin:0 0 6px 0}
.role{margin:0;color:var(--muted)}
.profile-actions{margin-top:12px}
button{background:var(--accent);color:#fff;border:0;padding:8px 12px;border-radius:8px;cursor:pointer}
section{margin-top:20px}
.services ul{padding-left:18px}
.contact-form{display:flex;flex-direction:column;gap:8px;max-width:420px}
.contact-form input,.contact-form textarea{padding:8px;border-radius:8px;border:1px solid #ddd}
.site-footer{padding:12px 0;margin-top:26px;text-align:center;color:var(--muted)}

@media (max-width:600px){
  .profile-card{flex-direction:column;align-items:center;text-align:center}
  .profile-card img{width:120px;height:120px}
  .header-inner{flex-direction:column;gap:8px}
}
