/*
 * Yarl IT Hub - Elegant Minimal Design
 * Inspired by Apple, Airbnb, and Stripe
 * Bootstrap 5 + Clean Custom Styles
 */

/* Import Bootstrap */
/* Bootstrap loaded via CDN */
/* ===========================
   Design System - CSS Variables
   =========================== */
:root {
  /* Colors - Simplified Palette */
  --color-primary: #489FD4;
  --color-primary-hover: #3a8bc2;

  /* Neutrals - High Contrast */
  --color-text-primary: #0a2540;
  --color-text-secondary: #5c7186;
  --color-text-tertiary: #8898aa;

  /* Backgrounds */
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f6f9fc;
  --color-bg-tertiary: #fafbfc;

  /* Borders & Shadows */
  --color-border: rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);

  /* Typography - 5 Tier System */
  --font-size-display: 56px;
  --font-weight-display: 600;
  --letter-spacing-display: -0.02em;
  --line-height-display: 1.1;

  --font-size-h1: 40px;
  --font-weight-h1: 600;
  --letter-spacing-h1: -0.01em;
  --line-height-h1: 1.2;

  --font-size-h2: 20px;
  --font-weight-h2: 600;
  --letter-spacing-h2: 0;
  --line-height-h2: 1.3;

  --font-size-body: 16px;
  --font-weight-body: 400;
  --line-height-body: 1.6;

  --font-size-caption: 14px;
  --font-weight-caption: 500;
  --letter-spacing-caption: 0.02em;

  /* Spacing - 8px Grid System */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* Card System */
  --card-padding: 32px;
  --card-gap: 24px;
  --card-radius: 16px;

  /* Bootstrap Overrides */
  --bs-primary: #489FD4;
  --bs-body-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===========================
   Global Resets & Base Styles
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height-body);
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--bs-body-font-family);
  color: var(--color-text-primary);
  margin: 0;
}

h1 {
  font-size: var(--font-size-display);
  font-weight: var(--font-weight-display);
  letter-spacing: var(--letter-spacing-display);
  line-height: var(--line-height-display);
}

h2 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-h1);
  letter-spacing: var(--letter-spacing-h1);
  line-height: var(--line-height-h1);
}

h3 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-h2);
  letter-spacing: var(--letter-spacing-h2);
  line-height: var(--line-height-h2);
}

p {
  margin: 0 0 var(--space-md) 0;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  opacity: 0.7;
  color: var(--color-primary-hover);
}

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

/* ===========================
   Layout & Container
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-3xl) 0;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-sm) 0;
}

.navbar-brand img {
  height: 40px;
}

.nav-link {
  color: var(--color-text-secondary);
  font-size: 15px;
  font-weight: 500;
  padding: var(--space-sm) var(--space-md);
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text-primary);
}

.dropdown-menu {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: var(--space-xs);
}

.dropdown-item {
  border-radius: 6px;
  padding: var(--space-sm);
  font-size: 15px;
  color: var(--color-text-secondary);
}

.dropdown-item:hover {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

/* Mobile dropdown fixes */
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0.5rem;
    margin-left: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    padding-left: 1rem;
    display: none;
  }

  .navbar-nav .dropdown-menu.show {
    display: block !important;
  }

  .navbar-nav .dropdown-item {
    padding-left: 1.5rem;
  }

  .navbar-nav .dropdown-toggle::after {
    float: right;
    margin-top: 0.5rem;
  }
}

/* ===========================
   Buttons
   =========================== */
.btn {
  font-weight: 500;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  color: white;
  transform: translateY(-1px);
}

.btn-outline-primary {
  border: 1px solid var(--color-border);
  color: var(--color-text-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(72, 159, 212, 0.04);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}

.btn-light {
  background: white;
  color: var(--color-text-primary);
}

.btn-light:hover {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

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

/* ===========================
   Section Utilities
   =========================== */
.section-label {
  display: inline-block;
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-caption);
  letter-spacing: var(--letter-spacing-caption);
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--space-xl) auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

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

.section-gray {
  background: var(--color-bg-secondary);
}

.section-accent {
  background: linear-gradient(180deg, var(--color-bg-secondary) 0%, var(--color-bg-primary) 100%);
}

/* ===========================
   Hero Section - Minimal & Clean
   =========================== */
.hero {
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-tertiary) 100%);
  padding: var(--space-4xl) 0 var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto var(--space-xl) auto;
  animation: fadeIn 0.8s ease-out;
}

.hero h1 {
  margin-bottom: var(--space-md);
  animation: fadeIn 1s ease-out 0.2s both;
}

.hero .lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-xl) auto;
  animation: fadeIn 1s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===========================
   Stats Section - Separated from Hero
   =========================== */
.stats-section {
  background: var(--color-bg-secondary);
  padding: var(--space-2xl) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--color-primary) 0%, #96C353 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-xs);
}

.stat-label {
  display: block;
  font-size: var(--font-size-caption);
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* ===========================
   Values Section - Minimal List Style
   =========================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  max-width: 900px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.value-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 6px;
  flex-shrink: 0;
}

.value-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.value-content p {
  font-size: var(--font-size-body);
  color: var(--color-text-secondary);
  margin: 0;
}

/* ===========================
   Card Components - Unified & Clean
   =========================== */
.card-base {
  background: var(--color-bg-primary);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-base:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border);
}

/* Initiative Cards */
.initiative-card {
  background: var(--color-bg-primary);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.initiative-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.initiative-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(72, 159, 212, 0.05) 0%, rgba(150, 195, 83, 0.05) 100%);
}

.initiative-content {
  padding: var(--card-padding);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.initiative-content h3 {
  margin-top: var(--space-sm);
}

.initiative-content p {
  flex: 1;
  color: var(--color-text-secondary);
  font-size: 15px;
}

.initiative-content a {
  align-self: flex-start;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 15px;
  padding: 0;
  border: none;
  background: none;
}

.initiative-content a:hover {
  opacity: 0.7;
}

/* Event Cards - 3 Column Layout */
.event-card {
  background: var(--color-bg-primary);
  border-radius: var(--card-radius);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border);
}

.event-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, rgba(72, 159, 212, 0.05) 0%, rgba(150, 195, 83, 0.05) 100%);
}

.event-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.event-content h3 {
  font-size: 18px;
  font-weight: 600;
}

.event-content p {
  flex: 1;
  color: var(--color-text-secondary);
  font-size: 15px;
  line-height: 1.5;
}

.event-content a {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 15px;
}

/* Badge Simplification */
.badge-custom {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: none;
  padding: 0;
  border: none;
}

.badge-success {
  color: #96C353;
}

/* ===========================
   2030 Goals Section
   =========================== */
.goals-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-3xl);
}

.goal-card {
  background: var(--color-bg-primary);
  border-radius: var(--card-radius);
  padding: 40px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  flex: 0 0 calc(33.333% - var(--space-md));
  min-width: 280px;
}

.goal-card:nth-child(4),
.goal-card:nth-child(5) {
  flex: 0 0 calc(50% - var(--space-md) / 2);
}

.goal-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.goal-number {
  display: block;
  font-size: 64px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.goal-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.goal-description {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ===========================
   Partners Section
   =========================== */
.partners-section {
  background: var(--color-bg-secondary);
  padding: var(--space-3xl) 0;
}

.partner-tier {
  margin-bottom: var(--space-3xl);
}

.partner-tier:last-child {
  margin-bottom: 0;
}

.partner-tier-title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: var(--space-lg);
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.partner-logo {
  background: var(--color-bg-primary);
  border-radius: 12px;
  padding: var(--space-xl);
  transition: all 0.25s ease;
  border: 1px solid transparent;
  width: 280px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.25s ease;
  object-fit: contain;
}

/* Special handling for smaller logos to make them visually consistent */
.partner-logo.logo-small img {
  transform: scale(1.3);
}

.partner-logo:hover {
  transform: scale(1.02);
  border-color: var(--color-border);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ===========================
   Annual Reports Section
   =========================== */
.annual-reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.annual-report-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease;
}

.annual-report-item:hover {
  transform: translateY(-4px);
}

.report-image-wrapper {
  width: 100%;
  max-width: 280px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  background: transparent;
}

.report-cover {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: var(--shadow-md);
  border-radius: 4px;
  transition: box-shadow 0.25s ease;
}

.annual-report-item:hover .report-cover {
  box-shadow: var(--shadow-lg);
}

.report-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.annual-report-item .btn {
  margin-top: auto;
}

@media (max-width: 991px) {
  .annual-reports-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-xl);
  }

  .report-image-wrapper {
    max-width: 240px;
    height: 340px;
  }
}

@media (max-width: 767px) {
  .annual-reports-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-lg);
  }

  .report-image-wrapper {
    max-width: 200px;
    height: 280px;
    margin-bottom: var(--space-md);
  }

  .report-title {
    font-size: 16px;
  }
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #3a8bc2 100%);
  padding: var(--space-4xl) 0;
  color: white;
  text-align: center;
  position: relative;
}

.cta-section h2 {
  color: white;
  margin-bottom: var(--space-md);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

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

.faq-item {
  background: var(--color-bg-primary);
  border-radius: 12px;
  margin-bottom: var(--space-md);
  border: 1px solid var(--color-border);
  transition: all 0.25s ease;
  overflow: hidden;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-primary);
  padding: var(--space-lg);
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: color 0.25s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--color-primary);
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding: 0 var(--space-lg);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
}

.faq-answer p {
  margin: 0;
}

.faq-answer a {
  color: var(--color-primary);
  font-weight: 500;
}

/* ===========================
   Footer
   =========================== */
footer {
  background: var(--color-text-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-3xl) 0 var(--space-lg) 0;
}

footer h5 {
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

footer a:hover {
  color: white;
}

footer .text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

footer ul.office-list li {
  margin-bottom: var(--space-sm);
}

footer ul.office-list strong {
  color: white;
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
  color: rgba(255, 255, 255, 0.8);
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: white;
}

.footer-bottom {
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 991px) {
  :root {
    --font-size-display: 48px;
    --font-size-h1: 32px;
    --space-3xl: 64px;
    --space-4xl: 80px;
  }

  .hero {
    padding: var(--space-2xl) 0;
  }

  section {
    padding: var(--space-2xl) 0;
  }

  .goals-grid .goal-card {
    flex: 0 0 calc(50% - var(--space-md) / 2);
  }

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

  .partner-logo {
    width: 240px;
    height: 120px;
    padding: var(--space-lg);
  }
}

@media (max-width: 767px) {
  :root {
    --font-size-display: 40px;
    --font-size-h1: 28px;
    --space-2xl: 48px;
    --space-3xl: 48px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero .lead {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  /* Center the last stat item on mobile when there are 3 items */
  .stats-grid .stat-item:nth-child(3):last-child {
    grid-column: 1 / -1;
    max-width: 200px;
    margin: 0 auto;
  }

  .stat-number {
    font-size: 36px;
  }

  .partner-logo {
    width: 100%;
    max-width: 240px;
    height: 120px;
    padding: var(--space-md);
  }

  .partner-logo.logo-small img {
    transform: scale(1.2);
  }

  .goals-grid .goal-card,
  .goals-grid .goal-card:nth-child(4),
  .goals-grid .goal-card:nth-child(5) {
    flex: 0 0 100%;
  }

  .goal-number {
    font-size: 48px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .container {
    padding: 0 var(--space-md);
  }
}

/* ===========================
   Utilities
   =========================== */
.text-center {
  text-align: center;
}

.mb-3 {
  margin-bottom: var(--space-md);
}

.mb-4 {
  margin-bottom: var(--space-lg);
}

.mb-5 {
  margin-bottom: var(--space-xl);
}

.d-flex {
  display: flex;
}

.gap-3 {
  gap: var(--space-md);
}

.justify-content-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Bootstrap Grid Fixes */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.row.g-4 {
  row-gap: 24px;
}

.col-md-6,
.col-lg-4,
.col-lg-3 {
  padding: 0 12px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
