/* Reset margins and padding */
body, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: #FF5733; /* Use your company logo's primary color */
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 60px; /* Adjust the size according to your logo */
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content Styling */
main {
    padding: 20px;
    background-color: #FFC300; /* Use your company logo's secondary color */
}

/* Footer Styling */
footer {
    background-color: #FF5733; /* Same as the header */
    color: white;
    text-align: center;
    padding: 10px;
}
