<style>
        body {
            font-family: 'Roboto', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.5;
        }
 
header {
    background: url('images/header.png') no-repeat center center/cover;
    height: 80px;
    position: relative;
    padding: 50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Separate content horizontally */
    padding-right: 0px; /* Adjust spacing on the right */
    padding-left: 1180px; /* Add optional padding on the left for balance */
    padding-bottom: 100px;
}
<header>
    <div class="logos">
        <a href="https://www.sefa.org.za"><img src="images/sefa-logo.jpg" alt="sefa logo"></a>
        <a href="https://www.seda.org.za"><img src="images/seda-logo.jpg" alt="Seda logo"></a>
        <a href="https://www.treasury.gov.za/coopbank/"><img src="images/CBDA-logo.jpg" alt="CBDA logo"></a>
    </div>
</header>

        header h1 {
            font-size: 42px;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 20px;
            border-radius: 10px;
        }
        nav {
            background-color: #333;
            color: #fff;
            padding: 15px 0;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        nav a {
            margin: 0 15px;
            font-weight: 700;
            text-transform: uppercase;
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #036535;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #333;
        }
        h2 {
            font-size: 30px;
            margin-top: 40px;
            color: #333;
            border-bottom: 2px solid #036535;
            padding-bottom: 10px;
        }
  h3 {
            font-size: 27px;
            margin-top: 40px;
            color: #333;
            border-bottom: 2px solid #036535;
            padding-bottom: 10px;
        }
        p {
            margin: 15px 0;
            font-size: 18px;
        }
        ul {
            list-style-type: disc;
            margin-left: 20px;
		font-size: 0px;
        }
ul li {
    font-size: 18px;  /* Set your desired font size here */
}
        footer {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: white;
            margin-top: 40px;
        }
.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between the image and text */
}

.footer-content img {
    max-width: 200px; /* Adjust the logo size */
    height: auto;
    transition: transform 0.3s;
}

.footer-content img:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

      
 	.logos {
            display: flex;
            justify-content: left;
            align-items: center;
            gap: 5px;
            margin: 0px 0;
        }

      
 	.logos a img {
            max-width: 300px;
            height: auto;
            transition: transform 0.3s;
}
        .logos a img:hover {
            transform: scale(1.1);
        }


        @media (max-width: 768px) {
            .logos {
                flex-direction: column;
                align-items: center;
            }
        }
    </style>