body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header img {
    width: 150px;
}

.company-details {
    margin-top: 10px;
    text-align: center;
}

.company-details p {
    margin: 5px 0;
}

.intro-text {
    text-align: center;
    margin: 20px;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    margin: 20px 0;
}

.hero img.hero-image {
    width: 25%;
    height: auto;
    margin-right: 20px;

}
.hero img.hero-image.stefan{
    width: 10%;
}

.hero-text {
    color: yellow;
}

.hero-text.stefan {
    color: white;
}
.hero-text h1 {
    font-size: 24px;
    margin: 0;
}

.hero-text p {
    font-size: 16px;
    margin: 10px 0 0;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 80%;
    margin: 20px auto;
}

a {
    color: #2880A3;
    text-decoration: none;
}

h1, h2 {
    color: #2880A3;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    color: #2880A3;
    margin: 5px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
    color: white; /* Text color for table */
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #444; /* Darker border color */
}

th {
    background-color: #2880A3; /* Blue header background */
}

tr:hover {
    background-color: #333; /* Darker hover effect */
}

thead {
    background-color: #222; /* Darker header background */
    color: white;
}

tbody tr:nth-child(even) {
    background-color: #444; /* Darker alternating row color */
}

tbody tr:nth-child(odd) {
    background-color: #333; /* Darker alternating row color */
}