:root {
    --button: #1E3A5F;
    --field: #182E4C17;
    --text: #1B2028;
    --placeholder: #1E3A5F66;
    --background: #fff;
    --gap: 20px;
    --gap-big: 32px;
    --padding: 40px;
    --mobile: 10px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Domine';
}

body {
    background-color: var(--background);
}

body {
    color: var(--text);
}

header {
    padding: var(--gap, 20px) var(--padding, 40px);
}

header {
    gap: var(--gap-big, 32px);
}

header {
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    padding: 0 var(--Pading, 40px);
    justify-content: flex-end;
    align-items: flex-start;
    align-self: stretch;
}

header,
.flex {
    display: flex;
}

.align-items-start {
    align-items: flex-start;
}

header {
    align-items: center;
}

.header-item {
    text-decoration: none;
}

.header-item .title{
    color: var(--Tipka, #1E3A5F);
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 100% */
    letter-spacing: 0.1px;
    padding: 6px 12px;
}

.header-item .subtitle {
    color: var(--Tekst, #1B2028);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 114.286% */
    letter-spacing: 0.1px;
}

.header-item svg {
    width: 40px;
    height: 40px;
    aspect-ratio: 1/1;
}

.header-divider {
    width: 1px;
    height: 68px;
    background: var(--Placeholder, rgba(30, 58, 95, 0.40));
}
.header-banner .homepage {
    aspect-ratio: 160/83;
    min-height: 747px;
}
.header-banner:not(.homepage) {
    min-height: 250px;
}
.header-banner {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-overlay .homepage {
    position: absolute;
}
.banner-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--Razmak, 20px);
}

.banner-title {
    color: var(--Tekst, #1B2028);
    text-align: center;
    font-style: normal;
    font-weight: 700;
}

.banner-subtitle {
    color: var(--Tekst, #1B2028);
    text-align: center;
    font-style: normal;
    font-weight: 700;
}

.modules-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Razmak-32, 32px);
    align-self: stretch;
}

.modules-title {
    width: 100%;
    color: var(--Tekst, #1B2028);
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 166.667% */
}

.modules-list {
    width: 100%;
    display: grid;
    gap: var(--Razmak-32, 32px);
}

.module-item {
    display: flex;
    align-items: center;
    gap: var(--Razmak, 20px);
}

.module-item p {
    color: var(--Tekst, #1B2028);
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 111.111% */
}

.module-item svg {
    width: 24.36px;
    height: 31.502px;
    flex-shrink: 0;
}

.container-divider {
    padding: 0 40px;
}
.container-divider hr {
    background: var(--Polje, rgba(24, 46, 76, 0.09));
}
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--Razmak, 20px);
    padding: 52px var(--Pading, 40px) var(--Razmak-32, 32px) var(--Pading, 40px);
}
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}
label {
    overflow: hidden;
    color: var(--Tekst, #1B2028);
    text-overflow: ellipsis;
    font-family: Outfit;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px; /* 123.077% */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-clamp: 1;
}
input, textarea {
    font-family: Outfit;
    display: flex;
    padding: 10px 14px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    border: 1.5px solid rgba(0, 0, 0, 0.00);
    background: var(--Polje, rgba(24, 46, 76, 0.09));
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 133.333% */
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
input::placeholder, textarea::placeholder {
    color: var(--Placeholder, rgba(30, 58, 95, 0.40));
}
:focus-visible {
    outline: none;
}
button {
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    border: transparent;
    border-radius: 8px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), var(--Tipka, #1E3A5F);
    color: var(--Bijela, #FFF);
    font-family: Outfit;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px; /* 133.333% */
}
.gap-16 {
    gap: 16px;
}
.gap-20 {
    gap: 20px;
}
.w-100 {
    width: 100%;
}
.flex-column {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.align-items-right {
    align-items: flex-end;
}
.align-items-center {
    align-items: center;
}
.form-checkbox {
    margin: 11px;
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 2px solid var(--Tekst, #1B2028);
}
.checkbox-label {
    color: var(--Tekst, #1B2028);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
footer a {
    padding: 12px 8px;
}
.text-center {
    text-align: center;
}
article a {
    color: var(--Tipka, #1E3A5F);
    line-height: normal;
    text-decoration-line: underline;
}
footer a,
.checkbox-label a {
    color: var(--Tipka, #1E3A5F);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
footer a span {
    color: red;
}

/* Alert styles */
.alert {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-close {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    color: inherit;
    opacity: 0.7;
}

.alert-close:hover {
    opacity: 1;
}


/* reCAPTCHA Styles */
.recaptcha-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.g-recaptcha {
    transform-origin: right center;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 32, 40, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px;
    border-top: 1px solid rgba(30, 58, 95, 0.3);
    transition: transform 0.3s ease-in-out;
}

.cookie-consent.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-link {
    color: var(--Tipka, #1E3A5F);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.cookie-link:hover {
    background: #ffffff;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-btn-accept {
    background: #28a745;
    color: white;
}

.cookie-btn-accept:hover {
    background: #218838;
}

.cookie-btn-decline {
    background: #6c757d;
    color: white;
}

.cookie-btn-decline:hover {
    background: #5a6268;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}
@media (max-width: 768px) {
    .recaptcha-container {
        justify-content: center;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center center;
    }
}
.contact-info-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--Razmak, 20px);
    align-self: stretch;
}
.contact-info-title {
    color: var(--Tekst, #1B2028);
    font-weight: 700;
    line-height: normal;
}
.map-container,
.map-container iframe {
    width: 100%;
}
footer {
    display: flex;
    padding: var(--Razmak-32, 32px) 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--Razmak, 20px);
    align-self: stretch;
}
footer p {
    color: var(--Tekst, #1B2028);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
article {
    padding: var(--Pading, 40px);
}
article,
article ul{
    display: flex;
    flex-direction: column;
    gap: var(--Razmak, 20px);
    align-self: stretch;
}
ul {
    display: block;
    list-style-type: disc;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
.contact-info-subtitle {
    color: var(--Tekst, #1B2028);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.contact-title {
    color: var(--Tekst, #1B2028);
    text-align: center;
    font-style: normal;
    font-weight: 700;
}
@media (min-width: 769px) {
    .modules-title {
        font-size: 24px;
        letter-spacing: -0.48px;
    }
    .module-item p {
        font-size: 18px;
    }
    .contact-title {
        font-size: 24px;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.48px;
    }
    .contact-info-subtitle {
        font-size: 20px;
    }
    .contact-info-title {
        font-size: 24px;
        line-height: normal;
    }
    .footer-links {
        gap: var(--Razmak-32, 32px);
    }
    .contact-info-section {
        padding: var(--Razmak-32, 32px) var(--Pading, 40px) var(--Razmak-32, 32px) var(--Pading, 40px);
    }
    .map-container,
    .map-container iframe {
        height: 538.667px;
        aspect-ratio: 255/101;
    }
    .header-banner:not(.homepage) {
        aspect-ratio: 160/30;
    }
    .align-items-right-center {
        align-items: flex-end;
    }
    .flex-row-column {
        flex-direction: row;
    }
    .header-mob {
        display: none;
    }
    .banner-overlay {
        left: 143px;
        top: 392px;
    }
    .banner-content {
        width: 641px;
    }
    .banner-title {
        font-size: 36px;
        line-height: 50px; /* 138.889% */
        letter-spacing: -0.72px;
    }
    .banner-subtitle {
        font-size: 24px;
        line-height: 30px; /* 125% */
        letter-spacing: -0.48px;
    }
    .modules-section {
        padding: var(--Pading, 40px);
    }
    .modules-list {
        padding: 0 var(--Pading, 40px);
        grid-template-columns: repeat(2, 1fr);
    } 
}
@media (max-width: 768px) {
    .modules-title {
        font-size: 18px;
        letter-spacing: -0.36px;
    }
    .module-item p {
        font-size: 16px;
    }
    .contact-title {
        font-size: 18px;
        line-height: 22px; /* 122.222% */
        letter-spacing: -0.36px;
    }
    .contact-info-subtitle {
        font-size: 16px;
    }
    .contact-info-title {
        font-size: 18px;
        line-height: 22px;
        letter-spacing: -0.36px;
    }
    .footer-links {
        gap: 20px;
    }
    .contact-info-section {
        padding: 52px 10px 32px 10px;
    }
    .map-container,
    .map-container iframe {
        height: 158.431px;
        aspect-ratio: 255/101;
    }
    .header-banner:not(.homepage) {
        aspect-ratio: 1/1;
    }
    .align-items-right-center {
        align-items: center;
    }
    .flex-row-column {
        flex-direction: column;
    }
    .header-mob {
        display: flex;
        padding: var(--Razmak, 20px) var(--Mobile, 10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--Razmak, 20px);
        align-self: stretch;
    }
    .banner-overlay {
        width: 100%;
        padding: 40px;
    }
    header {
        display: none;
    }
    
    .header-divider {
        display: none;
    }

    .banner-title {
        font-size: 24px;
        line-height: 32px; /* 133.333% */
        letter-spacing: -0.48px;
    }
    
    .banner-subtitle {
        font-size: 18px;
        line-height: 22px; /* 122.222% */
        letter-spacing: -0.36px;
    }
    .modules-section {
        padding: var(--Pading, 40px) var(--Mobile, 10px);
    }
    .modules-list {
        padding: 0 var(--Pading, 20px);
        grid-template-columns: repeat(1, 1fr);
    } 
}

.cookie-consent-banner {
    pointer-events: initial;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--button);
}
.cookie-consent-banner__description a {
    color: var(--background);
    font-weight: 700;

}
.flex-column-row {
    flex-direction: column;
}
#cookie-consent-banner__items p,
#cookie-consent-banner__items label {
    font-size: 1rem;
}
#pristanak p,
#cookie-consent-banner__items label,
.text-background {
    color: var(--background);
}
.gap-small {
    gap: 1rem;
}
.gap-medium {
    gap: 2rem;
}
.button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    justify-content: center;
    background-color: var(--background);
    color: var(--button);
}
@media (max-width: 1400px) {
    .p-medium-small {
        padding: 2rem;
    }
    .flex-row-md {
        flex-direction: column;
    }
}
@media (min-width: 1401px) {
    .flex-column-row {
        flex-direction: row;
    }
    .p-medium-small {
        padding: 2rem;
    }
}
.container {
    max-width: 1400px;
    margin: 0 auto;
}
input[type="checkbox"] {
    margin-bottom: 0.5rem;
}
.flex-1 {
    flex: 1;
}
.expend-cookie {
    cursor: pointer;
    width: 20px;
}