* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; font-size: 15px; color: #1a1a1a; background: #fff; }
a { color: #6c4fd4; text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 32px; border-bottom: 1px solid #e5e5e5; background: #fff; position: sticky; top: 0; z-index: 100; }
.nav-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; color: #1a1a1a; }
.nav-brand img { width: 28px; height: 28px; border-radius: 6px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: #555; font-size: 14px; }
.nav-links a:hover { color: #1a1a1a; text-decoration: none; }

/* HERO */
.hero { background: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 50%, #6c6c6c 100%); padding: 56px 32px; text-align: center; color: white; }
.hero-icon { width: 56px; height: 56px; border-radius: 12px; margin: 0 auto 16px; }
.hero h1 { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.hero p { font-size: 13px; opacity: 0.75; margin-bottom: 20px; }
.btn-primary { background: #6c4fd4; color: white; padding: 10px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; display: inline-block; margin: 0 6px; }
.btn-outline { background: transparent; color: white; border: 1px solid white; padding: 10px 20px; border-radius: 6px; font-size: 14px; font-weight: 600; display: inline-block; margin: 0 6px; }

/* MAIN LAYOUT */
.page-content { max-width: 960px; margin: 0 auto; padding: 32px 24px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .two-col { grid-template-columns: 1fr; } nav .nav-links { gap: 14px; } }

/* CARDS */
.card { background: #f8f8f8; border: 1px solid #e8e8e8; border-radius: 10px; padding: 20px; margin-bottom: 16px; }
.card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.card p { font-size: 14px; color: #555; line-height: 1.5; }
.card-accent { border-left: 3px solid #6c4fd4; }

/* SECTION TITLES */
h2.section-title { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.section-block { margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid #ebebeb; }
.section-block:last-child { border-bottom: none; }

/* CONTACT INFO */
.contact-table { width: 100%; border-collapse: collapse; }
.contact-table tr td { padding: 10px 0; font-size: 14px; border-bottom: 1px solid #f0f0f0; }
.contact-table tr td:first-child { color: #888; width: 100px; }

/* FORM */
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 5px; color: #444; }
.form-group input, .form-group textarea { width: 100%; border: 1px solid #ddd; border-radius: 6px; padding: 9px 12px; font-size: 14px; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: #6c4fd4; }
.form-group textarea { height: 100px; resize: vertical; }
.consent-group { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; font-size: 13px; color: #555; line-height: 1.5; }
.consent-group input { margin-top: 3px; flex-shrink: 0; }
.submit-btn { background: #6c4fd4; color: white; border: none; padding: 11px 28px; border-radius: 6px; font-size: 15px; font-weight: 600; cursor: pointer; }
.submit-btn:hover { background: #5a3db8; }

/* WHAT TO EXPECT */
.expect-list { list-style: disc; padding-left: 20px; font-size: 14px; color: #444; line-height: 2; }

/* ALERT BOX */
.alert { background: #fff8e1; border: 1px solid #ffe082; border-radius: 8px; padding: 14px 18px; font-size: 13px; margin-bottom: 24px; color: #5a4500; line-height: 1.6; }

/* LEGAL CONTENT */
.legal-content h2 { font-size: 16px; font-weight: 700; margin: 24px 0 10px; }
.legal-content h3 { font-size: 14px; font-weight: 700; margin: 16px 0 6px; }
.legal-content p { font-size: 14px; color: #444; line-height: 1.7; margin-bottom: 10px; }
.legal-content ul { padding-left: 20px; margin-bottom: 10px; }
.legal-content ul li { font-size: 14px; color: #444; line-height: 1.8; }

/* SMS PAGE */
.sms-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.sms-table tr td { padding: 12px 16px; font-size: 14px; border-bottom: 1px solid #f0f0f0; vertical-align: top; }
.sms-table tr td:first-child { color: #888; width: 120px; font-weight: 500; }

/* FOOTER */
footer { background: #1a1a1a; color: #aaa; padding: 40px 32px 20px; margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; max-width: 960px; margin: 0 auto 28px; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
footer h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 12px; }
footer p, footer li { font-size: 13px; line-height: 1.8; }
footer a { color: #aaa; }
footer a:hover { color: white; text-decoration: none; }
footer ul { list-style: none; }
.footer-bottom { max-width: 960px; margin: 0 auto; padding-top: 16px; border-top: 1px solid #333; display: flex; justify-content: space-between; font-size: 12px; color: #666; }

/* PAGE HEADER */
.page-header { background: #f8f8f8; border-bottom: 1px solid #e8e8e8; padding: 28px 32px; }
.page-header h1 { font-size: 22px; font-weight: 700; }
.page-header p { font-size: 13px; color: #888; margin-top: 4px; }

/* GET DIRECTIONS BTN */
.directions-btn { display: inline-flex; align-items: center; gap: 6px; background: #6c4fd4; color: white; padding: 10px 18px; border-radius: 6px; font-size: 14px; font-weight: 600; margin-top: 12px; }
