/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background: white;
    color: #333;
    margin: 0;
    padding: 50px;
}

nav {
    background: #222;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s;
}

nav a:hover {
    color: #fc845b;
}
.company-logo {
    background-color: #ca8dff5e;
    display: flex;
    justify-content: center;
    align-items: center; 
    height: 70px; 
}
.company-logo img {
    width: 300px; 
    height: auto; 
    max-width: 100%; 
}


h1 {
    color: #222;
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
}

h2 {
    color: #444;
    border-bottom: 2px solid #fcb69f;
    padding-bottom: 5px;
    margin-top: 30px;
}

div {
    background: #efefef;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

ul {
    list-style-type: square;
    padding-left: 20px;
}

p {
    font-size: 16px;
}
