* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', system-ui, sans-serif; color: #2a1f2d; line-height: 1.7; background: #faf8fb; }
header { background: #fff; padding: 1rem 2rem; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
nav { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { font-size: 1.5rem; font-weight: 800; color: #2a1f2d; letter-spacing: 0.1em; }
.logo-sub { font-size: 0.65rem; font-weight: 500; color: #c4a0c4; display: block; letter-spacing: 0.2em; text-transform: uppercase; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { text-decoration: none; color: #555; font-weight: 500; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: #9b59b6; }
.cta-btn { background: #9b59b6; color: #fff !important; padding: 0.6rem 1.2rem; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: background 0.2s; }
.cta-btn:hover { background: #7d3c98; }
.hero { background: linear-gradient(135deg, #f5eff9 0%, #ece0f3 50%, #e0cce8 100%); color: #2a1f2d; padding: 5rem 2rem; text-align: center; }
.hero-label { background: rgba(155,89,182,0.12); border: 1px solid rgba(155,89,182,0.3); display: inline-block; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.85rem; margin-bottom: 1.5rem; color: #7d3c98; font-weight: 600; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; }
.hero p { font-size: 1.15rem; opacity: 0.8; margin-bottom: 2rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.btn-primary { background: #9b59b6; color: #fff; padding: 0.9rem 1.8rem; border-radius: 8px; text-decoration: none; font-weight: 700; border: none; cursor: pointer; font-size: 1rem; display: inline-block; transition: background 0.2s; }
.btn-primary:hover { background: #7d3c98; }
.btn-secondary { background: transparent; color: #2a1f2d; padding: 0.9rem 1.8rem; border-radius: 8px; text-decoration: none; font-weight: 600; border: 2px solid rgba(42,31,45,0.2); display: inline-block; }
.hero-info { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; font-size: 0.95rem; opacity: 0.7; }
.services, .team, .hours-section, .contact { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }
.services h2, .team h2, .hours-section h2, .contact h2 { font-size: 2rem; margin-bottom: 2rem; text-align: center; color: #2a1f2d; font-weight: 700; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card { background: #fff; padding: 2rem; border-radius: 12px; border: 1px solid #ede0f3; text-align: center; transition: box-shadow 0.2s; }
.service-card:hover { box-shadow: 0 4px 20px rgba(155,89,182,0.12); }
.service-icon { font-size: 3rem; margin-bottom: 0.8rem; }
.service-card h3 { color: #9b59b6; margin-bottom: 0.8rem; font-size: 1.1rem; }
.service-card p { font-size: 0.95rem; color: #555; }
.team { background: #f5eff9; border-radius: 16px; margin-top: 2rem; padding: 3rem; }
.team-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.team-text p { font-size: 1.05rem; color: #555; margin-bottom: 1rem; }
.team-quote { background: #9b59b6; padding: 2rem; border-radius: 12px; color: #fff; }
.team-quote p { font-size: 1.1rem; font-style: italic; margin-bottom: 0.8rem; line-height: 1.6; }
.team-quote span { font-size: 0.9rem; opacity: 0.85; }
.hours-section { background: #fff; border-radius: 16px; margin-top: 2rem; padding: 3rem; }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.hours-info h3 { font-size: 1.4rem; margin-bottom: 1rem; color: #2a1f2d; }
.hours-info p { font-size: 0.95rem; color: #444; margin-bottom: 0.5rem; }
.hours-info a { color: #9b59b6; font-weight: 600; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid #ede0f3; font-size: 0.95rem; }
.contact { background: #f5eff9; border-radius: 16px; margin-top: 2rem; padding: 3rem; }
#contact-form { display: flex; flex-direction: column; gap: 1rem; max-width: 500px; margin: 0 auto; }
#contact-form input, #contact-form select, #contact-form textarea { padding: 0.8rem; border: 1px solid #d5c0e3; border-radius: 6px; font-size: 1rem; width: 100%; font-family: inherit; }
#contact-form textarea { resize: vertical; min-height: 120px; }
footer { background: #2a1f2d; color: #e0c0f0; text-align: center; padding: 3rem 2rem; margin-top: 4rem; }
footer h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.8rem; }
footer p { margin-bottom: 0.4rem; font-size: 0.9rem; }
.copyright { margin-top: 1rem; font-size: 0.8rem; opacity: 0.7; }
@media (max-width: 768px) { .nav-links { display: none; } .hero h1 { font-size: 2.1rem; } .team-content { grid-template-columns: 1fr; } .hours-grid { grid-template-columns: 1fr; } }
