/* =========================================
   STYLE.CSS - Professional, High-Impact Dark Theme (Merged with Inter/Roboto Fonts)
   ========================================= */

/* 1. Variables and Global Reset */
:root {
    --color-primary-bg: #141c2c; /* Deepest blue/near-black for main background */
    --color-secondary-bg: #1e283b; /* Slightly lighter for cards/sections */
    --color-text: #ffffff; /* Crisp white text for maximum readability */
    --color-light-text: #a0aab8; /* Soft white/light blue for supporting text */
    --color-accent-primary: #0078d4; /* Strong Azure Blue for branding/highlights */
    --color-accent-secondary: #00bcd4; /* Cyan/Turquoise for contrast elements */
    
    /* --- FONT PAIRING: INTER (HEADINGS) / ROBOTO (BODY) --- */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --padding-section: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body); /* Applying Roboto to body */
    background-color: var(--color-primary-bg);
    color: var(--color-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--color-accent-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-accent-secondary);
}

/* Typography */
h1 {
    font-family: var(--font-heading); /* Applying Inter */
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text);
}

h2 {
    font-family: var(--font-heading); /* Applying Inter */
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 10px;
}

h3 {
    font-family: var(--font-heading); /* Applying Inter */
    font-size: 1.5rem;
    font-
