﻿/* Content/site.css */

/* --- BIẾN MÀU & FONT CHỮ TOÀN CỤC --- */
:root {
    --primary-blue: #002060;
    --accent-blue: #0033A0;
    --accent-red: #D91E2A;
    --light-gray-bg: #f8f9fa;
    --font-family-sans-serif: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-family-sans-serif);
    background-color: var(--light-gray-bg);
    color: #333;
}

/* --- PHONG CÁCH CHUNG CHO CÁC TIÊU ĐỀ --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-blue);
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.section-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}
