/* Journey - Career Guidance Platform Styles */

:root {
    --primary-white: #FFFFFF;
    --primary-beige: #F5F5DC;
    --primary-skyblue: #87CEEB;
    --accent-beige: #E8E4D9;
    --dark-blue: #1E90FF;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Prevent text overflow globally */
p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Ensure long URLs and text don't break layout */
.break-words {
    word-break: break-word;
    overflow-wrap: anywhere;
}
