:root {
    --primary: #9aacb6;
    /* Light Blue/Gray (now the primary) */
    --secondary: #fefefc;
    /* Off-White (now the secondary) */
    --tertiary: #083f54;
    /* Dark Blue/Teal (now the tertiary) */
    --background: #f5f5f5;
    /* Very Light Gray (slightly darker than secondary) */
    --text-dark: #333333;
    /* Standard Dark Gray for text */
    --accent: #005666;
    /* A dep teal for highlights */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    min-height: 100vh;
    position: relative;
}

.container {
    position: relative;
    z-index: 1;
}

/* Add depth to sections */
section {
    position: relative;
    z-index: 1;
    margin: 2rem 0;
}