/*@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");*/
/* * {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}

button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

.container{
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}*/

:root {
    --primary-color: #5B93FF; /* General highlights and button backgrounds */
    --secondary-color: #192E6F; /* Darker blue highlights or gradients */
    --accent-color: #205DC9; /* Specific text highlights */
    --header-text-color: #2F2E2E; /* Headers and section titles */
    --body-text-color: #575757; /* Normal page text */
    --light-blue: #E5EDFF;
    --light-text: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #E0E0E0;
    --dark-gray: #666666;
    --success-color: #28A745;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--body-text-color);
    line-height: 1.6;
    font-size: 16px;
}

p{
    margin-bottom: 15px;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn-gradient {
    display: inline-block;
    background: linear-gradient(to right, #5B93FF, #192E6F);
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
/*    font-size: 2rem;*/
    text-align: center;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    border: none;
    text-decoration: none;
/*    width: 100%;*/
/*    max-width: 800px;*/
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.btn-gradient:active {
    transform: translateY(1px);
}

.padding-container{
    padding-left: 20px;
    padding-right: 20px;
}

.font-regular{
    font-weight: 400 !important;
}

.font-semibold{
    font-weight: 600 !important;
}

.font-bold{
    font-weight: 700 !important;
}

.highlight-1{
    color: var(--primary-color) !important;
    font-weight: 600;
}

.highlight-1-ul{
    color: var(--primary-color) !important;
    font-weight: 600;
    text-decoration: underline;
}