/* ================================
   Base Styles - Reset, Variables, Typography
   ================================ */

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

/* CSS Variables */
:root {
    --primary-blue: #2E5BFF;
    --secondary-purple: #7C3AED;
    --accent-green: #10B981;
    --dark-text: #1F2937;
    --light-text: #6B7280;
    --white: #FFFFFF;
    --light-bg: #F9FAFB;
    --border: #E5E7EB;
}

/* Base Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--white);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base Quote Styles */
.pain-quote:before,
.pain-quote:after {
    font-family: Georgia, serif;
    font-size: 1.2em;
    font-weight: bold;
}

.pain-quote:before {
    content: """;
}

.pain-quote:after {
    content: """;
}
