:root {
    --primary-blue: #0a4d8c;
    --secondary-blue: #1a73e8;
    --accent-cyan: #e3f2fd;
    --accent-surface: #f4f8fc;
    --text-dark: #2c3e50;
    --text-light: #546e7a;
    --white: #ffffff;
    --dark: #1a1a1a;
    --border-soft: rgba(26, 115, 232, 0.12);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 45px rgba(10, 77, 140, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --transition-base: 0.3s ease;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    background: var(--white);
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.eyebrow {
    display: inline-block;
    color: var(--secondary-blue);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.section-padding {
    padding: 100px 0;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--secondary-blue);
}

.text-muted {
    color: var(--text-light) !important;
}

.bg-soft {
    background: var(--accent-surface);
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
