/* Perustyylit */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Yläosa */
.header {
    background: #004c97;
    color: white;
    padding: 10px 0;
}

.logo {
    max-height: 50px;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero-osa */
.hero {
    background: url("https://www.hammaslaakarivuosaari.fi/hammaslaakari-vuosaari-tausta.jpg") no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #0074d9;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Palvelut */
.services {
    padding: 50px 0;
    background: #f8f8f8;
    text-align: center;
}

.service-list {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.service-item {
    max-width: 300px;
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Yhteystiedot */
.contact {
    padding: 50px 0;
    text-align: center;
}

/* Alatunniste */
.footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 20px 0;
}
