﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
   background-color: #f5f5f5;
  /*   color: #333;
*/    line-height: 2;
}

header {
    background-color: #0b3d91;
    color: #fff;
    padding: 1rem 2rem;
}

    header h1, footer p {
        margin: 0;
    }

.hero {
    position: relative;
    background: url('https://via.placeholder.com/1600x600?text=Maritime+Background') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-bottom: 2rem;
}

    /* Dark overlay to make text stand out on hero image */
    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem;
}

    .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

/* Small logo in the corner of the hero section */
.small-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    width: 160px;
    height: auto;
}

.container-fluid {
    max-width: 1900px;
    margin: 0 auto;
    padding: 2rem;
    /*background-color: #fff;*/
    /*box-shadow: 0 2px 5px rgba(0,0,0,0.1);*/
    /*margin-bottom: 2rem;*/
}

    .container-fluid h2 {
        margin-bottom: 1rem;
        color: #0b3d91;
    }

    .container-fluid p {
        margin-bottom: 1rem;
        font-size:24px;
    }

.services-list {
    list-style: square;
    margin-left: 1.5rem;
}

    .services-list li {
        margin-bottom: 1rem;
    }

.highlights {
    margin-top: 1.5rem;
}

/*footer {
    text-align: center;
}
*/
@media (max-width: 768px) {
    .hero {
        height: 300px;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .small-logo {
        width: 60px;
    }
}
