/* ============================================================
   FILE: /assets/css/about.css
   PURPOSE: Page-specific styles for the About page
   NOTES:
     - Overrides and extends universal.css
     - All hero styles moved here
   ============================================================ */
:root {
    /* Brand colors (from your brief) */
    --color-main: #38004a;
    --color-main-dark: #2a0038;
    --color-secondary: #333333;
    --color-sub-0: #926c9e;
    --color-sub-1: #e5bdeb;
    --color-sub-2: #c4c4c4;

    /* Neutrals */
    --color-bg: #f7f5f9;
    --color-white: #ffffff;
    --color-text: #222222;
    --color-border: #dddddd;

    /* Feedback */
    --color-success: #2f855a;
    --color-warning: #b7791f;
    --color-error: #b54a4a;

    /* Layout */
    --container-width: 100%;
    --radius-md: 8px;
    --radius-lg: 16px;

    /* Spacing (4/8px scale) */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 40px;
    --space-8: 48px;
    --space-9: 50px
}

.about-section{
    width: 60%;
    margin-left: 10%;;
}
@media (max-width: 768px) {

    .about-section img{
        width: 80vw;
    }

}
.about-section {
    padding-top: var(--space-6);
    padding-bottom: var(--space-6);
}

.about-inner > h2 {
    font-size: 1.6rem;
    margin-bottom: var(--space-3);
    margin-top: var(--space-9);
}

section h3{
    margin-top: 50px;
}

.about-inner section {
    margin-top: var(--space-4);
}

.about-inner p {
    max-width: 720px;
}
