/* ===== Eknath Tax Consultancy — Main Stylesheet ===== */

:root {
  --navy: #0d1b2a;
  --navy-2: #132a3e;
  --gold: #c9a227;
  --gold-light: #e3c463;
  --gold-dark: #a8871c;
  --cream: #faf7f0;
  --white: #ffffff;
  --ink: #1b1f24;
  --muted: #6b7280;
  --line: #e6e2d6;
  --radius: 14px;
  --shadow: 0 12px 34px rgba(13, 27, 42, 0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3, h4 { line-height: 1.2; }

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

html {
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; }

.icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  vertical-align: middle;
  margin-right: 6px;
}

.icon-sm {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(168, 135, 28, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(168, 135, 28, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-block { width: 100%; text-align: center; border: none; }

/* ===== Top Bar ===== */
.topbar { background: var(--navy); color: #d7dde5; font-size: 0.85rem; }

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; }
.topbar-item a:hover { color: var(--gold-light); }

.topbar-right { display: flex; gap: 10px; }

.social {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: 0.2s;
  color: #fff;
}

.social .icon-sm { width: 16px; height: 16px; }

.social-yt { background: #ff0000; }
.social-fb { background: #1877f2; }
.social-in { background: #0a66c2; }
.social-inst {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.social:hover { transform: translateY(-2px); filter: brightness(1.1); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); }

.contact-card .socials { margin-top: 8px; display: flex; gap: 14px; flex-wrap: wrap; }
.contact-card .socials-lnk {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
}
.contact-card .socials-lnk .icon { margin-right: 0; width: 18px; height: 18px; }

.contact-card .socials-yt { color: #ff0000; }
.contact-card .socials-fb { color: #1877f2; }
.contact-card .socials-in { color: #0a66c2; }
.contact-card .socials-inst {
  color: #a12d9f;
}
.contact-card .socials-yt .icon { fill: #ff0000; }
.contact-card .socials-fb .icon { fill: #1877f2; }
.contact-card .socials-in .icon { fill: #0a66c2; }
.contact-card .socials-inst .icon { fill: #a12d9f; }

.contact-card .socials-lnk:hover { opacity: 0.75; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--navy);
  padding: 4px;
}

.brand-name {
  display: block;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
}

.brand-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-link:hover::after { width: 100%; }

.nav-cta { padding: 10px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: 0.25s;
}

/* ===== Hero ===== */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(201, 162, 39, 0.25), transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  padding: 70px 0 90px;
}

.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--gold-light);
  margin-bottom: 18px;
  font-weight: 600;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.accent { color: var(--gold-light); }

.hero-sub {
  font-size: 1.1rem;
  color: #c7d2dd;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-badges { display: flex; flex-direction: column; gap: 8px; }

.badge { font-size: 0.88rem; color: #dfe6ee; }

.hero-media { display: flex; justify-content: center; }

.hero-img {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  border: 4px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  background: var(--navy-2);
}

.hero-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 0;
}

.strip-item { display: flex; flex-direction: column; }

.strip-item strong { font-size: 1.35rem; }
.strip-item span { font-size: 0.82rem; opacity: 0.9; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.section-sub { color: var(--muted); }

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.about-media { position: relative; }

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--line);
}

.about-img-stacked {
  width: 55%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
  margin-top: -70px;
  margin-left: auto;
  background: var(--line);
}

.about-content p { margin-bottom: 16px; color: #374151; }

.about-points { list-style: none; margin: 8px 0 26px; }

.about-points li {
  padding: 7px 0 7px 30px;
  position: relative;
  color: #374151;
}

.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.profile-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.profile-avatar img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--line);
}

.profile-name { color: var(--navy); }
.profile-role { font-size: 0.9rem; color: var(--gold-dark); font-weight: 600; }
.profile-quals { font-size: 0.82rem; color: var(--muted); }

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--gold-light);
}

.service-title { color: var(--navy); font-size: 1.25rem; margin-bottom: 12px; }

.service-list { list-style: none; }

.service-list li {
  padding: 5px 0 5px 20px;
  position: relative;
  font-size: 0.92rem;
  color: #374151;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--gold-dark);
  font-weight: 800;
}

.service-note {
  margin-top: 32px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: #374151;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}

.price-card {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, #fffdf6, #fff);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  transition: 0.25s;
}

.price-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.price-service { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }

.price-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold-dark);
}

.price-rs { font-size: 1.2rem; }

.price-detail { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }

.price-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 30px;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.contact-card h4 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }

.contact-card p { color: #374151; font-size: 0.95rem; }

.contact-card a:hover { color: var(--gold-dark); }

.map-wrap {
  margin-top: 14px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 240px;
  border: 0;
}

.muted { color: var(--muted) !important; font-size: 0.88rem !important; margin-top: 6px; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-form h3 { color: var(--navy); margin-bottom: 20px; }

.form-row { margin-bottom: 14px; }

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.form-note { margin-top: 12px; font-size: 0.9rem; color: #2f7d32; text-align: center; }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--navy);
}

/* ===== Section CTAs ===== */
.section-cta {
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.section-cta-left { justify-content: flex-start; }

.section-cta .faq-help { width: 100%; margin-bottom: 0; }
.section-cta-left .faq-help { text-align: left; }

@media (max-width: 576px) {
  .section-cta .btn { width: 100%; text-align: center; }
  .section-cta-left { justify-content: center; }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 48px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 700;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item[open] summary { color: var(--gold-dark); }

.faq-item p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  max-width: 640px;
  margin: 0 auto;
  background: var(--navy);
  color: #dbe4ee;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
}

.cookie-banner p { margin-bottom: 14px; }

.cookie-banner a { color: var(--gold-light); text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn { padding: 10px 20px; font-size: 0.88rem; }

@media (max-width: 480px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 16px; }
  .cookie-actions .btn { width: 100%; text-align: center; }
}

/* ===== Footer ===== */

/* ===== Careers ===== */
.careers-box {
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: var(--radius);
  padding: 48px 44px;
  text-align: center;
  box-shadow: var(--shadow);
  color: #dbe4ee;
  position: relative;
}

.careers-box::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: calc(var(--radius) - 10px);
  pointer-events: none;
}

.careers-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-icon svg { width: 34px; height: 34px; fill: var(--navy); }

.careers-title {
  color: var(--gold-light);
  font-size: 1.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.careers-title::before,
.careers-title::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 46px;
  height: 1px;
  background: rgba(212, 175, 55, 0.6);
  margin: 0 12px;
}

.careers-text { color: #dbe4ee; margin-bottom: 12px; }

.careers-mail { color: var(--gold-light); font-weight: 600; }
.careers-mail:hover { text-decoration: underline; }

.careers-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin: 6px 0 18px;
}

.careers-list li {
  padding: 6px 0 6px 26px;
  position: relative;
  color: #dbe4ee;
  font-size: 0.95rem;
}

.careers-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-light);
  font-weight: 800;
}

.careers-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

.careers-box .btn-outline-dark {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}

.careers-box .btn-outline-dark:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ===== Footer ===== */
.footer { background: var(--navy); color: #c7d2dd; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 56px 0 40px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: #fff; }

.footer-logo { width: 46px; height: 46px; object-fit: contain; border-radius: 50%; background: var(--navy-2); padding: 4px; }

.footer-brand h3 { font-size: 1.1rem; }

.footer-tag { color: var(--gold-light); font-style: italic; margin-bottom: 10px; }
.footer-msg { font-size: 0.9rem; }

.footer-col h4 { color: #fff; margin-bottom: 14px; font-size: 1rem; }

.footer-col a { display: block; padding: 4px 0; font-size: 0.9rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }

.footer-col p { font-size: 0.9rem; margin-bottom: 8px; }

.footer-col a[href^="mailto"], .footer-col a[href^="tel"] { color: var(--gold-light); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 18px 0; text-align: center; font-size: 0.85rem; }

.footer-bottom .footer-link {
  display: inline-block;
  padding: 0;
  margin: 0 4px;
  color: var(--gold-light);
}

.footer-bottom .footer-link:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 50px; }
  .hero-sub { margin: 0 auto 30px; }
  .hero-actions { justify-content: center; }
  .hero-badges { align-items: center; }
  .hero-img { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-stacked { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .header { background: #ffffff; backdrop-filter: none; }

  .brand-logo { width: 44px; height: 44px; }
  .brand-name { font-size: 1.05rem; line-height: 1.2; }
  .brand-text { min-width: 0; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 80vw);
    background: #ffffff;
    z-index: 1000;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 92px 28px 30px;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { transform: translateX(0); }
  .nav-toggle { display: flex; position: relative; z-index: 1001; flex-shrink: 0; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav .nav-link { padding: 10px 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .nav .nav-cta { width: 100%; text-align: center; margin-top: 14px; }

  .topbar-inner { justify-content: center; }
  .topbar-left { justify-content: center; gap: 10px; font-size: 0.82rem; }
  .topbar-right { gap: 6px; }
  .topbar-right .social { width: 26px; height: 26px; }
  .topbar-item:nth-child(2) { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .section { padding: 56px 0; }
  .hero-inner { padding: 40px 0 60px; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .strip-item { text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-media { margin-bottom: 8px; }
  .profile-card { align-items: center; text-align: center; }
  .contact-form { padding: 22px; }
  .map-wrap iframe { height: 200px; }
  .footer-grid { gap: 28px; }
  .brand-sub { display: none; }
}

@media (max-width: 400px) {
  .hero-actions .btn { width: 100%; text-align: center; }
  .topbar-left { font-size: 0.78rem; gap: 8px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-name { font-size: 0.95rem; }
  .price-value { font-size: 1.6rem; }
  .about-points li { font-size: 0.92rem; }
  .careers-box { padding: 40px 24px; }
}