:root {
    --shadow-standard: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --font-heading: "Playfair Display", serif;
    --font-text: "Inter", Arial; 
}

*{
    font-family: var(--font-text);
    font-size: 1em;
  
}

body{
      background-color: #e5e7eb;
}
h1{
    font-family: var(--font-heading);
    font-size: 3em;
}

.section-header{
    display: flex;
    flex-direction: column;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    display: inline-block;
    border: 1px solid transparent;
}

.badge-product {
    background-color: #bbf7d0; /* Light Green */
    color: #166534;
    border-color: #4ade80;
}

.badge-gov {
    background-color: #fecdd3; /* Light Pink/Red */
    color: #9f1239;
    border-color: #fb7185;
}

.badge-partner {
    background-color: #bfdbfe; /* Light Blue */
    color: #1e3a8a;
    border-color: #60a5fa;
}