
/* ===== Company Profile Section (Ueeshop Ready) ===== */
.uee-company-profile{
  max-width:1400px;
  margin:0 auto;
  padding:60px 24px;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:#1f2933;
}

.uee-company-profile *{
  box-sizing:border-box;
}

/* ===== Top: Image + Text ===== */
.uee-profile-top{
  display:flex;
  flex-wrap:wrap;
  gap:56px;
  align-items:center;
}

/* Left big image */
.uee-profile-img{
  flex:0 0 48%;
}

.uee-profile-img img{
  width:100%;
  display:block;
  border-radius:8px;
}

/* Right text */
.uee-profile-text{
  flex:1;
}

.uee-profile-title{
  font-size:28px;
  font-weight:700;
  margin-bottom:20px;
  color:#0f172a;
}

.uee-profile-text p{
  font-size:15px;
  line-height:1.8;
  margin:0 0 12px;
  color:#334155;
}

/* ===== Bottom: 4 Images ===== */
.uee-profile-bottom{
  margin-top:56px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.uee-profile-bottom img{
  width:100%;
  display:block;
  border-radius:6px;
  border:1px solid #e5e7eb;
  background:#fff;
}

/* ===== Responsive ===== */
@media(max-width:1024px){
  .uee-profile-top{
    gap:36px;
  }
}

@media(max-width:768px){
  .uee-profile-top{
    flex-direction:column;
  }
  .uee-profile-img{
    flex:0 0 100%;
  }
  .uee-profile-bottom{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:480px){
  .uee-profile-bottom{
    grid-template-columns:1fr;
  }
}
