:root {
    --text-color: #000000;
    --background-color: #ffffff;
    --input-border: #666666;
    --focus-color: #0066cc;
    --error-color: #cc0000;
    --button-bg: #2c5282;
    --button-hover: #1a365d;
    --hover-color: #f0f0f0;
    --link-color: #0000EE;
    --visited-link-color: #551A8B;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

/* Container styles */
.container {
    max-width: 1440px;
    margin: 20px auto;
    padding: 0 20px;
}




.sub-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    gap: 20px; /* Minimum 20px gap between items */
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--focus-color);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* Links and Buttons */
a {
    color: var(--link-color);
    text-decoration: underline;
}

a:visited {
    color: var(--visited-link-color);
}



/* Focus styles */
*:focus {
    outline: 3px solid var(--focus-color);
    outline-offset: 2px;
}



/* Responsive adjustments */
@media (max-width: 480px) {
    
    .container {
        padding: 0 10px;
    }
}