        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

html {
  scroll-behavior: smooth;
}

        header {
            /*background-image: url('A_futuristic_clean_energy_landscape_with_a_focus_o.webp');*/
            background-size: cover;
            background-position: center;
            height: 60vw;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            margin-top: 1.2rem;
        }

        header h1 {
            font-size: 4rem;
            margin-bottom: 0.5rem;
        }

        header p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
        }

        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 1rem;
            padding-left: 0;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            XXfont-size: 1.2rem;
            font-size: 2rem;
        }

        .learnmore {
            padding: 1rem 2rem;
            background: #007bff;
            color: white;
            border-radius: 1rem;
            text-decoration: none;
            width: 40%;
            font-size: 2rem;
            width: 40%;
            font-size: 2.1rem;
        }

        .main {
            clear: both;
            margin-top: 40px;
        }

        section {
            max-width: 800px;
            margin: auto;
            padding: 5rem 10%;
            text-align: center;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #003870;
        }

        p {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .textblock {
            text-align: left;
        }

        #team {
            max-width: 100%;
        }

        .team {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .team-member {
            width: 30%;
            min-width: 400px;
            padding: 1rem;
            margin: 1rem;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
            color: #0058B0;
            cursor: pointer;
        }

        .team-member h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #004890;
        }

        .team-title1, .team-title2 {
          line-height: 1.2em;
        }
        .team-title2
        {
          margin-top: 0.6em;
          margin-bottom: 0.6em;
        }

        .team-role {
            font-size: 14px;
            line-height: 1.5em;
        }

        .keep-together {
           display: inline-block;
           white-space: nowrap;
        }

        #customers, #services, #about, #contact {
            color: #0068D0;
        }

        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem;
        }

        footer p {
            margin: 0;
        }

        .flags {
            position: fixed;
            right: 20px;
            top: 75px;
        }
        .flags > img {
            cursor: pointer;
        }

        .vidbkg {
            z-index: -100;
            position: absolute;
            width: 100%;
            overflow: hidden;
            top: 0; left: 0;
            background-color: #204070;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            nav ul {
                justify-content: revert !important;
            }
            nav ul li {
                margin: 0 7px;
            }

            nav ul li a {
                color: white;
                text-decoration: none;
                font-size: 0.8rem;
            }

            header {
                height: 30vh;
            }

            .team-member {
                width: 90%;
                min-width: revert !important;
            }

            header h1 {
                font-size: 1.5rem;
            }

            header p {
                font-size: 1.2rem;
            }

            .team-role {
               font-size: 0.78rem;
            }

            .learnmore {

            }

            .flags {
                right: 10px;
                top: 55px;
            }
            .vidbkg {
                min-height: 32vh;
            }

        }
