/* ==========================================================
   DateTimeToolkit Global Styles
   Clean Version 4
   Last Updated: June 28, 2026

   IMPORTANT:
   Whenever this file changes:
   1. Increase the CSS version number in each HTML file.
   2. Example:
      <link rel="stylesheet" href="styles.css?v=12">
========================================================== */


/* ==========================================
   Reset & Base
========================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #222;
  background: #f7f9fc;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

a {
  color: inherit;
}


/* ==========================================
   Header
========================================== */

.site-header {
  background: #0f4c81;
  color: #ffffff;
  padding: 16px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
}

.logo img {
  width: 56px;
  height: 56px;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 600;
}

.main-nav a:hover {
  opacity: 0.8;
}


/* ==========================================
   Hero Section
========================================== */

.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}


/* ==========================================
   Buttons
========================================== */

.button,
.calculator-card button,
.tool-box button,
.tool-card button {
  display: inline-block;
  background: #0f4c81;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.button {
  padding: 14px 24px;
}

.calculator-card button,
.tool-box button,
.tool-card button {
  margin-top: 18px;
}

.button:hover,
.calculator-card button:hover,
.tool-box button:hover,
.tool-card button:hover {
  background: #0b3a62;
}


/* ==========================================
   Homepage Tool Sections
========================================== */

.tools-section {
  padding: 50px 0;
}

.tools-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
  color: #555;
  font-size: 1.05rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.tool-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
}

.tool-card h3 {
  margin-bottom: 10px;
  color: #0f4c81;
}

.tool-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}


/* ==========================================
   Version 5 Homepage Dashboard
========================================== */

.dashboard-section {
  padding: 3rem 0;
  background: #f5f9fd;
}

.dashboard-section:nth-of-type(even) {
  background: #ffffff;
}

.dashboard-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.dashboard-section > .container > p {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}

.stats-grid,
.dashboard-grid {
  display: grid;
  gap: 1.5rem;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.dashboard-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.stat-card,
.dashboard-card {
  background: #ffffff;
  border: 1px solid #d8e6f3;
  border-top: 5px solid #0f6fbf;
  border-radius: 16px;
  padding: 1.4rem;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.08);
}

.stat-card {
  text-align: center;
}

.stat-icon,
.category-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.dashboard-card h3 {
  margin-top: 0.25rem;
}

.dashboard-card ul,
.dashboard-card ol {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.dashboard-card li {
  margin-bottom: 0.55rem;
  line-height: 1.4;
}

.dashboard-card li a {
  color: #0f4c81;
  font-weight: 600;
  text-decoration: none;
}

.dashboard-card li a:hover {
  text-decoration: underline;
}

.card-count {
  font-size: 0.95rem;
  color: #5f6f82;
  margin-bottom: 0.75rem;
}

.search-box {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.search-box input {
  width: 100%;
  max-width: 520px;
  padding: 0.9rem 1rem;
  border: 1px solid #b8d2ea;
  border-radius: 999px;
  font-size: 1rem;
}

.feature-card {
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  border: 1px solid #c9e2f6;
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 8px 20px rgba(15, 76, 129, 0.08);
}


/* ==========================================
   Tool Page Layout (Version 4)
========================================== */

.tool-page {
  padding: 25px 0;
}

.tool-hero {
  text-align: center;
  padding: 35px 20px 15px;
}

.tool-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.tool-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.tool-section {
  padding: 15px 0 20px;
}

.compact-tool-hero {
  padding: 20px 20px 10px !important;
}

.compact-tool-section {
  padding: 10px 0 10px !important;
}

.compact-tool-section .calculator-card {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.compact-tool-section + .content-section {
  padding-top: 10px !important;
}

.calculator-card {
  max-width: 650px;
  margin: 0 auto;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #d8e6f3;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(15, 76, 129, 0.08);
}


/* ==========================================
   Calculator Inputs (Version 4 Standard)
========================================== */

.input-group {
  display: grid;
  grid-template-columns: 220px 220px;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.input-group label {
  font-weight: 600;
  color: #0f4c81;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 220px;
  padding: 10px 12px;
  border: 1px solid #b8d2ea;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

.input-small {
  width: 80px !important;
}


/* ==========================================
   Legacy Form Support
   Keeps older calculator pages working
========================================== */

.tool-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  max-width: 700px;
  margin: auto;
}

.tool-box h2 {
  margin-bottom: 20px;
  color: #0f4c81;
}

.tool-box label,
.tool-card label {
  display: block;
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: bold;
}

.tool-box input,
.tool-box select,
.tool-card input,
.tool-card select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccd6e0;
  border-radius: 6px;
  font-size: 1rem;
}

.helper-text {
  font-size: 0.9rem;
  color: #666;
  margin-top: 5px;
  margin-bottom: 15px;
}


/* ==========================================
   Result Boxes
========================================== */

.results-box,
.result-box {
  display: none;
  margin-top: 20px;
  padding: 20px;
  background: #f1f7ff;
  border-left: 5px solid #0f4c81;
  border-radius: 6px;
}

.results-box h3,
.result-box h3 {
  margin-bottom: 10px;
  color: #0f4c81;
}


/* ==========================================
   Report Tables
========================================== */

.report-container {
  margin-top: 30px;
  overflow-x: auto;
}

.report-container table {
  width: 100%;
  border-collapse: collapse;
}

.report-container th,
.report-container td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.report-container th {
  background: #f4f4f4;
}


/* ==========================================
   Priority Input Table
========================================== */

.priority-table-wrap {
  overflow-x: auto;
  margin-bottom: 20px;
}

.priority-input-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.priority-input-table th,
.priority-input-table td {
  padding: 12px;
  text-align: left;
}

.priority-input-table input {
  width: 100%;
  box-sizing: border-box;
}


/* ==========================================
   Content Sections
========================================== */

.content-section {
  padding: 40px 0;
}

.content-section h2 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #0f4c81;
}

.content-section p {
  margin-bottom: 15px;
}


/* ==========================================
   Adsense Placeholders
   Hidden until ads are ready
========================================== */

.ad-placeholder,
.ad-placeholder .container {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}


/* ==========================================
   DateTimeToolkit Footer (Version 4)
========================================== */

.site-footer {
  background: #0f4c81;
  color: #ffffff;
  padding: 16px 0;
  margin-top: 50px;
}

.footer-inner {
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-logo img,
.site-footer .footer-logo img {
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;
  object-fit: contain;
}

.footer-brand p {
  margin: 4px 0 10px;
  color: #d6e7f7;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}

.footer-links a,
.footer-nav a,
.site-footer a {
  color: #bcdcff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-nav a:hover,
.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  color: #d6e7f7;
  font-size: 0.9rem;
}


/* ==========================================
   Mobile Responsive
========================================== */

@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  .main-nav a {
    margin: 0 10px;
  }

  .hero h1,
  .tool-hero h1 {
    font-size: 2rem;
  }

  .input-group {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .input-group input,
  .input-group select,
  .input-group textarea {
    width: 100%;
  }

  .input-small {
    width: 100% !important;
  }

  .footer-links {
    gap: 10px;
  }

}

/* ================================
   Version 5 Toolkit Page Standard
   ================================ */

.toolkit-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 20px 70px;
}

.toolkit-hero {
  text-align: center;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
  border: 1px solid #dbe8ff;
  border-radius: 24px;
  padding: 56px 28px;
  margin-bottom: 32px;
  box-shadow: 0 10px 28px rgba(20, 60, 120, 0.08);
}

.toolkit-badge {
  display: inline-block;
  background: #e4efff;
  color: #1d4f91;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.toolkit-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 16px;
  color: #102a43;
}

.toolkit-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #425466;
}

.toolkit-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 32px 0;
}

.toolkit-stat-card,
.toolkit-section,
.toolkit-faq,
.toolkit-related {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.toolkit-stat-card {
  text-align: center;
}

.toolkit-stat-card h3 {
  margin: 0 0 10px;
  color: #315f9f;
  font-size: 1rem;
}

.toolkit-stat-card p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #102a43;
}

.toolkit-section,
.toolkit-faq,
.toolkit-related {
  margin: 28px 0;
}

.toolkit-section h2,
.toolkit-faq h2,
.toolkit-related h2 {
  text-align: center;
  margin-top: 0;
  color: #102a43;
}

.toolkit-intro {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
  color: #52616b;
  line-height: 1.6;
}

.workflow-roadmap {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 24px auto 0;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8fbff;
  border: 1px solid #dbe8ff;
  border-radius: 16px;
  padding: 14px 18px;
  font-weight: 700;
  color: #243b53;
}

.workflow-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f6fed;
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.toolkit-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  background: #f8fbff;
  border: 1px solid #dbe8ff;
  border-radius: 18px;
  padding: 22px;
  text-decoration: none;
  color: #243b53;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.toolkit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(20, 60, 120, 0.12);
}

.toolkit-card h3 {
  margin-top: 0;
  color: #102a43;
}

.toolkit-card p {
  line-height: 1.55;
  color: #52616b;
}

.toolkit-card span {
  font-weight: 800;
  color: #2f6fed;
}

.toolkit-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.toolkit-info-box {
  background: #f8fbff;
  border: 1px solid #dbe8ff;
  border-radius: 18px;
  padding: 22px;
}

.toolkit-info-box h2 {
  text-align: left;
}

.toolkit-faq-item {
  border-top: 1px solid #e2e8f0;
  padding: 18px 0;
}

.toolkit-faq-item:first-of-type {
  border-top: none;
}

.toolkit-faq-item h3 {
  margin: 0 0 8px;
  color: #102a43;
}

.toolkit-faq-item p {
  margin: 0;
  color: #52616b;
  line-height: 1.6;
}

.toolkit-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.toolkit-related-grid a {
  background: #f8fbff;
  border: 1px solid #dbe8ff;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  text-decoration: none;
  color: #1d4f91;
  font-weight: 800;
}

@media (max-width: 900px) {
  .toolkit-stats,
  .toolkit-grid,
  .toolkit-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .toolkit-info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .toolkit-page {
    padding: 24px 14px 50px;
  }

  .toolkit-hero {
    padding: 40px 20px;
  }

  .toolkit-stats,
  .toolkit-grid,
  .toolkit-related-grid {
    grid-template-columns: 1fr;
  }
}



/* Mini Homepage Toolkit Upgrades */

.toolkit-hero {
  margin: 40px 0 35px;
}

.toolkit-stats {
  margin: 35px 0 50px;
}

.toolkit-stat-card {
  min-height: 170px;
}

.toolkit-stat-card .stat-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.toolkit-stat-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.toolkit-stat-card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #52616b;
}

.toolkit-section {
  margin: 55px 0;
}

.toolkit-section h2 {
  margin-bottom: 10px;
}

.workflow-roadmap {
  gap: 18px;
}

.workflow-step {
  text-decoration: none;
  padding: 18px 22px;
}

.workflow-step:hover {
  transform: translateY(-2px);
  box-shadow: 0
}


/* Toolkit Hub Hero Upgrade */

.toolkit-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
  margin: 40px 0 60px;
  padding: 70px 25px;
  background: linear-gradient(135deg, #eef7ff, #ffffff);
  border: 1px solid #d5e8fb;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.12);
  text-align: center;
}

.toolkit-hero-icon {
  font-size: 3.4rem;
  margin-bottom: 12px;
}

.toolkit-hero h1 {
  font-size: 3.4rem;
  margin: 18px 0;
  color: #12395d;
}

.toolkit-tagline {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f4c81;
  margin-bottom: 25px;
}

.toolkit-hero-text {
  max-width: 760px;
  margin: 0 auto 26px;
  font-size: 1.12rem;
  color: #425466;
  line-height: 1.7;
}

.toolkit-hero-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0;
}

.toolkit-hero-benefits span {
  background: #ffffff;
  border: 1px solid #cfe3f8;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  color: #243b53;
  box-shadow: 0 4px 12px rgba(15, 76, 129, 0.06);
}

.toolkit-hero-button {
  display: inline-block;
  padding: 22px 48px;
  background: #0f4c81;
  color: white !important;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 76, 129, 0.18);
  transition: 0.25s;
}

.toolkit-hero-button:hover {
  transform: translateY(-4px);
  background: #0b3559;
}

.toolkit-hero-note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #52616b;
}

.scroll-indicator {
  margin-top: 32px;
  font-size: 1rem;
  color: #6c7a89;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}
/* ===== Toolkit Hub CTA ===== */

.start-label{
    color:#0f4c81;
    font-weight:800;
    letter-spacing:2px;
    font-size:.9rem;
    text-transform:uppercase;
    margin-bottom:8px;
}

.start-title{
    font-size:2rem;
    margin:0 0 18px;
    color:#12395d;
}

.start-description{
    max-width:620px;
    margin:0 auto 28px;
    line-height:1.7;
    color:#52616b;
}

.toolkit-hero-button{
    display:inline-block;
    background:#0f4c81;
    color:#fff !important;
    text-decoration:none;
    font-size:1.35rem;
    font-weight:800;
    padding:18px 42px;
    border-radius:16px;
    box-shadow:0 8px 20px rgba(15,76,129,.18);
    transition:.25s;
}

.toolkit-hero-button:hover{
    background:#0b3a62;
    transform:translateY(-3px);
}

.toolkit-button-subtitle{
    margin-top:18px;
    font-size:.95rem;
    color:#6b7280;
}


/* Toolkit Hero Information Cards */

.toolkit-hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 42px auto;
  max-width: 980px;
}

.toolkit-hero-card {
  background: #ffffff;
  border: 1px solid #d7e8fa;
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.10);
  border-bottom: 5px solid #0f6fbf;
}

.hero-card-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #eaf4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.toolkit-hero-card h3 {
  color: #0f4c81;
  font-size: 1.45rem;
  margin-bottom: 6px;
}

.toolkit-hero-card p {
  margin: 0 0 8px;
  color: #102a43;
}

.toolkit-hero-card span {
  display: block;
  color: #52616b;
  font-size: 0.95rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .toolkit-hero-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .toolkit-hero-cards {
    grid-template-columns: 1fr;
  }
}

/* Toolkit Hub Start Panel */

.toolkit-start-panel {
  max-width: 980px;
  margin: 48px auto 0;
  padding: 34px;
  background: #ffffff;
  border: 2px solid #cfe3f8;
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(15, 76, 129, 0.14);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: center;
  text-align: left;
}

.start-panel-left h2 {
  font-size: 2rem;
  color: #12395d;
  margin: 8px 0 14px;
}

.start-panel-left p {
  color: #52616b;
  line-height: 1.7;
}

.start-panel-right {
  text-align: center;
}

.start-panel-right .toolkit-hero-button {
  width: 100%;
  max-width: 320px;
}

@media (max-width: 800px) {
  .toolkit-start-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .start-panel-right .toolkit-hero-button {
    width: auto;
  }
}

/* Toolkit Hub Journey Roadmap */

.journey-roadmap {
  max-width: 850px;
  margin: 36px auto 0;
  display: grid;
  gap: 18px;
  position: relative;
}

.journey-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d7e8fa;
  border-left: 6px solid #0f6fbf;
  border-radius: 20px;
  padding: 22px;
  text-decoration: none;
  color: #243b53;
  box-shadow: 0 10px 24px rgba(15, 76, 129, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.journey-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 76, 129, 0.14);
}

.journey-number {
  width: 52px;
  height: 52px;
  background: #0f4c81;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
}

.journey-step h3 {
  margin: 0 0 6px;
  color: #102a43;
  font-size: 1.2rem;
}

.journey-step p {
  margin: 0;
  color: #52616b;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .journey-step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .journey-number {
    margin: 0 auto;
  }
}

/* Toolkit Hub Tool Collections */

.collection-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.collection-heading h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  color: #12395d;
}

.collection-heading p {
  color: #52616b;
  line-height: 1.7;
  font-size: 1.05rem;
}

.toolkit-card {
  min-height: 230px;
  padding: 28px 24px;
}

.toolkit-card h3 {
  font-size: 1.22rem;
  margin-bottom: 14px;
}

.toolkit-card p {
  margin-bottom: 22px;
}

.toolkit-card span {
  display: inline-block;
  margin-top: auto;
  background: #0f4c81;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.toolkit-card:hover span {
  background: #0b3a62;
}

/* Learning Center */

.learning-center{

margin:70px 0;

}

.learning-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:28px;

margin-top:40px;

}

.learning-card{

background:white;

border-radius:20px;

padding:30px;

text-decoration:none;

color:#243b53;

box-shadow:0 10px 26px rgba(15,76,129,.10);

border-top:5px solid #0f6fbf;

transition:.25s;

}

.learning-card:hover{

transform:translateY(-5px);

box-shadow:0 16px 34px rgba(15,76,129,.18);

}

.learning-card h3{

margin:18px 0 12px;

color:#12395d;

}

.learning-card p{

line-height:1.7;

margin-bottom:20px;

color:#52616b;

}

.learning-card span{

display:inline-block;

padding:8px 18px;

border-radius:999px;

background:#eef7ff;

color:#0f4c81;

font-weight:700;

}

