/* src/styles.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #1a4a6b;
  --secondary-color: #0d3550;
  --dark-blue: #0d3550;
  --light-blue: #f8f9fa;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --accent: #1a4a6b;
}
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  padding-top: 0;
}
app-root {
  display: block;
  padding-top: 0;
}
html {
  scroll-behavior: smooth;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
