* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: #2d3436; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.navbar { background: #fff; border-bottom: 1px solid #eee; padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.3rem; font-weight: 700; color: #e84393; text-decoration: none; }
.nav-links { list-style: none; display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: #555; text-decoration: none; font-size: 0.95rem; padding: 0.3rem 0; }
.nav-links a:hover, .nav-links a.active { color: #e84393; border-bottom: 2px solid #e84393; }
.menu-toggle { display: none; font-size: 1.5rem; cursor: pointer; }
.hero { background: linear-gradient(135deg, #e84393, #fd79a8); color: #fff; padding: 5rem 0; text-align: center; }
.hero h1 { font-size: 2.5rem; margin-bottom: 1rem; }
.subtitle { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2rem; max-width: 550px; margin-left: auto; margin-right: auto; }
.btn-primary { display: inline-block; background: #fff; color: #e84393; padding: 0.8rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(232,67,147,0.2); }
.values { padding: 4rem 0; background: #f8f9fa; }
.values h2, .page-header h1 { text-align: center; margin-bottom: 3rem; font-size: 2rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card { background: #fff; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.card h3 { margin-bottom: 1rem; color: #e84393; }
.page-header { background: #fff0f6; padding: 3rem 0; text-align: center; }
.page-header p { color: #666; }
.services-list, .contact-section { padding: 3rem 0; }
.service-item { background: #f8f9fa; padding: 2rem; border-radius: 12px; margin-bottom: 1.5rem; }
.service-item h2 { color: #e84393; margin-bottom: 0.5rem; }
.contact-section .container { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; }
.contact-info p { margin-bottom: 1rem; }
.contact-info a { color: #e84393; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.8rem; border: 1px solid #ddd; border-radius: 8px; margin-bottom: 1rem; font-family: inherit; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #e84393; box-shadow: 0 0 0 3px rgba(232,67,147,0.1); }
.footer { background: #2d3436; color: #aaa; padding: 2rem 0; text-align: center; font-size: 0.9rem; }
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; flex-direction: column; width: 100%; padding: 1rem 0; }
  .nav-links.active { display: flex; }
  .contact-section .container { grid-template-columns: 1fr; }
}
