/* ==========================================
   BK Home Photos Help Center Styles
   Extends main styles.css
   ========================================== */

/* ==========================================
   Hero Section
   ========================================== */
.help-hero {
  position: relative;
  background: url('../images/slider-1.jpg') center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.help-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.5));
}

.help-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 700px;
}

.help-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* ==========================================
   Search
   ========================================== */
.help-search-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.help-search-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.help-search-icon {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #999;
  pointer-events: none;
  z-index: 1;
}

.help-search-input {
  flex: 1;
  padding: 1rem 1.25rem 1rem 3.5rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  border: none;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
}

.help-search-input::-webkit-search-decoration,
.help-search-input::-webkit-search-cancel-button,
.help-search-input::-webkit-search-results-button,
.help-search-input::-webkit-search-results-decoration {
  display: none;
}

.help-search-input::placeholder {
  color: #999;
}

.help-search-btn {
  background: var(--color-primary);
  border: none;
  padding: 0 1.5rem;
  margin: 6px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.help-search-btn:hover {
  background: var(--color-primary-dark);
}

.help-search-btn svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

/* Search Dropdown */
.help-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 50;
  display: none;
}

.help-search-dropdown.active {
  display: block;
}

.help-search-result {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: var(--font-ui);
}

.help-search-result:hover {
  background: #f5f5f5;
}

.help-search-result svg {
  width: 18px;
  height: 18px;
  color: #888;
  flex-shrink: 0;
}

.help-result-title {
  flex: 1;
  font-size: 0.95rem;
  color: #000;
}

.help-result-category {
  font-size: 0.8rem;
  color: #888;
}

/* Popular Searches */
.help-popular-searches {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.help-popular-searches button {
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s ease;
  backdrop-filter: blur(4px);
}

.help-popular-searches button:hover {
  background: rgba(255,255,255,0.35);
}

/* ==========================================
   Main Content
   ========================================== */
.help-main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
  width: 100%;
}

/* Browse by Topic */
.help-browse-section {
  margin-bottom: 2rem;
}

.help-browse-section h2,
.help-popular-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: #000;
}

.help-topic-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px 8px;
  padding: 0 24px;
}

.help-topic-pill {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #666;
  padding: 8px 16px;
  background: transparent;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.help-topic-pill:hover {
  color: #000;
  background-color: #f0f0f0;
}

.help-topic-pill.active {
  background: #000;
  color: #fff;
}

.help-topic-icon {
  display: none;
}

/* Category Cards */
.help-category-section {
  margin-bottom: 3rem;
}

.help-category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1rem;
}

.help-category-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.help-category-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.help-category-card-icon {
  width: 48px;
  height: 48px;
  background: #f5f5f5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.help-category-card-content {
  flex: 1;
  min-width: 0;
}

.help-category-card-content h3 {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #000;
}

.help-category-card-content p {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.help-category-card-arrow {
  font-size: 1.25rem;
  color: #888;
  transition: transform 0.3s ease;
}

.help-category-card:hover .help-category-card-arrow {
  transform: translateX(4px);
  color: var(--color-primary);
}

/* Search Results Header */
.help-search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  background: #f5f5f5;
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: #555;
}

.help-search-results-header strong {
  color: #000;
  font-weight: 600;
}

#searchResultsClear {
  background: none;
  border: none;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: #888;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

#searchResultsClear:hover {
  color: #000;
  background: #e8e8e8;
}

/* Articles Section */
.help-articles-section {
  margin-bottom: 3rem;
}

.help-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.help-read-more {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* Popular Questions */
.help-popular-section {
  margin-bottom: 3rem;
}

.help-questions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}

.help-question-card {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.help-question-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.help-question-category {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  background: rgba(233, 147, 97, 0.1);
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.help-question-card h3 {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #000;
}

.help-question-card p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.help-question-card .help-read-more {
  display: inline-block;
}

/* CTA Section */
.help-cta-section {
  margin-bottom: 2rem;
}

.help-cta-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.help-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #000;
}

.help-cta-card p {
  font-family: var(--font-ui);
  color: #666;
  margin-bottom: 1.5rem;
}

.help-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================
   Modal
   ========================================== */
.help-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
}

.help-modal-overlay.active {
  display: flex;
}

.help-modal-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideUp 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 12px 24px rgba(0,0,0,0.08), 0 24px 48px rgba(0,0,0,0.06);
}

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

.help-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.4;
}

.help-modal-close svg {
  width: 16px;
  height: 16px;
  color: #000;
}

.help-modal-close:hover {
  opacity: 1;
  background: #f5f5f5;
}

.help-modal-category {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 0.75rem;
}

.help-modal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  color: #000;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  max-width: calc(100% - 3rem);
}

.help-modal-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ccc;
}

.help-modal-body {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

.help-modal-body a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(233, 147, 97, 0.3);
  transition: border-color 0.2s ease;
}

.help-modal-body a:hover {
  border-bottom-color: var(--color-primary);
}

.help-modal-body p {
  margin: 0 0 1.25rem 0;
}

.help-modal-body p + ul,
.help-modal-body p + ol {
  margin-top: -0.25rem;
}

.help-modal-body p:last-child {
  margin-bottom: 0;
}

.help-modal-body ul,
.help-modal-body ol {
  margin: 0.75rem 0 1rem 0;
  padding-left: 1.25rem;
}

.help-modal-body ul {
  list-style: disc;
}

.help-modal-body ol {
  list-style: decimal;
  padding-left: 1.5rem;
}

.help-modal-body ul:last-child {
  margin-bottom: 0;
}

.help-modal-body li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.help-modal-body ol li {
  padding-left: 0.5rem;
}

/* ==========================================
   Chat Widget
   ========================================== */
.help-chat-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 150;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.help-chat-toggle:hover {
  transform: scale(1.05);
  background: var(--color-primary-dark);
}

.help-chat-toggle svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.help-chat-window {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 500px;
  max-height: calc(100vh - 4rem);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  z-index: 150;
  animation: chatSlideUp 0.3s ease;
  overflow: hidden;
}

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

.help-chat-header {
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.help-chat-header-info {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  position: relative;
}

.help-chat-header-info::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 3px;
  height: 30px;
  background: #555;
  border-radius: 999px;
}

.help-chat-header-info h4 {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  margin: 0 0 0.125rem 0;
}

.help-chat-header-info span {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  color: #888;
}

.help-chat-header-info .status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 4px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.help-chat-close {
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  margin: -4px -6px -4px 0;
  position: relative;
}

.help-chat-close::before {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s ease;
}

.help-chat-close:hover::before {
  background: #f0f0f0;
}

.help-chat-close svg {
  width: 16px;
  height: 16px;
  color: #999;
  position: relative;
  z-index: 1;
}

.help-chat-close:hover::before {
  background: #f0f0f0;
}

.help-chat-close:hover svg {
  color: #666;
}

.help-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f9f9f9;
}

.help-chat-message {
  display: flex;
  gap: 0.75rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.help-chat-message.user {
  justify-content: flex-end;
}

.help-chat-message.user .help-message-content {
  background: #333;
  color: #ffffff;
  border-radius: 12px 12px 0 12px;
}

.help-chat-message.bot .help-message-content {
  background: #ffffff;
  border-radius: 12px 12px 12px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.help-message-content {
  max-width: 85%;
  padding: 0.875rem 1rem;
}

.help-message-content p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.help-message-content p + p {
  margin-top: 0.75rem;
}

.help-message-content ul,
.help-message-content ol {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  line-height: 1.5;
}

.help-message-content ul {
  list-style: disc;
}

.help-message-content ol {
  list-style: decimal;
}

.help-message-content li {
  margin-bottom: 0.25rem;
}

.help-message-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.help-thinking-dots {
  display: flex;
  gap: 3px;
  padding: 0.125rem 0;
}

.help-thinking-dots span {
  width: 6px;
  height: 6px;
  background: #888;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.help-thinking-dots span:nth-child(1) { animation-delay: -0.32s; }
.help-thinking-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1); opacity: 1; }
}

.help-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.help-quick-actions button {
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid var(--color-primary);
  border-radius: 9999px;
  color: var(--color-primary);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.help-quick-actions button:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.help-chat-suggestions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.help-chat-suggestion {
  padding: 0.5rem 0.75rem;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: left;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
}

.help-chat-suggestion:hover {
  background: #eee;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.help-chat-input-form {
  display: flex;
  padding: 1rem;
  gap: 0.75rem;
  background: #ffffff;
  border-top: 1px solid #eee;
  align-items: flex-end;
}

.help-chat-input-form textarea {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #eee;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
  overflow-y: hidden;
  line-height: 1.4;
  max-height: 120px;
  min-height: 40px;
}

.help-chat-input-form textarea:focus {
  border-color: var(--color-primary);
}

.help-chat-input-form button {
  width: 40px;
  height: 40px;
  border: none;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.help-chat-input-form button:hover {
  background: var(--color-primary-dark);
}

.help-chat-input-form button svg {
  width: 18px;
  height: 18px;
  color: #ffffff;
  position: relative;
  top: 1px;
  left: -1px;
}

/* View All Articles */
.help-view-all {
  padding: 0;
  margin-left: 1.25rem;
  margin-top: -1rem;
}

.help-view-all a {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.help-view-all a:hover {
  opacity: 0.7;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
  .help-hero {
    min-height: 250px;
    padding: 2rem 1rem;
  }
  
  .help-hero h1 {
    font-size: 2.125rem;
  }
  
  .help-search-wrapper {
    flex-direction: row;
    border-radius: 50px;
  }
  
  .help-search-icon {
    left: 1rem;
  }
  
  .help-search-input {
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    font-size: 0.9rem;
  }
  
  .help-search-btn {
    padding: 0 1.25rem;
    margin: 5px;
  }
  
  .help-popular-searches {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .help-popular-searches > span {
    margin-bottom: 0.25rem;
  }
  
  .help-main {
    padding: 1.5rem 1rem 2rem;
  }
  
  .help-browse-section {
    margin-bottom: 1rem;
  }
  
  .help-browse-section h2,
  .help-popular-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .help-popular-section {
    margin-bottom: 2rem;
  }
  
  .help-topic-pills {
    justify-content: center;
    gap: 4px 6px;
    padding: 0 16px;
  }
  
  .help-topic-pill {
    font-size: 13.5px;
    padding: 7px 12px;
  }
  
  .help-category-cards {
    grid-template-columns: 1fr 1fr;
  }
  
  .help-questions-grid {
    grid-template-columns: 1fr;
  }
  
  .help-cta-card {
    padding: 1.5rem;
  }
  
  .help-cta-buttons {
    flex-direction: column;
  }
  
  .help-cta-buttons a {
    width: 100%;
    text-align: center;
  }
  
  .help-chat-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    max-width: 100vw;
    border-radius: 0;
    z-index: 9999;
    overflow: hidden;
  }
  
  .help-chat-window::before {
    content: '';
    position: fixed;
    inset: 0;
    background: #f9f9f9;
    z-index: -1;
    pointer-events: none;
  }
  
  .help-chat-messages {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  
  .help-chat-header,
  .help-chat-input-form {
    flex-shrink: 0;
  }
  
  .help-modal-overlay {
    z-index: 9999;
    padding: 2rem 1rem;
    overflow-y: auto;
  }
  
  .help-modal-content {
    margin: auto;
    max-height: none;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .help-category-card {
    padding: 1rem;
  }
  
  .help-category-card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .help-question-card {
    padding: 1.25rem;
  }
}