:root {
    --bg-dark: #1D1C23;
    --bg-accent: #111112;
    --text-primary: #F0EEF4;
    --text-muted: #A4A3B1;
    --primary-blue: #1E72CC;
    --font-main: 'Google Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-primary);
}

body {
    background-color: var(--bg-dark);
    line-height: 1.6;
}

/* Global Section Styles */
.section-badge {
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}
