:root {
    /* Colors */
    --primary-blue: #033b62;
    --primary-red: #CF2E2E;
    --accent-red: #ff4757;
    --accent-yellow: #ffcc00;
    --white: #ffffff;
    --light-gray: #f8faff;
    --text-light: #ddd;
    --text-dark: #444;
    --text-gray: #555;
    --background-light: rgba(3, 59, 98, 0.03);
    --background-gray: #f0f2f5;
    --border-light: rgba(3, 59, 98, 0.08);
    --shadow-light: rgba(3, 59, 98, 0.12);
    --shadow-dark: rgba(0, 0, 0, 0.08);
    --overlay-dark: rgba(3, 59, 98, 0.6);

    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;

    /* Font Sizes */
    --font-size-sm: 12px;
    --font-size-base: 14px;
    --font-size-md: 15px;
    --font-size-lg: 16px;
    --font-size-xl: 18px;
    --font-size-2xl: 20px;
    --font-size-3xl: 24px;

    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     scroll-behavior: smooth;
 }

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

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Playfair Display', serif;
     font-weight: 600;
     line-height: 1.2;
 }

 a {
     text-decoration: none;
 }

 /* Custom Scrollbar with white track */
 ::-webkit-scrollbar {
     width: 12px;
 }

 ::-webkit-scrollbar-track {
     background: #ffffff;
     border-radius: 8px;
 }

 ::-webkit-scrollbar-thumb {
     background: #CF2E2E;
     border-radius: 8px;
     border: 3px solid #ffffff;
 }

 ::-webkit-scrollbar-thumb:hover {
     background: #ffcc00;
 }

 /* Firefox */
 * {
     scrollbar-width: thin;
     scrollbar-color: #CF2E2E #ffffff;
 }

