/* Osnovni stiliziranje za demonstracijske namene */
body {
    /* font-family: Arial, sans-serif; */
    font-family: Heebo, sans-serif;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4 {
    font-family: Signika, sans-serif;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
}

nav {
    display: inline-block;
}

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

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

.navigation {
    background-color: #333;
    padding: 0;
    position: fixed;
    /* Fixed position */
    top: 0;
    width: 100%;
    z-index: 1000;
    height: 125px;
    /* To ensure it stays on top of other content */
}

.container {
    padding-top: 120px;
    /* Adjust according to the height of the navigation bar */
}

.banner {
    /* background-color: #6495ED; */
    background-image: url('banner.png');
    background-size: cover;
    height: 400px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 300px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center; */
}

.banner h1 {
    color: #4d4d4d;
    font-size: 36px;
    text-shadow: 1px 1px 1px #fff;
}

.block {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 125px; /* Adjust to match the header height */
}


.service h2 {
    margin-bottom: 20px;
}

.service ul {
    /* list-style-type: none; */
    padding: 0;
    text-align: left;
}

.service li {
    /* display: inline-block; */
    margin: 0 10px;
}

.service li img {
    width: 150px;
    height: 150px;
}

.odd {
    background-color: #ddd;
}

.even {
    background-color: #f4f4f4;
}


.content {
    max-width: 600px;
    /* Limit text width */
    padding: 20px;
    text-align: center;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
}
