/* --- ABOUT US SPECIFIC STYLES --- */
.hero-max-width {
    max-width: 800px;
    margin: 0 auto;
}

.about-stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Image Stack Effect */
.image-stack {
    position: relative;
    padding: 20px;
}

.stack-img-main {
    width: 100%;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stack-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    border: 2px solid var(--teal);
    border-radius: 20px;
    z-index: 1;
    transform: translate(20px, -20px);
}

.text-light-grey {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Categorized Cards as Value Cards */
.tech-group p {
    margin-top: 10px;
}