:root {
    --dark-orange: #F37442;
    --light-orange: #FCBA61;
    --green: #B9DD8B;
    --off-white: #FFFFFF;
    --text-dark: #2D3748;
    --text-light: #4A5568;
    --border-color: #E2E8F0;
    --font-primary: 'Quicksand', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--off-white);
    min-height: 100vh;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.page-wrapper {
    display: flex;
    max-width: 1300px;
    width: 100%;
    margin: 100px auto 2rem;
    padding: 0 1.5rem;
    gap: 3rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-wrapper {
        flex-direction: column;
        gap: 2rem;
        margin: 90px auto 1.5rem;
    }
}

/* Import the header styles */
@import url('../components/header.css');
