/* Yleiset tyylit */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box; /* Huomioi padding leveyden laskennassa */
}

/* Otsikot */
h1 {
    color: #003366;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    word-wrap: break-word; /* Katkaisee pitkät sanat tarvittaessa */
    overflow-wrap: break-word; /* Katkaisee pitkät sanat myös uudemmissa selaimissa */
}

h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Palvelut lista */
.services {
    list-style-type: none;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
}

.services li {
    font-size: 1.2rem;
    margin: 5px 0;
    font-weight: bold;
}

/* Kappaleet */
p {
    text-align: justify;
    margin-bottom: 20px;
}

/* Alatunniste */
footer {
    text-align: center;
    font-size: 1rem;
    margin-top: 20px;
}

/* Responsiivisuus */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .services li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .services li {
        font-size: 0.9rem;
    }

    .container {
        padding: 15px;
    }
}