
  .hd-cases-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: Arial, Helvetica, sans-serif;
    color: #1e293b;
  }
  .hd-cases-header {
    text-align: center;
    margin-bottom: 45px;
  }
  .hd-cases-header h1 {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
  }
  .hd-cases-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
  }
  .hd-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 992px) {
    .hd-cases-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 600px) {
    .hd-cases-grid {
      grid-template-columns: 1fr;
    }
  }
  .hd-case-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .hd-case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  }
  .hd-case-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
  }
  .hd-client-info {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
  }
  .hd-country-badge {
    background-color: #f1f5f9;
    color: #334155;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
  }
  .hd-project-tag {
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }
  .hd-case-quote {
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    margin: 0;
  }
  .hd-cta-banner {
    margin-top: 50px;
    background-color: #0f172a;
    color: #ffffff;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
  }
  .hd-cta-banner h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .hd-cta-banner p {
    font-size: 15px;
    color: #94a3b8;
    margin-bottom: 20px;
  }
  .hd-cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  .hd-cta-button:hover {
    background-color: #1d4ed8;
  }
