body {
    font-family: Arial, Helvetica, sans-serif;
    background-color:#9fc9dc; /* <!-- #0b1d2a;-->*/ 
    color: white;
    margin: 0;
    padding: 0;
}
.intro {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    color: #222;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    border-radius: 15px;
    border: 1px solid #b8d8e8;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}
img {
    display: block;
    max-width: 90%;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
/* --------------------------------- */
.fleet {
    max-width: 1100px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.fleet h2 {
    text-align: center;
    color: #164863;
    font-size: 30px;
    margin-bottom: 25px;
}
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    color: #222;
}
th {
    background-color: #5f91ad;
    color: white;
    padding: 15px;
    text-align: center;
}
td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #d0dce3;
}
tr:nth-child(even) {
    background-color: #eef7fb;
}
tr:hover {
    background-color: #d9eef7;
}
/* --------------------------------- */
.contact {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.contact h2 {
    text-align: center;
    color: #164863;
    font-size: 30px;
    margin-bottom: 25px;
}
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.contact-info p {
    background-color: #eef7fb;
    padding: 20px;
    color: black;
    border-left: 5px solid #2b7a9a;
    border-radius: 8px;
    font-size: 17px;
    line-height: 1.5;
}
.contact-info strong {
    color: #164863;
    font-size: 18px;
}
/* --------------------------------- */
.office-contact {
    max-width: 900px;
    margin: 50px auto;
    padding: 25px;
    background-color: white;
    color: #000;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.office-contact h2 {
    text-align: center;
    color: #164863;
    margin-bottom: 20px;
}

.office-contact table {
    width: 100%;
    border-collapse: collapse;
    color: #000;
}

.office-contact th {
    background-color: #7fb3cc;
    color: #000;
    padding: 12px;
    text-align: left;
}

.office-contact td {
    padding: 12px;
    border-bottom: 1px solid #ccc;
    color: #000;
}

.office-contact tr:nth-child(even) {
    background-color: #f5f9fb;
}

/* --------------------------------- */
/* Oglasi za zapošljavanje */

.jobs {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    color: #000;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.jobs h2 {
    text-align: center;
    color: #164863;
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 25px;
}

.job {
    text-align: center;
    background-color: #eef7fb;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #2b7a9a;
    border-right: 5px solid #2b7a9a;
}

.job h3 {
    color: #164863;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 20px;
}

.pdf-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #5f91ad;
    color: white;
    text-decoration: none;
    border-radius: 7px;
    font-size: 17px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.pdf-button:hover {
    background-color: #164863;
    transform: translateY(-2px);
}