:root {
    --primary-color: #ef6c00;
    --secondary-color: #1a237e;
    --primary-dark-color: #212121;
    --primary-tinted-1: #fff9f5;
    --primary-tinted-2: #fff1e6;
    --primary-tinted-3: #ffe0b2;
    --text-color: #222;
    --card-bg: white;
}

@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 100 700;
  src: url(https://fonts.gstatic.com/s/materialsymbolsrounded/v276/sykg-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190FjzaqkNCeE.woff2) format('woff2');
}

.material-icons {
    margin-left: 5px;
    opacity: 0.7;
    font-family: 'Material Symbols Rounded';
    font-weight: bold;
    font-style: normal;
    font-size: 30px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 
      'FILL' 1,
      'wght' 700,
      'GRAD' 0,
      'opsz' 30;
}

.material-icons.light {
    color: white;
    opacity: 1.0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--primary-tinted-1);
    padding: 0px;
}

.toolbar#bgd {
    display: flex;
    align-items: center;
    background-color: var(--primary-color);
    width: 100%;
    height: 50px;
    padding-left: 12px;
    padding-right: 15px;
}

.toolbar b {
    font-size: 1.5rem;
    color: white;
}

.toolbar a {
    text-decoration: none;
    text-align: center;
}

.toolbar img {
    width: 30px;
    height: 30px;
    margin-right: 12px;
}

h1, h2 {
    width: 100%;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 30px;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 1.6em;
    margin-top: 1.5em;
}

p {
    margin-bottom: 1.5em;
    font-size: 1em;
    opacity: 80%;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 1.2em;
}

li strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1em;
    margin-bottom: 0.3em;
}

.disclaimer {
    margin-top: 1em;
    padding: 5px 20px;
    background-color: var(--primary-tinted-2);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
}

.brand, .highlighted {
    font-weight: bold;
}

li .highlighted {
    margin-bottom: 0.8em;
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer h2 {
    font-size: 1.5em;
    margin-top: 0px;
    margin-bottom: 20px;
    color: white;
}

footer p {
    padding: 5px 0px;
    margin: 0px;
    opacity: 100%;
    text-align: center;
}

footer a {
    color: var(--primary-tinted-2);
    text-decoration: none;
}

footer .copyright {
    margin-top: 30px;
}