/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #c084fc;
    --primary-dark: #a855f7;
    --primary-light: #f3e8ff;
    --secondary: #0f172a;
    --accent: #10b981;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

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

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-light);
}

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

.btn-light:hover {
    background: var(--bg-alt);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo:hover {
    color: var(--secondary);
}

.logo-icon {
    font-size: 1.5rem;
}

.logo-img {
    height: 80px;
    width: auto;
    clip-path: inset(12% 5% 10% 5%);
    margin: -10px -5px;
}

.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    clip-path: inset(12% 5% 10% 5%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg) 100%);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-subtitle strong {
    color: var(--primary);
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Positivity Wall Section */
.positivity-wall {
    background: linear-gradient(135deg, #fdf4ff 0%, #fae8ff 50%, #f3e8ff 100%);
    padding: 60px 0;
}

.positivity-header {
    text-align: center;
    margin-bottom: 40px;
}

.positivity-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.positivity-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.positivity-carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
}

.positivity-messages {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.positivity-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary);
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.positivity-card p {
    font-style: italic;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.positivity-author {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

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

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.positivity-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.positivity-form {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.positivity-form textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.2s;
}

.positivity-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.positivity-form-footer {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    align-items: center;
}

.positivity-name {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
}

.positivity-name:focus {
    outline: none;
    border-color: var(--primary);
}

.positivity-loading,
.no-messages,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-style: italic;
}

.form-notification {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    animation: slideIn 0.3s ease;
}

.form-notification.success {
    background: #d1fae5;
    color: #065f46;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.intro-text h2 {
    margin-bottom: 24px;
    font-size: 1.75rem;
}

.intro-text p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.highlight-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 12px;
}

.highlight-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
}

/* Explainers Section */
.explainers-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.explainer-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.explainer-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.explainer-card:has(.explainer-body.active) {
    border-color: var(--primary);
}

.explainer-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s;
}

.explainer-header:hover {
    background: var(--bg-alt);
}

.explainer-header h3 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin: 0;
}

.explainer-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.2s;
    flex-shrink: 0;
}

.explainer-icon svg {
    color: var(--primary);
}

.explainer-card:has(.explainer-body.active) .explainer-icon {
    background: var(--primary);
    transform: rotate(180deg);
}

.explainer-card:has(.explainer-body.active) .explainer-icon svg {
    color: white;
}

.explainer-body {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.explainer-body.active {
    max-height: 1000px;
    padding: 0 24px 24px;
}

.explainer-body h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.explainer-body p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.explainer-body ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.explainer-body li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.explainer-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.explainer-note {
    background: var(--primary-light);
    padding: 16px;
    border-radius: var(--radius-sm);
    color: var(--primary-dark) !important;
}

/* Callout Box */
.callout-box {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.callout-box h3 {
    margin-bottom: 16px;
}

.callout-box > p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.callout-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.callout-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
}

.callout-item span {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.callout-item p {
    font-size: 0.9rem;
    color: var(--text);
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
}

.resource-category {
    margin-bottom: 48px;
}

.resource-category:last-child {
    margin-bottom: 0;
}

.resource-category-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.resource-category-header .resource-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.resource-category-header h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.resource-category-header p {
    color: var(--text-light);
    margin: 0;
}

.resource-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.resource-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.2s;
    display: block;
}

.resource-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.resource-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 12px;
}

.resource-item h4 {
    color: var(--secondary);
    font-size: 1.125rem;
    margin: 0;
}

.resource-badge {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.resource-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.resource-contact {
    display: block;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 500;
}

.resource-icon {
    font-size: 3rem;
}

.resource-link {
    color: var(--primary);
    font-weight: 500;
}

/* Verify Section */
.verify-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdfa 100%);
}

.verify-box {
    max-width: 700px;
    margin: 0 auto;
}

.verify-form {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

.verify-input-group {
    display: flex;
    gap: 12px;
}

.verify-input-group input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.verify-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.verify-input-group button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    white-space: nowrap;
}

.verify-hint {
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.verify-loading {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.verify-results {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 32px;
}

.verify-result-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.verify-status-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.verify-status-icon.authorised {
    background: #d1fae5;
}

.verify-status-icon.not-authorised {
    background: #fee2e2;
}

.verify-status-icon.unknown {
    background: #fef3c7;
}

.verify-result-header h3 {
    margin-bottom: 4px;
}

.verify-result-header .status {
    font-size: 0.95rem;
    font-weight: 500;
}

.verify-result-header .status.authorised {
    color: #059669;
}

.verify-result-header .status.not-authorised {
    color: #dc2626;
}

.verify-result-header .status.unknown {
    color: #d97706;
}

.verify-result-details {
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.verify-detail {
    background: var(--bg-alt);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.verify-detail label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 4px;
    font-weight: 600;
}

.verify-detail span {
    font-weight: 500;
    color: var(--text);
}

.verify-result-footer {
    background: var(--bg-alt);
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}

.verify-result-footer a {
    font-weight: 500;
}

.verify-no-results {
    text-align: center;
    padding: 40px;
}

.verify-no-results-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.verify-tips {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid #10b981;
}

.verify-tips h4 {
    margin-bottom: 16px;
}

.verify-tips ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.verify-tips li {
    color: var(--text-light);
    padding-left: 24px;
    position: relative;
}

.verify-tips li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.verify-warning-signs {
    background: #fef2f2;
    padding: 24px;
    border-radius: var(--radius);
    border-left: 4px solid #ef4444;
    margin-top: 24px;
}

.verify-warning-signs h4 {
    margin-bottom: 16px;
    color: #dc2626;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.warning-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: var(--radius-sm);
}

.warning-item span {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-item p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
}

.verify-multiple-results {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    background: #fefce8;
}

.verify-multiple-results p {
    color: #854d0e;
    font-size: 0.9rem;
}

.verify-result-item {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.2s;
}

.verify-result-item:hover {
    background: var(--bg-alt);
}

.verify-result-item:last-child {
    border-bottom: none;
}

.verify-result-item h4 {
    margin-bottom: 4px;
}

.verify-result-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Regulators Section */
.regulators-section {
    padding: 80px 0;
    background: var(--bg-alt);
}

.regulators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.regulator-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.regulator-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.regulator-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.regulator-card > p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.regulator-card h4 {
    color: var(--text);
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1rem;
}

.regulator-card ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.regulator-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.regulator-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.regulator-card .note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.regulator-card .btn {
    margin-top: 16px;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: #94a3b8;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    margin-top: 16px;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid #334155;
    text-align: center;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .callout-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .regulators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .positivity-messages {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .positivity-card {
        min-width: 280px;
        max-width: 280px;
    }
    
    .positivity-form-footer {
        flex-direction: column;
    }
    
    .positivity-name {
        width: 100%;
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        gap: 16px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .message-board-content {
        flex-direction: column;
        text-align: center;
    }
    
    .resource-list,
    .regulators-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-category-header {
        flex-direction: column;
        text-align: center;
    }
    
    .verify-input-group {
        flex-direction: column;
    }
    
    .verify-result-details {
        grid-template-columns: 1fr;
    }
    
    .warning-grid {
        grid-template-columns: 1fr;
    }
    
    .callout-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .explainer-header,
    .explainer-body {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .callout-box {
        padding: 24px;
    }
    
    .regulator-card {
        padding: 24px;
    }
}
