* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Alegreya Sans", sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #051912;
    text-align: center;
    padding: 20px;
}

header {
    background: #00674F;
    color: white;
    padding: 50px 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

section {
    margin: 40px auto;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #051912;
    margin-bottom: 15px;
}

.contact a {
    color: #50C878;
    text-decoration: none;
    font-weight: bold;
}

footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #777;
}

/* Stiliziranje jezičnih gumba */
.language-switch {
    text-align: right;
    margin-top: 10px;
}

.lang-btn {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #00674F;
    background: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.lang-btn:hover {
    background: #50C878;
    color: #ffffff;
}

.lang-btn:active {
     transform: scale(0.95);
}
