/* Yleinen tyyli */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px; /* Default size, adjusts with screen */
    margin: 0;
    padding: 0;
    background-color: #00719c;
    color: black;
}

html {
    scroll-behavior: smooth;
}

.sticky {
    position: sticky;
    top: 0;
    justify-content: space-between;
    z-index: 100;  /* Varmistetaan, että sticky header on muiden päälle */
}

/* Yläpalkki, jossa puhelinnumero, sähköposti ja slogan */
.top-bar {
    background-color: #00719c;
    color: white;
    padding: 10px;
    font-size: 1rem;
    display: flex;
    justify-content: center;  /* Keskittää kaikki sisältö vaakasuunnassa */
    align-items: center;
}

.top-bar span {
    padding: 25px;
}

.no-style {
    text-decoration: none;  /* Poistaa alleviivauksen */
    color: inherit;         /* Käyttää tekstin väriä, ei linkin oletusväriä */
}

.no-style:hover {
    color: #00415a;              /* Vaihtaa värin tummemmaksi, kun linkkiä viedään hiirellä */
    text-decoration: underline;  /* Säilyttää alleviivauksen hover-tilassa */
}

.styled-link {
    text-decoration: none;  /* Poistaa alleviivauksen */
    color: inherit;             /* Muuttaa linkin väriksi sinisen */
}
  
.styled-link:hover {
    color: #00719c; /* Vaihtaa värin tummemmaksi, kun linkkiä viedään hiirellä */
    text-decoration: underline;   /* Säilyttää alleviivauksen hover-tilassa */
}


.tietosuojaseloste {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tietosuojaseloste h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.tietosuojaseloste h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #444;
}

.tietosuojaseloste p {
    line-height: 1.6;
    margin: 0.5rem 0 1rem 0;
}

.tietosuojaseloste ul {
    margin-top: 0;
    padding-left: 1.2rem;
}

.tietosuojaseloste ul li {
    margin-bottom: 0.5rem;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 400px) {
    .footlogo {
        max-height: 40px;
    }
}