:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --bg: #f4f7f6;
    --text: #333;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-bottom: 5px solid var(--secondary);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    font-size: 1.1em;
    opacity: 0.8;
    max-width: 600px;
    margin: 10px auto 0;
}

section {
    background: var(--white);
    margin-bottom: 30px;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

h2 {
    color: var(--primary);
    border-left: 5px solid var(--secondary);
    padding-left: 15px;
    margin-top: 0;
}

h3 {
    color: var(--secondary);
    margin-top: 25px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

..card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
}

.stacked-cards .card + .card {
    margin-top: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.95em;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: #f8f9fa;
    color: var(--primary);
    font-weight: bold;
}

.highlight {
    background: #2c3e50;
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    font-style: italic;
    font-size: 1.1em;
}

.tasl-list {
    list-style: none;
    padding: 0;
}

.tasl-list li {
    margin-bottom: 12px;
    padding: 10px 15px;
    background: #eef7fd;
    border-radius: 6px;
}

.tasl-list strong {
    color: var(--secondary);
}

.footer {
    text-align: center;
    padding: 30px;
    color: #999;
    font-size: 0.85em;
}

/* Prilagodba za mobitele */
@media (max-width: 600px) {
    header h1 { font-size: 1.8em; }
    section { padding: 20px; }
    table { display: block; overflow-x: auto; }
}