
  /* ========================================
   GLOBAL STYLES & RESET
======================================== */
* {
    padding: 0;
    margin: 0;
}


body {
  font-family: 'Merriweather', serif;
  background-color: #f9fafb;
  color: #111;
  line-height: 1.6;
  padding-top: 80px;
}

a {
    color: aliceblue;
}


/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 5;  /* ADD this line */
}

.hero-img {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 40px;
}

.hero-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 120px;
}

.hero-text h1 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}

.hero-text .black-text {
    color: #000000;
}

.hero-text .green-text {
    color: #23F65B;
}

/* ========================================
   TEAM INTRODUCTION SECTION
======================================== */
.team-intro {
    background-color: #f8f8f8;
    padding: 60px 0;
    margin-top: 0;
}

.team-intro-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-intro-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.team-photo {
    width: 600px;
    height: auto;
    border-radius: 0%;
    flex-shrink: 0;
    margin-top: 32px;
}

.team-description {
    flex: 1;
}

.team-description h2 {
    font-size: 2.5rem;
    color: #23F65B;
    margin-bottom: 20px;
    font-weight: bold;
}

.team-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

/* ========================================
   MAIN LAYOUT & SIDEBAR
======================================== */
.page-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.content {
    flex: 1;
    max-width: none;
}

.container {
    max-width: none;
    margin: 0;
    padding: 0;
}

/* Sidebar Styling */
.sidebar {
    position: sticky;
    top: 20px;
    width: 250px;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 12px;
    font-size: 1rem;
    height: fit-content;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}

.sidebar h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

.sidebar ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    background: none !important;
    gap: 0 !important;
    justify-content: flex-start !important;
}

.sidebar li {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    position: relative !important;
    background: none !important;
}

.sidebar a {
    text-decoration: none !important;
    color: #333 !important;
    display: block !important;
    padding: 12px 0 !important;
    font-size: 1.2rem !important;
    border-bottom: 2px solid transparent !important;
    transition: all 0.3s ease !important;
    min-width: auto !important;
    text-align: left !important;
    background: none !important;
    position: relative !important;
}

.sidebar a:hover {
    color: #333 !important;
    background: none !important;
    border-bottom: 2px solid #23F65B !important;
}

.sidebar a.active {
    border-bottom: 2px solid #23F65B !important;
    font-weight: bold !important;
}

/* ========================================
   TEAM MEMBER PROFILES
======================================== */
h1 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 30px;
    text-decoration: none;
}

/* LinkedIn Link */
.linkedin-container {
    text-align: center;
    margin: -10px 0;
}

.linkedin-icon {
    width: 36px;
    height: 36px;
    transition: opacity 0.3s ease;
    margin-bottom: 1rem;
}

.linkedin-icon:hover {
    opacity: 0.7;
}

/* Profile Grid Layout */
.profiles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
    column-gap: 30px;
    margin-bottom: 20px;
}

.single-profile {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.single-profile .profile-card {
    max-width: 500px;
    width: 100%;
}

/* Individual Profile Cards */
.profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 3px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.profile-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}

.profile-card h2 {
    font-size: 1.7rem;
    margin: 0;
}

.degree {
    font-weight: bold;
    color: #444;
    margin: 5px 0;
}

.profile-card h3 {
    font-size: 1rem;
    color: #000;
    font-weight: bold;
    margin: 10px 0;
    border-bottom: 3px solid #23F65B;
    display: inline-block;
    padding-bottom: 3px;
}

.description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 10px;
}


/* Navbar Container begrenzen */
.navbar .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Container begrenzen */
.footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}