/* PSI Brand Colors - Global Variables */
:root {
    --psi-brand-blue-purple: #6256F7;
    --psi-deep-purple: #4C31A6;
    --psi-accent-purple: #8121CC;
    --psi-accent-pink: #C41CFF;
    --psi-light: #C4C8FF;
    --psi-extra-light: #EDF0FF;
    --neutral-dark: #1a1a1a;
    --neutral-darker: #000000;
    --neutral-medium: #4a5568;
    --neutral-light: #718096;
    --neutral-white: #FFFFFF;
}

/* Global reset with PSI-compatible styling */
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--neutral-dark);
}

/* Container with updated max-width */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Base button styles using PSI colors */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--psi-brand-blue-purple);
    color: var(--neutral-white);
    border: 2px solid var(--psi-brand-blue-purple);
}

.btn-primary:hover {
    background: var(--psi-accent-purple);
    border-color: var(--psi-accent-purple);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--psi-brand-blue-purple);
    border: 2px solid var(--psi-brand-blue-purple);
}

.btn-secondary:hover {
    background: var(--psi-brand-blue-purple);
    color: var(--neutral-white);
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
}

/* Typography with PSI colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--neutral-darker);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

p {
    color: var(--neutral-dark);
    font-family: 'Montserrat', sans-serif;
}

/* Links using PSI colors */
a {
    color: var(--psi-brand-blue-purple);
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
}

a:hover {
    color: var(--psi-accent-purple);
}

/* Responsive container padding */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
} 