:root {
  /* Colors: #344CB7, #FFEB00, #F2F2F2, #34495D */
  --primary-color: #344CB7;
  --secondary-color: #FFEB00;
  --accent-color: #577BC1;
  --light-color: #F2F2F2;
  --dark-color: #34495D;
  --background-color: #FFFFFF;
  --text-color: #34495D;
  --border-color: #EAE4D5;
  --highlight-color: #D35400; /* Complementary highlight */
  
  --main-font: 'Poppins', sans-serif;
  --heading-font: 'Montserrat', sans-serif;
  
  --container-width: 1300px;
  --image-width: 380px;
}

body {
    margin: 0;
    padding: 0;
}

.wave-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.184 20c.392-5.024 3.486-9.601 9.816-9.601 6.33 0 9.424 4.577 9.816 9.601h2.02C42.42 13.988 38.307 8.399 31 8.399c-7.308 0-11.42 5.589-11.836 11.601h2.02zM31 10.399c-5.46 0-8.243 4.14-8.82 9.601h2.02c.38-4.437 2.766-7.601 6.8-7.601 4.035 0 6.42 3.164 6.8 7.601h2.02c-.577-5.46-3.36-9.601-8.82-9.601zM71.184 20c.392-5.024 3.486-9.601 9.816-9.601 6.33 0 9.424 4.577 9.816 9.601h2.02C92.42 13.988 88.307 8.399 81 8.399c-7.308 0-11.42 5.589-11.836 11.601h2.02zM81 10.399c-5.46 0-8.243 4.14-8.82 9.601h2.02c.38-4.437 2.766-7.601 6.8-7.601 4.035 0 6.42 3.164 6.8 7.601h2.02c-.577-5.46-3.36-9.601-8.82-9.601z' fill='%23344CB7' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

a, button {
    cursor: pointer;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}