:root {
    --color-blue-dark: #1A2B48;
    --color-orange-accent: #FF7F32;
    --color-orange-hover: #e06c27;
    --color-bg-light: #F8FAFC;
    --color-text-main: #334155;
    --color-white: #FFFFFF;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-bento: 24px;
    --radius-btn: 12px;
    --transition-speed: 0.3s;
    --easing-standard: cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-base: 0 4px 24px rgba(26, 43, 72, 0.04);
    --shadow-hover: 0 16px 40px rgba(26, 43, 72, 0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    text-align: left;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-blue-dark);
    line-height: 1.2;
    text-wrap: balance;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

section[id] {
    scroll-margin-top: 100px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}