:root {
    --color-primary: #3A6EA5;
    --color-accent: #F2B134;
    --color-bg: #f5f5f5;
    --color-text: #333;

    --font-base: 'Source Sans Pro', system-ui, sans-serif;
    --font-heading: 'Source Sans Pro', system-ui, sans-serif;

    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-base);
    background: var(--color-bg);
    color: var(--color-text);
}

header, main, footer {
    padding: var(--space-4);
    max-width: 900px;
    margin: auto;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto; 
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin: var(--space-4) auto;
    justify-items: center;    
    text-align: center; 
}

@media (min-width: 700px) {
    .services-grid {
        grid-template-columns: repeat(1, 2fr);
    }
}

.info {
    margin-top: var(--space-5);
}

.note {
    max-width: 700px;
    margin: auto;
    font-style: italic;
    color: #3F48CC;
}

.myself {
    max-width: 700px;
    margin: auto;
    font-style: italic;
    color: #dd17dd;
    line-height: 1.4;
    white-space: pre-line;
}
