/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    z-index: 1;
}

/* Header */
header {
    background: #222;
    color: #fff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    display: inline-block;
}

nav ul {
    list-style: none;
    padding: 0;
    float: right;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

nav ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background: url('muser-holding.webp') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background-color: rgb(51 51 51 / 53%);
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Sections */
section {
    padding: 80px 0;
    text-align: center;
}

.companies .company-list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.company {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.company img {
    width: auto;
    height: 85px;
    margin-bottom: 10px;
    max-width: 85%;
}

.company a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.company a:hover {
    color: #222;
    text-decoration: underline;
}

/* Contact */
.contact {
    background: #222;
    color: white;
    padding: 50px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
}
