
/* Reset some default styles */
* {
    font-family: 'Roboto', sans-serif !important; 
  }
body, h1, h2, h3, p, a {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #0088cc;
}
h1 {
    font-size: 24px;
    font-weight: bolder;
    margin-bottom: .5rem;
    margin-top: 1.7rem;
}

 h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: .1rem;
    margin-top: 1.5rem;
 }
 h3 {
    font-size: 14px;
    color: #555;
    margin-top: .5rem;
 }
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrollbar */
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.footer {
    margin-top: auto;
    background-color: #757474;
    color: #fff;
    text-align: center;
    padding: 10px;
    height: 5rem;
    display: flex;
}
.copyright {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    margin-right: 10rem;
}
.privacy {
    width: 220px;
    margin-left: 10rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.privacy a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    margin-bottom: 0.25rem;
}

.header {
    background-color: #e5e5e5;
    color: #6d6d6d;
    text-align: center;
    padding: 20px;
    display: flex;
}
.header .logo-container {
    width: 100px;
    display: flex;
    margin-left: 2rem;
    align-items: center;
    justify-content: flex-start;
}
.header .intro {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    justify-content: center;
    margin-right: 3rem;
    color: #6d6d6d;
}
section {
    background-color: #FFF;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}