:root {
  --color-bg: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-card: #f8fafc;
  --color-border: #e5e7eb;
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-danger: #dc2626;
  --color-danger-light: #fee2e2;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

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

button, input, select { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.section { padding: 72px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.94);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.main-nav a:hover { color: var(--color-primary); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-secondary { background: #eef2ff; color: var(--color-primary); }
.btn-secondary:hover { background: #dbeafe; }
.btn-danger { background: var(--color-danger-light); color: var(--color-danger); }
.btn-danger:hover { background: #fecaca; }

.hero {
  background:
    radial-gradient(circle at top right, rgba(37,99,235,0.14), transparent 35%),
    linear-gradient(180deg, #fff, #f8fafc);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(2.35rem, 6vw, 4.75rem); max-width: 820px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-muted);
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-card {
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.hero-stat {
  background: var(--color-card);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid var(--color-border);
}

.hero-stat strong {
  display: block;
  font-size: 2rem;
  color: var(--color-primary);
}

.hero-stat span { color: var(--color-muted); }

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

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

.calculator-card,
.content-card,
.guide-card,
.contact-card,
.container-results {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calculator-card { padding: 24px; }

.error-box {
  display: none;
  background: var(--color-danger-light);
  color: var(--color-danger);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700;
}

.error-box.show { display: block; }

.carton-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.carton-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 850px;
}

.carton-table th,
.carton-table td {
  padding: 12px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.carton-table th {
  font-size: 0.86rem;
  color: var(--color-muted);
  background: var(--color-card);
}

.carton-table input,
.carton-table select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 10px;
  outline: none;
  background: #fff;
}

.carton-table input:focus,
.carton-table select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.14);
}

.remove-btn {
  border: 0;
  background: var(--color-danger-light);
  color: var(--color-danger);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 800;
}

.calculator-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.result-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.result-card span {
  display: block;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.result-card strong {
  display: block;
  margin-top: 8px;
  color: var(--color-primary);
  font-size: 1.7rem;
}

.container-results {
  margin-top: 28px;
  padding: 24px;
}

.container-utilization-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.utilization-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px;
}

.progress-track {
  height: 12px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin: 12px 0;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: var(--color-primary);
  border-radius: inherit;
}

.content-grid, .guide-grid, .tools-grid {
  display: grid;
  gap: 18px;
}

.content-grid { grid-template-columns: repeat(2, 1fr); }
.content-card { padding: 24px; }
.content-card p { color: var(--color-muted); }
.full-width { grid-column: 1 / -1; }

.guide-grid { grid-template-columns: repeat(3, 1fr); }
.guide-card { padding: 24px; }
.guide-card p {
  color: var(--color-primary);
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.guide-card span { color: var(--color-muted); }

.faq-list { display: grid; gap: 14px; }

details {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.04);
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  color: var(--color-muted);
  margin-bottom: 0;
}

.tools-grid { grid-template-columns: repeat(5, 1fr); }

.tool-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px;
  color: var(--color-text);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
}

.tool-card:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.contact-card {
  text-align: center;
  padding: 42px 24px;
  max-width: 760px;
  margin: 0 auto;
}

.contact-card p { color: var(--color-muted); }

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 28px 0;
  background: var(--color-card);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--color-muted);
}

.footer-inner nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner a:hover { color: var(--color-primary); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}


.volumetric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 800;
  color: var(--color-text);
}

.form-group input,
.form-group select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px;
  outline: none;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.14);
}

.volumetric-results {
  margin-top: 28px;
}


.container-dimension-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.container-dimension-card p {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.dimension-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 22px;
}

.dimension-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.dimension-table th,
.dimension-table td {
  border: 1px solid var(--color-border);
  padding: 16px;
  text-align: left;
}

.dimension-table th {
  background: var(--color-card);
  font-weight: 800;
}

.dimension-table td {
  color: var(--color-text);
}


.charge-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  background: #eef2ff;
  color: var(--color-primary);
  font-weight: 800;
}

@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .hero-grid, .content-grid, .guide-grid, .container-utilization-grid, .volumetric-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .section { padding: 52px 0; }
  .results-grid, .tools-grid { grid-template-columns: 1fr; }
  .calculator-card { padding: 16px; }
  .btn { width: 100%; }
  .calculator-actions, .hero-actions { flex-direction: column; }
}


.page-hero {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  padding: 72px 0 36px;
}

.page-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.page-content {
  max-width: 920px;
}

.page-content h2 {
  margin-top: 34px;
  font-size: 1.65rem;
}

.page-content h3 {
  margin-top: 24px;
}

.page-content p,
.page-content li {
  color: var(--color-muted);
}

.page-content ul {
  padding-left: 22px;
}

.legal-date {
  color: var(--color-muted);
  font-weight: 700;
}



/* Blog and article styles */
.article-hero .article-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--color-muted);
  font-size: 0.95rem;
  margin-top: 14px;
}

.article-content {
  line-height: 1.75;
}

.article-content a,
.blog-card a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

.article-content a:hover,
.blog-card a:hover {
  text-decoration: underline;
}

.article-image {
  margin: 28px 0;
}

.article-image img {
  width: 100%;
  height: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-image figcaption {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.table-scroll {
  overflow-x: auto;
  margin: 18px 0;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
}

.content-table th,
.content-table td {
  border: 1px solid var(--color-border);
  padding: 12px;
  text-align: left;
}

.content-table th {
  background: #f8fafc;
}

.faq-section {
  margin-top: 34px;
}

.author-box {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr; }
}
.contact-email {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}

.contact-email:hover {
  text-decoration: underline;
}
.site-notice {
  background: #fff8e1;
  color: #5c4300;
  border-bottom: 1px solid #f0d98a;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.site-notice a {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
}
.incoterms-page {
  padding: 30px 15px;
}

.hero-section {
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 14px;
  margin-bottom: 25px;
  background: #fff;
}

.tool-card {
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 14px;
  margin-bottom: 25px;
  background: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.form-grid label,
.tool-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-grid select,
.tool-card select {
  width: 100%;
  padding: 12px;
  border: 1px solid #bbb;
  border-radius: 8px;
  background: #fff;
}

.tool-card button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.tool-card button:hover {
  background: #333;
}

.result-box,
.visualizer-box {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fafafa;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.compare-card {
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
}

.badge {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 20px;
  border: 1px solid #111;
  font-size: 12px;
  margin: 3px 3px 3px 0;
}

.badge-dark {
  background: #111;
  color: #fff;
}

.table-wrapper {
  overflow-x: auto;
}

.incoterms-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.incoterms-table th,
.incoterms-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.incoterms-table th {
  background: #111;
  color: #fff;
}

.stage-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ddd;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  background: #fff;
}

.disclaimer-box {
  border: 1px solid #ddd;
  border-radius: 14px;
  padding: 25px;
  background: #fafafa;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .form-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-section,
  .tool-card {
    padding: 20px;
  }

  .stage-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.notice-box {
  background: #f8f8f8;
  border-left: 4px solid #111;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
}
.incoterm-details {
  margin-top: 15px;
}

.incoterm-details summary {
  cursor: pointer;
  font-weight: 600;
  color: #2563eb;
  padding: 8px 0;
}

.incoterm-details summary:hover {
  text-decoration: underline;
}

.incoterm-details p {
  margin: 10px 0;
}

.compare-card {
  padding: 20px;
}

.compare-card p {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .page-hero {
    padding: 40px 0 24px;
  }

  .page-hero h1 {
    font-size: 2.4rem;
    line-height: 1.1;
  }
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-primary);
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .header-inner {
    position: relative;
    min-height: 68px;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 0 0 16px 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  }

  .main-nav.mobile-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .incoterms-page {
    padding: 24px 16px;
  }

  .tool-card {
    padding: 22px;
    border-radius: 16px;
  }

  .tool-card h2 {
    font-size: 1.8rem;
    line-height: 1.15;
  }
}
.recommendation-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 24px;
}

.recommendation-label {
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 12px;
}

.recommendation-term {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.recommendation-confidence {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef4ff;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 18px;
}

.recommendation-reason h4 {
  margin-bottom: 8px;
}

.recommendation-note {
  margin-top: 18px;
  padding: 14px;
  border-left: 4px solid #2563eb;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 0.95rem;
}
.popular-comparisons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.popular-comparisons button {
  background: #eef4ff;
  color: #2563eb;
  border: 1px solid #dbe7ff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.popular-comparisons button:hover {
  background: #2563eb;
  color: #fff;
}
.related-tools {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #ffffff;
}

.related-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.related-tools-grid a {
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 700;
  background: #f8fafc;
}

.related-tools-grid a:hover {
  color: #2563eb;
  border-color: #2563eb;
}

@media (max-width: 768px) {
  .related-tools-grid {
    grid-template-columns: 1fr;
  }
}
.incoterm-learning {
  margin-top: 40px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
}

.incoterm-learning details {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 12px;
}

.incoterm-learning summary {
  cursor: pointer;
  font-weight: 700;
}

.incoterm-learning p {
  margin-top: 10px;
  line-height: 1.7;
}
.calculators-page {
  padding: 40px 20px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.calculator-card {
  display: block;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #ffffff;
  text-decoration: none;
  color: var(--color-text);
  transition: 0.2s ease;
}

.calculator-card h2 {
  margin: 10px 0;
  font-size: 1.35rem;
}

.calculator-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

.calculator-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-primary);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.card-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--color-primary);
  font-weight: 700;
}

@media (max-width: 900px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .calculators-page {
    padding: 28px 16px;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .calculator-card {
    padding: 22px;
  }
}
/* Blog image styling */
.blog-hero-image {
  width: 100%;
  max-width: 900px;
  max-height: 420px;
  object-fit: cover;
  display: block;
  margin: 0 auto 30px;
  border-radius: 16px;
}

.blog-content-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 12px;
}
.hero-article-image {
  margin-bottom: 2rem;
}

.hero-article-image img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
}
.home-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #f5f7fb, #ffffff);
}

.home-hero-inner {
  max-width: 850px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 12px;
}

.home-hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.home-hero p {
  font-size: 18px;
  color: #555;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.home-section {
  padding: 45px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin-bottom: 8px;
}

.section-heading p {
  color: #666;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-card {
  display: block;
  padding: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease;
}

.home-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.home-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.home-card p {
  color: #666;
  font-size: 15px;
}

.why-box,
.home-cta {
  padding: 34px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
}

.category-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.category-list span {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid #e5e7eb;
  font-weight: 600;
}

.home-cta {
  text-align: center;
}

.home-cta p {
  color: #666;
  margin-bottom: 22px;
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 1px solid #d1d5db;
}

@media (max-width: 900px) {
  .home-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .home-card-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 45px 0;
  }

  .home-hero h1 {
    font-size: 30px;
  }

  .home-hero p {
    font-size: 16px;
  }
}
.calculators-hub {
  padding: 40px 0;
}

.calculator-category {
  margin-bottom: 45px;
}

.calculator-category h2 {
  margin-bottom: 18px;
  font-size: 26px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.calculator-card {
  display: block;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: 0.2s ease;
}

.calculator-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.calc-icon {
  display: block;
  font-size: 30px;
  margin-bottom: 12px;
}

.calc-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: #0057ff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.calculator-card h3 {
  margin-bottom: 10px;
}

.calculator-card p {
  color: #475569;
  margin-bottom: 14px;
}

.calculator-card small {
  display: block;
  color: #64748b;
  margin-bottom: 18px;
  line-height: 1.5;
}

.calculator-card strong {
  color: #0057ff;
}

.calculators-info,
.faq-section {
  padding: 35px;
  margin-bottom: 40px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
}

.faq-item {
  margin-top: 22px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.faq-item p,
.calculators-info p {
  color: #475569;
}

@media (max-width: 900px) {
  .calculator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .calculators-info,
  .faq-section {
    padding: 24px;
  }
}
.container-size-guide summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
  color: #0057ff;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 18px;
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.guide-table th,
.guide-table td {
  border: 1px solid #e5e7eb;
  padding: 12px;
  text-align: left;
}

.guide-table th {
  background: #f8fafc;
}

.guide-note {
  margin-top: 16px;
  color: #475569;
}

.loading-plan-box {
  margin-bottom: 28px;
}

.main-plan-card {
  padding: 22px;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  background: #f8fbff;
}

.main-plan-card h4 {
  margin-bottom: 14px;
  color: #0057ff;
}

.container-visual {
  width: 100%;
  height: 46px;
  border: 2px solid #cbd5e1;
  border-radius: 10px;
  background: #e5e7eb;
  overflow: hidden;
  margin: 14px 0 8px;
  position: relative;
}

.container-fill {
  height: 100%;
  background: #0057ff;
  transition: width 0.3s ease;
}

.fill-label {
  font-weight: 700;
  color: #0057ff;
  margin-bottom: 14px;
}

.progress-track {
  width: 100%;
  height: 12px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin: 10px 0;
}

.progress-bar {
  height: 100%;
  background: #0057ff;
  border-radius: 999px;
}
.page-card {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    z-index: 999;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    font-size: 18px;
    color: #111827;
  }

  .header-inner {
    position: relative;
  }
}
.breadcrumb {
  max-width: 1100px;
  margin: 22px auto 0;
  padding: 0 20px;
  font-size: 14px;
  color: #64748b;
}

.breadcrumb a {
  color: #0057ff;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
}

@media (max-width: 600px) {
  .breadcrumb {
    font-size: 13px;
    margin-top: 16px;
  }
}
.incoterm-card {
  margin-bottom: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.incoterm-card summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  color: #0057ff;
  background: #f8fafc;
}

.incoterm-card p {
  padding: 0 20px;
  margin: 12px 0;
  line-height: 1.7;
}

.incoterm-card p:last-child {
  padding-bottom: 16px;
}
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-page h1 {
  margin-bottom: 16px;
}

.legal-page h2 {
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
  color: #475569;
  line-height: 1.7;
}

.last-updated {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 24px;
}

.legal-trust-card {
  margin-top: 36px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f8fafc;
}
/* AdSense trust and content improvements */
.trust-section,
.audience-section,
.related-section,
.author-box,
.disclaimer-box,
.page-intro-box {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  margin: 30px 0;
}

.trust-section h2,
.audience-section h2,
.related-section h2,
.author-box h3,
.disclaimer-box h3,
.page-intro-box h2 {
  margin-top: 0;
  color: #111827;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  background: #f9fafb;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.related-links {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.article-meta {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 18px;
}
.about-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 20px;
  line-height: 1.7;
}

.about-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 28px;
  margin-top: 35px;
  margin-bottom: 12px;
}

.about-content p,
.about-content li {
  font-size: 16px;
  color: #374151;
}

.about-content ul {
  padding-left: 22px;
}
.blog-info-section {
  padding: 28px 20px;
  background: #ffffff;
}

.blog-info-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
}

.blog-info-section h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #111827;
}

.blog-info-section p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

.blog-category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.blog-category-list li {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  border-radius: 12px;
  color: #111827;
}
.blog-center-box {
  max-width: 900px !important;
  width: calc(100% - 40px) !important;
  margin: 32px auto !important;
  padding: 28px !important;
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  box-sizing: border-box !important;
}

.blog-center-box h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #111827;
}

.blog-center-box p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

.blog-category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.blog-category-list li {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  border-radius: 12px;
  color: #111827;
}
.blog-content-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  box-sizing: border-box;
}

.blog-center-box {
  width: 100%;
  max-width: 900px;
  margin: 0 0 32px 0;
  padding: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-sizing: border-box;
}

.blog-center-box h2 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #111827;
}

.blog-center-box p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

.blog-category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.blog-category-list li {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 14px 16px;
  border-radius: 12px;
}
.footer-description,
.footer-contact {
  color: #6b7280;
  font-size: 14px;
  margin: 8px 0;
}

.footer-links {
  margin: 10px 0;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: #2563eb;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  text-decoration: underline;
}
.site-footer {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
  padding: 36px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-brand {
  font-size: 20px;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 10px;
}

.footer-description {
  max-width: 720px;
  margin: 0 auto 18px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 18px 0;
}

.footer-links a {
  color: #334155;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.footer-contact,
.footer-copy {
  color: #64748b;
  font-size: 14px;
  margin: 8px 0;
}

.footer-contact a {
  color: #2563eb;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .site-footer {
    padding: 30px 16px;
  }

  .footer-links {
    gap: 12px 16px;
  }

  .footer-description,
  .footer-contact,
  .footer-copy {
    font-size: 13px;
  }
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

header .logo img {
  height: 75px;
  width: auto;
  display: block;
}

/* Logo text (if you have it under logo) */
.logo-text {
  font-size: 14px;
  margin-top: 4px;
  text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
  header .logo img {
    height: 55px;
  }

  .logo-text {
    font-size: 12px;
  }
}
}
/* Landing Page Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger cards */
.card.animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.card.animate-on-scroll:nth-child(2) { transition-delay: 0.15s; }
.card.animate-on-scroll:nth-child(3) { transition-delay: 0.25s; }
.card.animate-on-scroll:nth-child(4) { transition-delay: 0.35s; }

/* Button shine effect */
.btn,
.hero-btn,
.cta .btn {
  position: relative;
  overflow: hidden;
}

.btn::after,
.hero-btn::after,
.cta .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
}

.btn:hover::after,
.hero-btn:hover::after,
.cta .btn:hover::after {
  animation: buttonShine 0.8s ease;
}

@keyframes buttonShine {
  from { left: -80%; }
  to { left: 130%; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.stats-section {
  padding: 50px 20px;
  background: #f8fafc;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-box {
  background: #fff;
  padding: 25px;
  min-width: 220px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

.stat-box h3 {
  font-size: 40px;
  color: #2563eb;
  margin-bottom: 10px;
}
.footer-logo {
  text-align: center;
  margin-bottom: 15px;
}

.footer-logo img {
  height: 42px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.linkedin-header {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #0077b5;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  text-decoration: none;
}

.linkedin-header:hover {
  transform: translateY(-2px);
  background: #005e93;
}

.linkedin-icon-header {
  width: 22px;
  height: 22px;
}
.linkedin-section,
.connect-section {
  padding: 60px 20px;
  text-align: center;
  background: #f8fafc;
}

.linkedin-section h2,
.connect-section h2 {
  margin-bottom: 15px;
}

.linkedin-section p,
.connect-section p {
  max-width: 700px;
  margin: 0 auto 25px;
  color: #64748b;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: all .3s ease;
}

.linkedin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37,99,235,.25);
}

.linkedin-icon,
.linkedin-icon-footer {
  width: 18px;
  height: 18px;
}

.footer-social {
  margin-top: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}
/* Incoterms Table */

.incoterms-table-wrapper {
    margin: 40px 0;
    overflow-x: auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
}


.incoterms-table-wrapper h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111827;
}


.incoterms-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    min-width: 700px;
}


.incoterms-table th {
    background: #0f172a;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}


.incoterms-table td {
    padding: 14px 15px;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
}


.incoterms-table tr:hover {
    background: #f8fafc;
}


.incoterms-table td:first-child {
    font-weight: bold;
    color: #2563eb;
}


/* Mobile */

@media(max-width:768px){

    .incoterms-table-wrapper {
        padding: 12px;
    }

    .incoterms-table-wrapper h3 {
        font-size:20px;
    }

    .incoterms-table {
        font-size:14px;
    }

}
.table-note{
    font-size:15px;
    color:#6b7280;
    margin-bottom:20px;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  height: 70px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .footer-logo img {
    height: 50px;
  }
}
/* Latest Articles Cards */

#latest-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}


#latest-articles-grid .article-card {

    background: #ffffff;
    border-radius: 16px;
    padding: 24px;

    border: 1px solid #e6e6e6;

    box-shadow: 0 8px 20px rgba(0,0,0,0.06);

    transition: 
        transform 0.3s ease,
        box-shadow 0.3s ease;

    position: relative;
    overflow: hidden;
}


/* hover animation */

#latest-articles-grid .article-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 18px 35px rgba(0,0,0,0.12);

}


/* title */

#latest-articles-grid .article-card h3 {

    margin-top:0;

}


#latest-articles-grid .article-card h3 a {

    color:#1a1a1a;
    text-decoration:none;

}


#latest-articles-grid .article-card h3 a:hover {

    color:#0066ff;

}


/* description */

#latest-articles-grid .article-card p {

    color:#555;
    line-height:1.6;

}


/* date */

#latest-articles-grid .article-card small {

    color:#888;

}
#latest-articles-grid .article-card::before {

content:"";
position:absolute;
top:0;
left:0;
height:4px;
width:0;
background:#0066ff;
transition:0.3s;

}


#latest-articles-grid .article-card:hover::before {

width:100%;

}
/* Landed Cost Calculator */
.lc-incoterm-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.lc-incoterm-label {
  font-weight: 700;
  color: var(--color-text);
  font-size: 0.95rem;
}
.lc-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.lc-chip {
  background: #eef4ff;
  color: var(--color-primary);
  border: 1px solid #dbe7ff;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.lc-chip:hover { background: #dbe7ff; }
.lc-chip.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.lc-note {
  flex-basis: 100%;
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-top: 4px;
}
.lc-note a { color: var(--color-primary); font-weight: 600; }

.lc-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.lc-field { display: grid; gap: 6px; }
.lc-field label {
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.lc-field small { color: var(--color-muted); font-size: 0.85rem; }
.lc-field input,
.lc-field select {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px;
  outline: none;
  background: #fff;
}
.lc-field input:focus,
.lc-field select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.14);
}
.lc-locked {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #15803d;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  border-radius: 999px;
  padding: 2px 8px;
}

.lc-total-card {
  grid-column: 1 / -1;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.lc-total-card span { display: block; color: #dbeafe; font-size: 0.95rem; }
.lc-total-card strong { display: block; margin-top: 8px; font-size: 2rem; }
.lc-total-card small { display: block; margin-top: 10px; color: #dbeafe; }

@media (max-width: 768px) {
  .lc-field-grid { grid-template-columns: 1fr; }
}
/* ==========================================================================
   Arcade / Game Pages (Port Runner, Stack It, and future games)
   Paste this block into style.css. Shared by every game page so there is
   only one copy of this CSS to maintain.
   ========================================================================== */

.game-page { padding: 30px 0 60px; }

.game-wrap {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  max-width: 520px;
  margin: 0 auto;
}

.game-wrap.game-wrap-wide { max-width: 820px; }

.game-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 800;
}

.game-topbar .score-block {
  display: flex;
  gap: 18px;
  font-variant-numeric: tabular-nums;
}

.game-topbar .score-block span small {
  display: block;
  font-weight: 700;
  color: var(--color-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.game-canvas {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid #111;
  border-radius: 10px;
  touch-action: none;
  cursor: pointer;
}

.game-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.game-hint {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.touch-controls {
  display: none;
  gap: 10px;
  width: 100%;
}

.touch-controls button {
  flex: 1;
  padding: 16px;
  border: 2px solid #111;
  border-radius: 12px;
  background: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
}

.touch-controls button:active {
  background: #111;
  color: #fff;
}

.game-page .page-card h2 { margin-top: 0; }

/* Arcade badge used on game cards inside the calculator-card grid pattern */
.calc-badge.calc-badge-game {
  background: #111;
  color: #fff;
}

/* Mobile: swap the keyboard hint for on-screen buttons, and give the
   canvas a little breathing room so it never feels cramped on a phone */
@media (max-width: 720px) {
  .touch-controls { display: flex; }
  .game-hint { display: none; }
  .game-wrap { padding: 14px; }
  .game-topbar { font-size: 0.95rem; }
}

@media (max-width: 420px) {
  .game-topbar .score-block { gap: 12px; }
}
.blog-category-list {
    list-style: none;
    padding: 0;
}

.blog-category-list li {
    margin-bottom: 10px;
}

.blog-category-list a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 500;
}

.blog-category-list a:hover {
    text-decoration: underline;
    color: #003d80;
}
.category-grid {

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
margin-top:30px;

}



.category-card {

background:#ffffff;
border:1px solid #e5e7eb;
border-radius:16px;
padding:28px;
transition:all .3s ease;

}



.category-card:hover {

transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);

}



.category-card h3 {

margin-bottom:12px;

}



.category-card h3 a {

font-size:22px;
color:#0b5ed7;
text-decoration:none;

}



.category-card p {

color:#555;
line-height:1.6;
margin-bottom:18px;

}



.category-card ul {

padding-left:20px;
margin:0;

}



.category-card li {

margin-bottom:10px;

}



.category-card li a {

color:#333;
text-decoration:none;

}



.category-card li a:hover {

color:#0b5ed7;
text-decoration:underline;

}
.category-card {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}
.category-card.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary) inset;
}
.category-view-link {
  display: inline-block;
  margin-top: 10px;
  color: #0b5ed7;
  font-weight: 700;
}