.hero {
    position: relative;
    min-height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.hero-background {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/bg_hero.png');
    background-size: cover;
    background-position: center;
    transform: translateY(0);
    z-index: -1;
    will-change: transform;
}
.hero-overlay {
    position: relative;
    z-index: 1;
    width: 50%;
    padding: 10px;
}

.sub-hero {
    position: relative;
    top: -70px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.sub-hero-image-container {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border-radius: 50%;
    overflow: visible;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.products-container {
    background-color: var(--md-sys-color-surface-container);
    padding: 16px;
}
.products-header {
    padding: 0 16px;
    text-align: start;
}
.products-grid {
    display: flex;
    flex-direction: row;
}
.product {
    width: 150px;
    margin: 16px;
    background-color: var(--md-sys-color-surface);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.product:hover {
    transform: scale(1.1);
}

.team-container {
    background-color: var(--md-sys-color-surface-container-high);
    padding: 16px;
}
.team-header {
    max-width: 512px;
    margin: 0 auto;
}
.team-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    margin: 32px 10%;
}
.team-member {
    background-color: var(--md-sys-color-surface);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.team-member-photo {
    max-width: 100%;
    height: auto;
}
.team-member-content {
    padding: 16px 16px;
}
.team-member-linkedin {
    margin: 16px;
    width: 24px;
    height: 24px;
    filter: invert(0.5);
    transition: transform 0.3s ease;
}
.team-member-linkedin:hover {
    transform: scale(1.2);
}

@media (max-width: 599px) {

}

@media (min-width: 600px) and (max-width: 1199px) {
    .sub-hero {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .sub-hero {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}