 :root { --pink: #cc0099; --green: #008000; --dark: #222; --bg: #fffafc; --border: #e8dce7; }
* { box-sizing: border-box; }
body { margin: 0; font-family: Georgia, "Times New Roman", serif; color: var(--dark); background: var(--bg); line-height: 1.6; }
.page { max-width: 1200px; margin: 0 auto; padding: 24px; }
.header { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 12px 24px; margin-bottom: 20px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.header h1 { margin: 0 0 10px; color: var(--pink); font-size: 2.2rem; letter-spacing: 0.5px; }
.header p { margin: 0; font-size: 1.05rem; color: var(--green); }
.hero { display: flex; align-items: center; justify-content: center; gap: 24px; }
.hero img { width: 180px; height: auto; max-width: 100%; border-radius: 8px; }
.hero-text { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.hero-text h1 { margin: 0; text-align: center; }
.hero-subtitle { display: flex; flex-direction: column; align-items: center; gap: 2px; margin-top: 8px; text-align: center; }
.hero-subtitle p { margin: 0; color: var(--green); }
.layout { display: grid; grid-template-columns: 260px 1fr; gap: 24px; align-items: start; }
.sidebar { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 16px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.sidebar a { display: block; padding: 12px 18px; color: var(--dark); text-decoration: none; border-bottom: 1px solid #f3e8ef; }
.sidebar a:hover { background: #fff2fb; color: var(--pink); }
.content { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.content h2 { margin-top: 0; color: var(--pink); font-size: 1.6rem; }
.content h3 { margin: 16px 0 8px; color: var(--pink); }
.content p { margin-bottom: 12px; font-size: 1rem; }
.content ul { margin: 8px 0 14px 18px; padding: 0; }
.service-item { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: start; margin-bottom: 12px; }
.service-subitem { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px; align-items: start; margin: 6px 0 8px 24px; padding-left: 8px; border-left: 2px solid #f1dce8; }
.service-text { min-width: 0; }
.service-name { font-weight: 700; color: var(--dark); }
.service-time { color: var(--dark); }
.service-description { margin: 4px 0 0; font-size: 0.95rem; color: #5f5f5f; }
.service-price { font-weight: 700; color: var(--pink); white-space: nowrap; text-align: right; }
.service-section { margin-top: 20px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px; background: #fffdfd; }
.service-section h3 { margin: 0 0 10px; color: var(--pink); font-size: 1.1rem; }
.price { font-weight: bold; color: var(--pink); }
.highlight { font-weight: bold; color: var(--pink); }
.info-box { margin-top: 24px; padding: 16px 18px; border-left: 4px solid var(--pink); background: #fff8fc; border-radius: 8px; }
@media (max-width: 800px) { .layout { grid-template-columns: 1fr; } .sidebar { order: 2; } }
