:root {
  --primary-color: #007bff;
  --primary-dark: #0056b3;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --info-color: #17a2b8;
  --text-dark: #212529;
  --text-medium: #495057;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --font-family: 'Nunito Sans', sans-serif;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Utility Classes */
.section-spacing {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-spacing-sm {
  padding-top: 100px;
  padding-bottom: 100px;
}

.white-background {
  background-color: var(--white);
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-gradient-light {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-gradient-disclaimer {
  background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.mb-40 { margin-bottom: 60px; }
.mt-40 { margin-top: 60px; }

/* Navbar Enhancements */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

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

.nav-main {
  display: flex;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin-right: 10px;
}

.nav-content {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-toggle-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle-button svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .nav-toggle-button { display: block !important; }
  .nav-content { display: none !important; position: absolute; top: 100%; left: 0; width: 100%; background: white; padding: 20px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); flex-direction: column; }
  .nav-content.flex { display: flex !important; }
  .nav-list-responsive { flex-direction: column; width: 100%; }
  .nav-list-responsive li { width: 100%; }
  .nav-list-responsive li a { display: block; width: 100%; }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-list-responsive li a {
  position: relative;
  font-weight: 600;
  color: var(--text-medium);
  transition: color 0.3s ease;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
}

.nav-list-responsive li a:hover {
  color: var(--primary-color);
  background-color: rgba(0, 123, 255, 0.05);
}

/* Hero Section Refined */
#hero-section {
  position: relative;
  padding: 140px 0 100px 0;
  min-height: 80vh;
  display: flex;
  align-items: flex-start;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
  overflow: visible;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,123,255,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-blob-2 {
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(40,167,69,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-layout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 80px;
  justify-content: center;
}

.grid-layout.align-start {
  align-items: flex-start;
}

.image-second {
  flex: 1 1 500px;
  max-width: 100%;
  order: 2;
}

.image-responsive {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
  display: block;
}

.center-content {
  flex: 1 1 500px;
  max-width: 100%;
  order: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 20px;
  margin-bottom: 15px;
  font-size: 0.85em;
  font-weight: 600;
  color: #1976d2;
}

.headline-main {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -1px;
}

.paragraph-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 600px;
}

.button-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.cta-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,123,255,0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.cta-secondary {
  background: white;
  color: var(--text-medium);
  border: 2px solid #e0e0e0;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cta-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: #f8f9fa;
}

/* Stats in Hero */
.stats-layout {
  display: flex;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
  gap: 0;
}

.stats-layout .display-block {
  text-align: center;
  padding: 0 15px;
}

.stats-layout .display-block + .display-block {
  border-left: 1px solid #e0e0e0;
}

.small-heading {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 5px;
}

.text-primary { color: var(--primary-color); }
.text-success { color: var(--success-color); }
.text-warning { color: var(--warning-color); }
.text-danger { color: var(--danger-color); }
.text-secondary { color: var(--secondary-color); }

.subtext-secondary {
  font-size: 0.85em;
  color: var(--text-light);
}

/* Features/Stats Grid Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 45px;
  margin-bottom: 60px;
}

.stats-card {
  text-align: center;
  padding: 35px;
  border-radius: 12px;
}

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

.feature-card {
  padding: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  background: white;
}

.feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(0,123,255,0.15);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

/* Service Cards (What We Offer) */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-blue { background: linear-gradient(135deg, #007bff, #0056b3); }
.icon-red { background: linear-gradient(135deg, #dc3545, #c82333); }
.icon-green { background: linear-gradient(135deg, #28a745, #1e7e34); }
.icon-gray { background: linear-gradient(135deg, #6c757d, #545b62); }

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.5;
}

/* Gallery Section (Understanding Financial Markets) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
}

.gallery-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.gallery-content {
  padding: 15px;
  background: white;
  border-top: 3px solid transparent;
}

.border-blue { border-top-color: var(--primary-color); }
.border-green { border-top-color: var(--success-color); }
.border-red { border-top-color: var(--danger-color); }
.border-yellow { border-top-color: var(--warning-color); }

.gallery-title {
  font-size: 0.95em;
  margin-bottom: 5px;
  color: var(--text-dark);
  font-weight: 700;
}

.gallery-desc {
  font-size: 0.8em;
  color: var(--text-light);
  margin: 0;
}

/* Learning Path Grid */
.learning-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.step-card {
  text-align: center;
  padding: 20px;
}

.step-number {
  width: 60px;
  height: 60px;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 24px;
  font-weight: bold;
}

.step-blue { background: linear-gradient(135deg, #007bff, #0056b3); box-shadow: 0 4px 15px rgba(0,123,255,0.3); }
.step-green { background: linear-gradient(135deg, #28a745, #1e7e34); box-shadow: 0 4px 15px rgba(40,167,69,0.3); }
.step-yellow { background: linear-gradient(135deg, #ffc107, #d39e00); box-shadow: 0 4px 15px rgba(255,193,7,0.3); }
.step-gray { background: linear-gradient(135deg, #6c757d, #545b62); box-shadow: 0 4px 15px rgba(108,117,125,0.3); }

.step-title {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 700;
}

.step-link {
  margin-top: 10px;
  display: block;
  font-weight: 600;
  text-decoration: none;
}

/* Topics Grid */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.topic-card {
  padding: 25px;
  text-align: left;
}

.topic-header {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.topic-list {
  font-size: 0.9em;
  line-height: 1.8;
  padding-left: 20px;
  margin: 0;
}

.topic-list li a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.2s;
}

.topic-list li a:hover {
  color: var(--primary-color);
}

/* Process Section (What We Provide) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.process-card {
  padding: 25px;
  border-radius: 16px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-card:hover {
  transform: translateY(-5px);
}

.process-blue-light { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.process-green-light { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.process-orange-light { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 15px;
}

.num-blue { background: linear-gradient(135deg, #1976d2, #1565c0); }
.num-green { background: linear-gradient(135deg, #388e3c, #2e7d32); }
.num-orange { background: linear-gradient(135deg, #f57c00, #ef6c00); }

/* Card Styles */
.card-hover {
  background: white;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-color: rgba(0,123,255,0.2);
}

/* CTA Bottom Section */
.cta-bottom-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.cta-bottom-container {
  max-width: 700px;
  margin: 0 auto;
}

.btn-white {
  background: white;
  color: #007bff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  border: 2px solid white;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
}

/* Footer Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  text-align: left;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 16px;
}

.footer-heading {
  font-size: 1em;
  margin-bottom: 15px;
  color: #333;
  font-weight: 700;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  padding-bottom: 8px;
  display: inline-block;
}

.border-bottom-blue { border-bottom-color: var(--primary-color); }
.border-bottom-green { border-bottom-color: var(--success-color); }
.border-bottom-red { border-bottom-color: var(--danger-color); }

.footer-list {
  line-height: 2;
  font-size: 0.9em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li a {
  color: #555;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-list li a:hover {
  padding-left: 5px;
}

.hover-text-blue:hover { color: var(--primary-color) !important; }
.hover-text-green:hover { color: var(--success-color) !important; }
.hover-text-red:hover { color: var(--danger-color) !important; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9em;
  color: var(--text-light);
}

.footer-contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .headline-main {
    font-size: 2.5rem;
  }
  
  #hero-section {
    padding-top: 140px;
    padding-bottom: 100px;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
  }
  
  .grid-layout {
    flex-direction: column-reverse; 
    gap: 50px;
  }
  
  .center-content {
    order: 1 !important;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  
  .image-second {
    order: 2 !important;
  }
  
  .paragraph-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .button-row {
    justify-content: center;
  }
  
  .stats-layout {
    justify-content: center;
    margin-top: 40px;
    border-top: none;
    gap: 30px;
  }
  
  .stats-layout .display-block {
    border-left: none !important;
  }
  
  .learning-path-grid,
  .topics-grid,
  .features-grid,
  .service-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-spacing {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 30px 20px;
  }
  
  .footer-heading {
    display: block;
    width: 100%;
    border-bottom: none;
    margin-bottom: 10px;
    background: rgba(0,0,0,0.03);
    padding: 10px;
    border-radius: 8px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .headline-main {
    font-size: 2rem;
  }
  
  .stats-layout {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  
  .learning-path-grid,
  .topics-grid,
  .features-grid,
  .stats-grid,
  .service-grid,
  .gallery-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .button-row {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Typography & Text Styles */
.headline-text-style {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  line-height: 1.2;
}

.description-text-style-lg {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-medium);
}

.text-small {
  font-size: 0.875rem;
}

.text-medium {
  color: var(--text-medium);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.text-decoration-none {
  text-decoration: none;
}

.fw-bold {
  font-weight: 700;
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Margin Bottom Utilities */
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-0 { margin-top: 0; }

/* New Footer Styles */
.footer-section {
  background: #212529;
  color: #f8f9fa;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-col {
  grid-column: span 1;
}

.footer-links-col {
  min-width: 120px;
}

.footer-brand-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
}

.footer-text {
  color: #adb5bd;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-disclaimer {
  font-size: 0.9em;
  color: #6c757d;
  border-top: 1px solid #343a40;
  padding-top: 15px;
  margin-bottom: 0;
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
  border-bottom: none;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
}

.footer-list li a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-list li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid #343a40;
  padding-top: 30px;
  text-align: center;
  color: #6c757d;
  font-size: 0.9em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address {
  color: #6c757d;
  margin: 0;
}

/* Step Badge */
.step-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 700;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hover-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand-col {
    grid-column: span 1;
  }
  
  .headline-text-style {
    font-size: 2rem;
  }
 }

 /* Additional Utility Classes */
.text-dark {
  color: var(--text-dark);
}

.alert-notice {
  margin-top: 40px;
  padding: 20px;
  background: #fff3cd;
  border-radius: 8px;
  border-left: 4px solid #ffc107;
}

.alert-notice p {
  font-size: 0.95em;
  color: #856404;
  margin: 0;
  display: flex;
  align-items: center;
}

.alert-notice svg {
  margin-right: 10px;
  flex-shrink: 0;
}

.card-content {
  padding: 15px;
  background: white;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

a.card-hover {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.card-hover:hover {
  color: inherit;
}

.link-primary {
  color: var(--primary-color);
}

.link-primary:hover {
  color: var(--primary-dark);
}
