/* ==========================================================================
   CSS RESET - UNIFIED STYLING SYSTEM
   ========================================================================== */

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Body Styles */
body {
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Remove default margins from common elements */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
}

input, textarea, select {
    font: inherit;
    border: none;
    background: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Remove focus outlines for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Ensure proper focus styles for keyboard users */
:focus-visible {
    outline: 2px solid #0B2578;
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove button text decoration */
button, .btn {
    text-decoration: none;
}

/* Ensure links in buttons don't have underline */
button a, .btn a {
    text-decoration: none;
}
