
/* Generated Theme Styles */
/* Generated at: 2025-11-08 17:15:32 */

:root {
    /* Brand Colors */
    --brand-teal: #1c4f82;
    --brand-teal-2: #2074a0;
    --brand-teal-3: #2aa1c2;
    --brand-ink: #0b2030;
    --brand-sand: #f5f5f5;
    --accent: #7a3b7a;

    /* Typography */
    --font-family: &#039;Overpass&#039;, sans-serif;
    --font-size-base: 16px;
    --line-height: 1.5;
    --heading-weight: 500;

    /* Layout */
    --content-align: center;
    --section-spacing: 40px;
    --border-radius: 8px;
    --container-width: fluid;
}

/* Base Typography */
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
}

/* Content Alignment */
.hero-content,
.callout-content,
.details-grid {
    text-align: var(--content-align);
}

/* Section Spacing */
.card {
    margin-bottom: var(--section-spacing);
}

/* Border Radius */
.btn,
.card,
.form-input,
.form-textarea {
    border-radius: var(--border-radius);
}

/* Container Width */
.container {
        width: 100%;
    }

/* Custom CSS */
