/* Resetiranje osnovnih stilova */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Stil za cijelo tijelo */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 20px;
}

/* Stil za header */
header {
    text-align: center;
    background-color: #28a745;
    padding: 20px;
    color: white;
}

header h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Stil za glavne sekcije */
main {
    margin: 20px 0;
}

section {
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    color: #28a745;
    margin-bottom: 10px;
}

p, ul, ol {
    margin-bottom: 10px;
}

/* Stil za footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    margin-top: 20px;
}
