@import url('https://fonts.googleapis.com/css2?family=Markazi+Text:wght@400..700&display=swap');
body {
    font-family: Arial, sans-serif;
    color: #213555;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    background: black;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 24px;
}
.header-logo {
    max-width: 100px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 2px; /* Adds spacing between logo and heading */
}
header h1{
    margin-left: 30rem;
    color: white;
}

nav {
    background: #99CB38;
    text-align: center;
    padding: 10px 0;
}

nav a {
    color: black;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    text-decoration: underline;
}

.background-slider {
    width: 100%;
    height: 400px;
    background: url('company-image.jpg') no-repeat center center/cover;
}

section {
    padding: 40px;
    text-align: center;
    background: white;
}

h2 {
    color: #333;
}

p {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
}

footer {
    /* position: fixed; */
    background: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    bottom: 0;
}

footer .footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

footer .footer-content div {
    margin: 10px 0;
}

footer a {
    color: #f4f4f4;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    color: #FFD700;
}

footer p {
    margin: 10px 0 0;
    font-size: 16px;
    color: #bbb;
}


.markazi-text-mrk {
  font-family: "Markazi Text", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}