:root {
    --primary-color: #008184;
    --secondary-color: #00838f;
    --accent-color: #f57c00;
    --bg-light: #f9f9f9;
    --text-color: #333;
    --font-family: 'Roboto', sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--text-color);
    background-color: #fff;
    margin: 0;
    padding: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

html {
  height: 100%;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

h1 {
    color: var(--primary-color);
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 1rem;    
}

h2 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-top: 2rem;
}

h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h4 {
    color: #777;
    font-size: 0.9rem;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 16px;
    font-weight: 400;
}

ul {
    padding-left: 1.2rem;
    margin-bottom: 0.6875rem;
    margin-top: 0.6875rem;
    list-style: disc;
}

li {
    margin-top: 0.3125rem;
    margin-bottom: 0.3125rem;
    padding-left:  0.25rem;
}

strong {
    color: var(--text-color);
    font-weight: 700;
}

.content {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

em {
    color: var(--primary-color);
}

a {
    color: var(--primary-color) !important;
    text-decoration: none;
}

a strong {
    color: var(--primary-color) !important;
    text-decoration: none;
}

#codc-genesys-faq-ul {
  list-style-type: none;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

#codc-genesys-faq-ul a {
  display: block;
  white-space: normal;
  overflow: visible;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

#codc-genesys-faq-ul li {
  margin-bottom: 10px;
  background: rgba(255,255,255,0.7);
  padding: 1.1rem 2.6rem;
  margin-bottom: 1.5rem;
  border-radius: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #273141;
  white-space: normal;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  transition: transform .14s ease, box-shadow .14s ease;
  cursor: pointer;
}

#codc-genesys-faq-ul li:hover {
    transform:translateY(-4px);
    box-shadow:0 10px 28px rgba(0,0,0,.22);
}

.kb-content {
    padding: 1.5rem;
}

.hide-category {
    display: none;
}

/* ---------- category buttons ---------- */
.categories{
    display:flex;
    flex-wrap:wrap;
    gap:1.4rem 1.4rem;            
    justify-content:center;
    margin-top:3.5rem;
}

.category-pill{
    background:rgba(255,255,255,0.7);
    padding:1.1rem 2.6rem;
    border-radius:40px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    
    
    white-space:nowrap;
    box-shadow:0 6px 20px rgba(0,0,0,.15);
    transition:transform .14s ease, box-shadow .14s ease;
    cursor:pointer;     
}

.category-pill:hover,
.category-pill:focus-visible{
    transform:translateY(-4px);
    box-shadow:0 10px 28px rgba(0,0,0,.22);
}

.category-pill span{
    font-size:1.125rem;
    line-height:1.35;
    
}

/* ---------- mobile tweaks ---------- */
@media (max-width:480px){
    .categories{gap:1rem}
    .category-pill{padding:.9rem 1.6rem}
}