/* base.css - Variables and Resets */
:root {
    /* Colors based on Figma */
    --primary-color: #185ADB; /* Royal Blue */
    --primary-hover: #144CB3;
    --text-main: #1A1A1A; /* Dark Gray / Black */
    --text-muted: #666666;
    --text-dark: #1e293b;
    --bg-main: #FFFFFF;
    --bg-light: #F5F7FA;
    --border-color: #E2E8F0;

    /* Typography */
    --font-main: 'Mulish', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

:where(#onepro-wrapper) * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#onepro-wrapper {
    font-family: var(--font-main) !important;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

#onepro-wrapper li {
    color: inherit;
}

#onepro-wrapper strong, #onepro-wrapper b {
    color: inherit;
}

:where(#onepro-wrapper) a {
    text-decoration: none;
    color: inherit;
}

:where(#onepro-wrapper) ul {
    list-style: none;
}

:where(#onepro-wrapper) img {
    max-width: 100%;
    height: auto;
    display: block;
}

.onepro-container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Typography classes */
#onepro-wrapper h1, #onepro-wrapper h2, #onepro-wrapper h3, #onepro-wrapper h4, #onepro-wrapper h5, #onepro-wrapper h6 {
    line-height: 1.3;
    font-weight: 700;
    font-family: var(--font-main) !important;
    color: inherit;
}
