/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

header {
    background-image: url('Images/bg.png'); /* Path to your background image */
    background-size: cover; /* Ensure the background image covers the entire header */
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 40px;
}
.header-content {
    position: absolute; /* Position the content holder absolutely within the header */
    top: 50%; /* Align the content vertically at the center */
    left: 50%; /* Align the content horizontally at the center */
    transform: translate(-50%, -50%); /* Adjust the position to center the content */
    text-align: center; /* Align the text in the center */
}
/* Responsive Styles */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }
#company-logo {
    height: 100px; /* You can adjust the size as needed */
    width: auto;
    float: left;
}
nav {
    background-color: #333;
}

.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.menu li {
    float: right;
}

.menu li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu li a:hover, .menu li.active a {
    background-color: #974909;
}
}
.news, .contact {
    padding: 20px;
    text-align: center;
}

.news ul {
    list-style-type: none;
    padding: 0;
}
.content {
    padding: 20px;
}

.image-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.image-wrapper {
    margin: 10px;
    text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin-top: 5px;
    font-size: 14px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a.active, nav ul li a:hover {
    text-decoration: underline;
}