* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: #FAFAF7;
    color: #322E2C;
}

a {
    color: #10768F;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease, text-decoration-color 0.2s ease, transform 0.2s ease;
}

a:hover {
    color: #0B5564;
    text-decoration-color: #F4D11A;
    transform: translateY(-1px);
}

a:active {
    color: #094552;
    transform: translateY(0);
}

a:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244,209,26,0.6);
    border-radius: 4px;
}

a[aria-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
    text-decoration: none;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
    background: rgba(250,250,247,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(55,85,102,0.12);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    gap: 16px;
}

.navbar-brand {
    font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #10768F;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.navbar-links-desktop {
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-link {
    font-size: 15px;
    font-weight: 600;
    color: #375566;
    padding: 8px 12px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.navbar-link:hover {
    background: rgba(16,118,143,0.08);
    color: #10768F;
    transform: translateY(-1px);
}

.navbar-link:active {
    background: rgba(16,118,143,0.16);
    color: #0B5564;
    transform: translateY(0);
}

.navbar-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244,209,26,0.6);
}

.navbar-link[aria-disabled="true"] {
    opacity: 0.5;
    cursor: not-allowed;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(55,85,102,0.3);
    background: #FFFFFF;
    color: #375566;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.mobile-nav-toggle:hover {
    background: #EEF4F6;
    transform: translateY(-1px);
}

.mobile-nav-toggle:active {
    background: #C2DADF;
    transform: translateY(0);
}

.mobile-nav-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(16,118,143,0.35);
}

.mobile-nav-toggle[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.navbar-links-mobile {
    display: none;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: 56px;
    right: 16px;
    background: rgba(250,250,247,0.98);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.navbar-links-mobile.active {
    display: flex;
}

.page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px 48px 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.section-wrapper {
    padding: 24px;
    border-radius: 16px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(55,85,102,0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.section-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.98);
}

.hero-section {
    padding: 32px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(227,240,246,0.95) 0%, rgba(250,250,247,0.98) 40%, rgba(244,209,26,0.16) 100%);
    border: 1px solid rgba(87,161,183,0.5);
    box-shadow: 0 10px 30px rgba(16,118,143,0.18);
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 24px;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-content-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1;
}

.hero-badge {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(16,118,143,0.08);
    color: #0B5564;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-heading {
    font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #322E2C;
    margin: 0;
}

.hero-subheading {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
    color: #375566;
    margin: 0;
}

.hero-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hero-side-panel {
    border-radius: 20px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(87,161,183,0.4);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    justify-content: space-between;
    min-height: 220px;
}

.hero-side-title {
    font-size: 16px;
    font-weight: 700;
    color: #10768F;
    margin: 0 0 4px 0;
}

.hero-side-text {
    font-size: 14px;
    line-height: 1.5;
    color: #375566;
    margin: 0;
}

.section-title-h1 {
    font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 700;
    color: #322E2C;
    margin: 0 0 8px 0;
}

.section-title-h2 {
    font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #322E2C;
    margin: 0 0 6px 0;
}

.section-title-h3 {
    font-family: 'Baloo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #375566;
    margin: 0 0 4px 0;
}

.body-text {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    color: #322E2C;
    margin: 0;
}

.muted-text {
    font-size: 14px;
    line-height: 1.6;
    color: #818084;
}

.bullet-list {
    margin: 0;
    padding-left: 20px;
    display: grid;
    gap: 4px;
    list-style: disc;
}

.info-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(244,209,26,0.16);
    color: #6A6347;
    font-size: 13px;
    font-weight: 600;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 24px;
    align-items: stretch;
    width: 100%;
}

.info-card {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    padding: 20px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(55,85,102,0.08);
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    border-color: rgba(16,118,143,0.35);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.info-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(16,118,143,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10768F;
    font-size: 18px;
}

.info-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.info-card-footer {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    justify-content: flex-start;
}

.btn-primary {
    padding: 12px 24px;
    min-height: 44px;
    background: #10768F;
    color: #FFFFFF;
    border: 1px solid #0B5564;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(16,118,143,0.25);
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #0B5564;
    box-shadow: 0 6px 14px rgba(16,118,143,0.35);
    transform: translateY(-2px);
}

.btn-primary:active {
    background: #094552;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244,209,26,0.6);
}

.btn-primary[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-secondary {
    padding: 10px 20px;
    min-height: 40px;
    background: #FFFFFF;
    color: #10768F;
    border: 1px solid #10768F;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
    text-decoration: none;
    background-clip: padding-box;
}

.btn-secondary:hover {
    background: #EEF4F6;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    transform: translateY(-1px);
}

.btn-secondary:active {
    background: #C2DADF;
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.16);
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(16,118,143,0.35);
}

.btn-secondary[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.tabbed-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tabs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid rgba(55,85,102,0.18);
    padding-bottom: 4px;
}

.tab-button {
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    background: transparent;
    color: #6A6347;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tab-button:hover {
    background: rgba(244,209,26,0.18);
    color: #322E2C;
    transform: translateY(-1px);
}

.tab-button.active {
    background: #F4D11A;
    color: #322E2C;
    transform: translateY(0);
}

.tab-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(16,118,143,0.35);
}

.tab-button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.tab-panel {
    padding: 16px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-success {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(35,142,170,0.08);
    border: 1px solid rgba(35,142,170,0.5);
    color: #0B5564;
    font-size: 14px;
}

.alert-warning {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(213,170,59,0.12);
    border: 1px solid rgba(213,170,59,0.7);
    color: #6A6347;
    font-size: 14px;
}

.alert-danger {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(192,57,43,0.08);
    border: 1px solid rgba(192,57,43,0.7);
    color: #8E1B0E;
    font-size: 14px;
}

.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

.infographic-card {
    display: flex;
    flex-direction: column;
    min-height: 180px;
    padding: 14px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(55,85,102,0.12);
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.infographic-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    border-color: rgba(16,118,143,0.4);
}

.infographic-card:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244,209,26,0.6);
}

.infographic-card[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.infographic-thumb {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #EEF4F6;
    flex: 0 0 auto;
}

.infographic-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.infographic-caption {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #375566;
}

.quiz-section-wrapper {
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(244,209,26,0.18) 0%, rgba(250,250,247,0.98) 40%, rgba(16,118,143,0.12) 100%);
    border: 1px solid rgba(163,184,190,0.7);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 24px;
    align-items: stretch;
}

.quiz-content-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quiz-question-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(55,85,102,0.12);
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quiz-question-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-option-btn {
    padding: 10px 14px;
    min-height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(55,85,102,0.18);
    background: #FFFFFF;
    color: #322E2C;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.quiz-option-btn:hover {
    background: #EEF4F6;
    border-color: rgba(16,118,143,0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.quiz-option-btn:active {
    background: #C2DADF;
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.quiz-option-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244,209,26,0.6);
}

.quiz-option-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.quiz-option-btn.selected {
    border-color: #10768F;
    background: #EEF4F6;
}

.quiz-progress-container {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(193,218,223,0.6);
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #10768F 0%, #57A1B7 50%, #F4D11A 100%);
    transition: width 0.25s ease;
}

.quiz-side-image {
    border-radius: 16px;
    overflow: hidden;
    background: #322E2C;
    position: relative;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.quiz-side-img {
    width: 100%;
    height: auto;
    display: block;
}

.quiz-side-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 60%, rgba(0,0,0,0.6) 100%);
}

.quiz-side-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.quiz-controls {
    display: flex;
    gap: 8px;
}

.quiz-feedback {
    min-height: 20px;
    font-size: 14px;
    color: #375566;
}

.modal {
    display: flex;
    position: fixed;
    z-index: 2000;
    inset: 0;
    align-items: center;
    justify-content: center;
}

.modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease-out;
}

.modal-container {
    max-width: 960px;
    width: 100%;
    max-height: 90vh;
    background: #FAFAF7;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 0;
    position: relative;
    animation: slideInUp 0.35s ease-out;
}

.modal-image-pane {
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.modal-content-pane {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background: rgba(0,0,0,0.6);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 1;
}

.modal-close:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.05);
}

.modal-close:active {
    transform: scale(0.97);
}

.modal-close:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(244,209,26,0.8);
}

.modal-close[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-zoom-hint {
    font-size: 12px;
    color: #EEF4F6;
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border-radius: 999px;
    position: absolute;
    left: 12px;
    bottom: 12px;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.modal-image:hover {
    transform: scale(1.02);
}

.modal-image:active {
    transform: scale(1.1);
    cursor: zoom-out;
}

.modal-image:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244,209,26,0.6);
}

.modal-image[aria-disabled="true"] {
    cursor: default;
    transform: none;
}

.actionable-insights-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 20px;
    align-items: stretch;
}

.actionable-insight-card {
    display: flex;
    flex-direction: column;
    min-height: 180px;
    padding: 18px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(55,85,102,0.12);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.actionable-insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.1);
}

.actionable-insight-footer {
    margin-top: auto;
    padding-top: 10px;
}

.site-footer {
    margin-top: 32px;
    padding: 16px 24px;
    background: #322E2C;
    color: #FAFAF7;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid #6A6347;
}

.footer-text {
    margin: 0;
    font-size: 13px;
    color: #FAFAF7;
}

.footer-created-by {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #F4D11A;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideInUp {
    0% { opacity: 0; transform: translateY(16px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: minmax(0, 1fr);
    }

    .quiz-section-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .modal-container {
        grid-template-columns: minmax(0, 1fr);
        max-width: 96vw;
    }
}

@media (max-width: 768px) {
    .navbar-links-desktop {
        display: none;
    }

    .mobile-nav-toggle {
        display: inline-flex;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 10px 12px;
    }

    .page-container {
        padding: 16px 12px 32px 12px;
    }

    .hero-section {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .section-wrapper {
        padding: 18px;
    }
}
