body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #555;
}


h1 {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.header {
    position: relative;
    background-image: url("/images/ej.jpg");  
    background-size: cover;       
    background-position: 0% 14%;  
    background-repeat: no-repeat;

    color: #fff;
    text-align: left;
     
    height: 100px;         
    display: flex;         
    align-items: center;    
    box-shadow: 19px 4px 10px 0px rgba(0,0,0,.5);
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
}

 
.header::before {
    content: "";
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-color: rgba(0,0,0,0.4);
    z-index: 0;
}

 
.header-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;      
    padding-left: 20px;  
}


.header h1 {
    font-size: 28px;
    margin-bottom: 8px;
	color: white;
}

.header p {
    font-size: 16px;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.column {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,.5);
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
	
}








 

.column p {
    color: #555;
    
    line-height: 1.9;
}

 

.column ul {
    list-style: none;
    padding: 0;
}

.column ul li {
    margin-bottom: 8px;
	
}

.column ul li a {
    color: #0066cc;
    text-decoration: none;
}

.column ul li a:hover {
    text-decoration: underline;
}




.articles h1 {
    background-color: #34659f;
	padding: 14px;
	color: white;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	font-size: 20px;
}


.articles ul {
    list-style: none;
    padding: 0;
	line-height: 38px;
}

.articles ul li {
    margin-bottom: 8px;
    line-height: 1.3;
    padding: 10px;
    border-bottom: solid 1px #e3e3e3;
}

.articles ul li a {
    display: inline-block;           
    color:#34659f;
    text-decoration: none;
    font-weight: bold;
	font-size: 23px;
    transition: transform 0.5s ease, color 0.5s ease;
}

.articles ul li a:hover {
    text-decoration: underline;
    transform: scale(1.07);
    color: #34659f;                 
}


.article-column {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,.5);
    transition: background .3s,border .3s,border-radius .3s,box-shadow .3s;
	border-radius: 16px;
}




.column img {
    width: 100%;
}

.footer {
    background-color: #182c4a;
    color: #fff;
    padding: 20px 0;
    margin-top: 200px;
}

.footer-content {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
	line-height: 30px;
}

.footer-links a {
    color: #afabc7;
    font-size: 14px;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Responsive dizajn */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}


@media (max-width: 600px) {
    h1 {
        font-size: 24px;
        margin-bottom: 12px;
		
    }

    h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
}