/* ===== ÜBER UNS - EXTRAVAGANT, MODERN, DEZENT ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6ab04c;
    --secondary: #7ec760;
    --accent: #5a9c3e;
    --dark: #1a1a1a;
    --text: #1a1a1a;
    --light: #f5f5f5;
    --gray: #888;
}

html {
    scroll-behavior: smooth;
}

/* =================== ANIMATIONS =================== */

@keyframes floatBlobMassive {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
    }
    15% {
        transform: translateY(-150px) translateX(120px) scale(1.3) rotate(90deg);
    }
    30% {
        transform: translateY(-200px) translateX(180px) scale(1.4) rotate(180deg);
    }
    45% {
        transform: translateY(-120px) translateX(100px) scale(1.25) rotate(270deg);
    }
    60% {
        transform: translateY(100px) translateX(-150px) scale(1.35) rotate(360deg);
    }
    75% {
        transform: translateY(-80px) translateX(80px) scale(1.2) rotate(450deg);
    }
}

@keyframes floatBgOrbMassive {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.15;
    }
    20% {
        transform: translate(200px, -150px) scale(1.4);
        opacity: 0.2;
    }
    40% {
        transform: translate(250px, 120px) scale(0.8);
        opacity: 0.15;
    }
    60% {
        transform: translate(100px, -100px) scale(1.3);
        opacity: 0.25;
    }
    80% {
        transform: translate(-150px, 150px) scale(1.1);
        opacity: 0.18;
    }
}

@keyframes slideInUpMassive {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

@keyframes slideInDownMassive {
    from {
        opacity: 0;
        transform: translateY(-50px) rotateX(20deg);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes floatSubtle {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(245,158,11,0.3);
    }
    50% {
        box-shadow: 0 5px 30px rgba(245,158,11,0.6);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* =================== BODY & BACKGROUND =================== */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* FLOATING BACKGROUND ORBS */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(106, 176, 76, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(126, 199, 96, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(90, 156, 62, 0.07) 0%, transparent 50%);
    animation: floatBgOrbMassive 25s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
    filter: blur(40px);
}

body::after {
    content: '';
    position: fixed;
    top: -30%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(126, 199, 96, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBgOrbMassive 30s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: -1;
    filter: blur(50px);
}

/* =================== HERO SECTION =================== */

.about-hero {
    background: linear-gradient(135deg, #6ab04c 0%, #5a9c3e 15%, #4a8c2e 35%, #3d7a24 65%, #2d6b1f 100%);
    padding: 7rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    perspective: 1500px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlobMassive 25s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    filter: blur(50px);
    box-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -180px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlobMassive 30s ease-in-out infinite reverse;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.2);
}

.about-hero h1 {
    color: white;
    font-weight: 900;
    font-size: 4rem;
    text-shadow:
        0 25px 60px rgba(0, 0, 0, 0.75),
        0 0 50px rgba(255, 255, 255, 0.4),
        0 0 100px rgba(106, 176, 76, 0.3);
    letter-spacing: -3px;
    animation: slideInDownMassive 1.2s ease-out;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.about-hero .lead {
    color: rgba(255, 255, 255, 0.99);
    font-size: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    animation: slideInDownMassive 1.4s ease-out;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

/* =================== SECTION STYLES =================== */

.container {
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -2px;
    animation: slideInDownMassive 0.8s ease-out;
}

.section-subtitle {
    text-align: center;
    color: #888;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 600;
    animation: slideInDownMassive 1s ease-out;
}

/* =================== VISION & MISSION SECTIONS =================== */

.vision-section,
.mission-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.vision-card,
.mission-card {
    background: white;
    border-radius: 30px;
    padding: 4rem 3rem;
    border: 2px solid rgba(106, 176, 76, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    animation: slideInUpMassive 0.8s cubic-bezier(0.23, 1, 0.320, 1) both;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.vision-card::before,
.mission-card::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 176, 76, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-8px);
    border-color: rgba(106, 176, 76, 0.4);
    box-shadow: 0 20px 60px rgba(106, 176, 76, 0.15);
}

.vision-icon,
.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(106, 176, 76, 0.3);
    transition: transform 0.3s ease;
}

.vision-card:hover .vision-icon,
.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.vision-title,
.mission-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.vision-text,
.mission-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 500;
}


/* =================== STATS SECTION =================== */

.stats-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.stat-box {
    background: white;
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(106, 176, 76, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    animation: slideInUpMassive 0.8s cubic-bezier(0.23, 1, 0.320, 1) both;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 176, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.stat-box:nth-child(1) { animation-delay: 0.2s; }
.stat-box:nth-child(2) { animation-delay: 0.35s; }
.stat-box:nth-child(3) { animation-delay: 0.5s; }
.stat-box:nth-child(4) { animation-delay: 0.65s; }

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(106, 176, 76, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #6ab04c;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: #888;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}


/* =================== VALUES SECTION =================== */

.values-section {
    padding: 4rem 0;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: white;
    border-radius: 25px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(106, 176, 76, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    animation: slideInUpMassive 0.8s cubic-bezier(0.23, 1, 0.320, 1) both;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(106, 176, 76, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.4s ease;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.25s; }
.value-card:nth-child(3) { animation-delay: 0.4s; }
.value-card:nth-child(4) { animation-delay: 0.55s; }
.value-card:nth-child(5) { animation-delay: 0.7s; }
.value-card:nth-child(6) { animation-delay: 0.85s; }
.value-card:nth-child(7) { animation-delay: 1s; }
.value-card:nth-child(8) { animation-delay: 1.15s; }

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(106, 176, 76, 0.3);
    box-shadow: 0 20px 50px rgba(106, 176, 76, 0.12);
}

.value-card:hover::before {
    top: -50%;
    left: -50%;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(106, 176, 76, 0.1), rgba(126, 199, 96, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #6ab04c;
    font-size: 2rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.15) rotate(-5deg);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-text {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}


/* =================== TEAM HERO IMAGE SECTION =================== */

.team-hero-section {
    padding: 0;
    margin-top: 4rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.team-hero-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    height: auto;
    min-height: 400px;
    animation: slideInUpMassive 0.8s cubic-bezier(0.23, 1, 0.320, 1);
}

.team-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-hero-image:hover img {
    transform: scale(1.05);
}

.team-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    padding: 4rem 3rem 3rem;
    backdrop-filter: blur(10px);
}

.team-hero-overlay h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin: 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

/* =================== TEAM SECTION =================== */

.team-section {
    padding: 5rem 0;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
    align-items: stretch;
}

/* === TEAM MEMBER CARD === */

.team-member {
    background: white;
    border-radius: 30px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: slideInUpMassive 0.8s cubic-bezier(0.23, 1, 0.320, 1) both;
    border: 1px solid rgba(106, 176, 76, 0.1);
}

.team-member:nth-child(1) { animation-delay: 0.2s; }
.team-member:nth-child(2) { animation-delay: 0.35s; }
.team-member:nth-child(3) { animation-delay: 0.5s; }

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 100%);
    z-index: 0;
    transition: all 0.4s ease;
}


.team-member-header {
    position: relative;
    padding: 2.5rem 2rem 0;
    z-index: 1;
    text-align: center;
}

.team-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: white;
    border: 6px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 10;
}


.team-member-body {
    padding: 2.5rem 2rem;
    background: white;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.team-name {
    font-size: 1.9rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
}

.team-role {
    color: #6ab04c;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-align: center;
}

.team-bio {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: center;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(106, 176, 76, 0.15);
    margin-bottom: 1.5rem;
}

.expertise-tag {
    background: linear-gradient(135deg, rgba(106, 176, 76, 0.08), rgba(126, 199, 96, 0.08));
    color: #4a8c2e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(106, 176, 76, 0.2);
    transition: all 0.3s ease;
}

.team-social {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(106, 176, 76, 0.15);
}

.team-social a {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(106, 176, 76, 0.1), rgba(126, 199, 96, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ab04c;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(106, 176, 76, 0.2);
    font-size: 0.95rem;
}

.team-social a:hover {
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(106, 176, 76, 0.3);
    border-color: #6ab04c;
}


/* =================== CTA SECTION =================== */

.cta-box {
    background: linear-gradient(135deg, #6ab04c 0%, #7ec760 50%, #5a9c3e 100%);
    border-radius: 50px;
    padding: 6rem 5rem;
    position: relative;
    overflow: hidden;
    margin: 5rem 0 4rem;
    text-align: center;
    z-index: 1;
    box-shadow: 0 30px 80px rgba(106, 176, 76, 0.25);
    animation: slideInUpMassive 1s cubic-bezier(0.23, 1, 0.320, 1);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlobMassive 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlobMassive 26s ease-in-out infinite reverse;
    z-index: 0;
    pointer-events: none;
    filter: blur(90px);
}

.cta-box h3 {
    color: white;
    font-weight: 900;
    font-size: 3rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    font-weight: 600;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: white;
    color: #6ab04c;
    border: none;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 176, 76, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: #5a9c3e;
}

.cta-button:hover::before {
    left: 100%;
}

/* =================== RESPONSIVE =================== */

@media (max-width: 1024px) {
    .about-hero {
        padding: 5rem 0;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .cta-box {
        padding: 4rem 3rem;
    }

    .cta-box h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .about-hero .lead {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .vision-card,
    .mission-card {
        padding: 3rem 2rem;
    }

    .vision-title,
    .mission-title {
        font-size: 2rem;
    }

    .stats-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .team-hero-image {
        min-height: 300px;
    }

    .team-hero-overlay h2 {
        font-size: 1.8rem;
    }

    .team-avatar {
        width: 150px;
        height: 150px;
    }

    .team-name {
        font-size: 1.6rem;
    }

    .cta-box {
        padding: 3rem 2rem;
        margin: 3rem 0 2rem;
    }

    .cta-box h3 {
        font-size: 1.8rem;
    }

    .cta-box p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero .lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .team-member {
        border-radius: 20px;
    }

    .team-social {
        gap: 0.8rem;
    }

    .team-social a {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .expertise-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}