/* ===== CSS RESET ===== */
/* A minimal reset for consistent styling */
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }
  

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    
  }
  
  body {
    font-family: var(--font-main);
    background-color: white;
    color: var(--color-text);
  }
  
  /* ===== GLOBAL VARIABLES ===== */
  :root {
    --color-primary: #2b6cb0;
    --color-secondary: #ff6b6b;
    --color-bg: #f4f4f4;
    --color-text: #333;
    --color-light: #fff;
    --container-width: 1200px;
    --spacing-section: 60px;
  }
  
  /* ===== GLOBAL ELEMENT STYLES ===== */
  body {
    font-family: 'Gilroy', Arial, sans-serif;
  }
  
  
  /* ===== LAYOUT HELPERS ===== */

  .text-center {
    text-align: center;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .grid {
    display: grid;
    gap: 20px;
  }

  .form-input,
.form-textarea {
    font-family: inherit; 
}

a {
  color: #00165E;
}

a:hover {
  color: #E6007E;
}
  
  /* ===== SPACING UTILITIES ===== */
  .mt-1 { margin-top: 10px; }
  .mt-2 { margin-top: 20px; }
  .mt-3 { margin-top: 30px; }
  
  .mb-1 { margin-bottom: 10px; }
  .mb-2 { margin-bottom: 20px; }
  .mb-3 { margin-bottom: 30px; }
  
  .pt-1 { padding-top: 10px; }
  .pt-2 { padding-top: 20px; }
  .pt-3 { padding-top: 30px; }
  
  .pb-1 { padding-bottom: 10px; }
  .pb-2 { padding-bottom: 20px; }
  .pb-3 { padding-bottom: 30px; }

  
  