Meningeome
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Team</title>
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f9f9f9;
color: #333;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 0 20px;
}
.team-member {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding: 20px;
text-align: center;
}
.team-member img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
margin: 0 auto 15px;
display: block;
}
.team-member h3 {
margin: 15px 0;
color: #2c3e50;
}
.team-member p {
text-align: left;
margin: 10px 0;
}
.team-member strong {
color: #3498db;
}
.flex-container {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.flex-item {
flex: 1 1 calc(50% - 10px);
min-width: 300px;
}
@media (max-width: 768px) {
.flex-item {
flex: 1 1 100%;
}
.team-member {
margin-bottom: 15px;
}
}
</style>
</head>
<body>
<div class="container">
<!-- CEO Section -->
<section class="team-member">
<img src="/fileadmin/Fuer-Patienten-und-Besucher/Kliniken-Zentren-Institute/Kliniken/Klinik_fuer_Neurochirurgie/Bilder_2025/J.Rolfes.UKD.241128_RO36945.r3.jpg"
alt="Alexandra Thompson"
loading="lazy">
<h3>Alexandra "Alex" Thompson</h3>
<p><strong>Chief Executive Officer (CEO)</strong></p>
<p>With over 20 years of experience in leadership roles across multiple industries, Alex brings a wealth of knowledge and strategic vision to the table. Her ability to inspire teams, anticipate market trends, and execute transformative strategies has been instrumental in shaping the company into what it is today.</p>
<p><em>"I’m driven by the belief that great things happen when people come together with shared purpose. My role is to empower others to achieve their full potential while driving sustainable progress."</em></p>
</section>
<!-- Operations Director and Strategy Lead Section -->
<div class="flex-container">
<article class="flex-item team-member">
<img src="/fileadmin/Fuer-Patienten-und-Besucher/Kliniken-Zentren-Institute/Kliniken/Klinik_fuer_Neurochirurgie/Bilder_2025/Dettling-Fuchs_Julia.jpg"
alt="Jordan Lee"
loading="lazy">
<h3>Jordan Lee</h3>
<p><strong>Operations Director</strong></p>
<p>As the Operations Director, Jordan plays a pivotal role in ensuring the smooth functioning of all internal processes. With a background in engineering and project management, he excels at streamlining operations, improving efficiency, and implementing cutting-edge technologies.</p>
<p><em>"Efficiency isn’t just about doing more; it’s about doing better. By aligning resources with goals, we can create systems that support both short-term wins and long-term success."</em></p>
</article>
<article class="flex-item team-member">
<img src="/fileadmin/Fuer-Patienten-und-Besucher/Kliniken-Zentren-Institute/Kliniken/Klinik_fuer_Neurochirurgie/Bilder_2025/Mazzone_Maria.jpg"
alt="Sophia Patel"
loading="lazy">
<h3>Sophia Patel</h3>
<p><strong>Strategy & Development Lead</strong></p>
<p>Sophia leads our strategy and development initiatives, focusing on expanding the company's footprint through forward-thinking plans and partnerships. Her analytical mindset combined with creative problem-solving skills makes her an invaluable asset to the team.</p>
<p><em>"The future belongs to those who prepare for it today. At every step, I strive to ensure that our efforts are aligned with where we want to be tomorrow—while staying grounded in the realities of today."</em></p>
</article>
</div>
</div>
</body>
</html>