/* Reset basics */
* { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; background: #f7f7f9; color: #111; font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }

/* Layout */
.experts-main { min-height: calc(100vh - 60px); display: grid; place-items: center; padding: 40px 16px; }
.experts-card { background: #f0e9d7; border-radius: 16px; padding: 32px; max-width: 760px; width: 100%;
  box-shadow: 0 8px 36px rgba(0,0,0,0.08), 0 0 0 1px rgba(0,0,0,0.06); }

/* Content */
.experts-title { margin: 0 0 8px 0; font-size: 28px; line-height: 1.2; }
.experts-subtitle { margin: 0 0 20px 0; color: #444; }

/* CTA */
.experts-cta { display: inline-block; padding: 12px 16px; border-radius: 10px; text-decoration: none;
  background: #ff6b5c; color: #fff; font-weight: 600; }
.experts-cta:hover { filter: brightness(0.95); }

/* Footer */
.experts-footer { height: 60px; display: grid; place-items: center; color: #777; }
